/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, 21 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) TransformationProof [EQUIVALENT, 2152 ms] (22) QDP (23) UsableRulesProof [EQUIVALENT, 0 ms] (24) QDP (25) QReductionProof [EQUIVALENT, 137 ms] (26) QDP (27) TransformationProof [EQUIVALENT, 1665 ms] (28) QDP (29) UsableRulesProof [EQUIVALENT, 0 ms] (30) QDP (31) QReductionProof [EQUIVALENT, 87 ms] (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 28 ms] (37) YES (38) QDP (39) TransformationProof [EQUIVALENT, 1561 ms] (40) QDP (41) UsableRulesProof [EQUIVALENT, 0 ms] (42) QDP (43) QReductionProof [EQUIVALENT, 101 ms] (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES (50) QDP (51) QDPOrderProof [EQUIVALENT, 95 ms] (52) QDP (53) DependencyGraphProof [EQUIVALENT, 0 ms] (54) AND (55) QDP (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] (57) YES (58) QDP (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] (60) YES (61) QDP (62) QDPSizeChangeProof [EQUIVALENT, 0 ms] (63) YES (64) QDP (65) TransformationProof [EQUIVALENT, 1820 ms] (66) QDP (67) UsableRulesProof [EQUIVALENT, 0 ms] (68) QDP (69) QReductionProof [EQUIVALENT, 139 ms] (70) QDP (71) TransformationProof [EQUIVALENT, 1571 ms] (72) QDP (73) UsableRulesProof [EQUIVALENT, 0 ms] (74) QDP (75) QReductionProof [EQUIVALENT, 108 ms] (76) QDP (77) QDPSizeChangeProof [EQUIVALENT, 0 ms] (78) YES (79) QDP (80) QDPSizeChangeProof [EQUIVALENT, 0 ms] (81) YES (82) QDP (83) QDPSizeChangeProof [EQUIVALENT, 0 ms] (84) YES (85) QDP (86) QDPSizeChangeProof [EQUIVALENT, 0 ms] (87) YES (88) QDP (89) QDPSizeChangeProof [EQUIVALENT, 36 ms] (90) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; 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 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 a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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 b => FiniteMap b a -> b -> FiniteMap b a; 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; } ---------------------------------------- (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 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 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 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 b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 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; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord 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 a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> 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 a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 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; } ---------------------------------------- (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 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 vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord 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 (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 a => FiniteMap a b -> a -> FiniteMap a b; 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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "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_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_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_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; " "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; " 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); " "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); " 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord 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 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) = 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 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 :: 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; } ---------------------------------------- (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' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " "reduce2D xxv xxw = gcd xxv xxw; " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "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; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; " "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; " "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); " "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); " "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; " "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 xxy xxz fm_lr fm_r); " "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); " "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 xxy xxz fm_lrr fm_r); " "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 xxy xxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "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; " "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 xxy xxz fm_l fm_rl) 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); " "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; " "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; " 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_size xyv xyw xyx = sizeFM xyv; " "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyx xyv; " "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; " "mkBranchRight_size xyv xyw xyx = sizeFM xyw; " "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (1 + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) 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 "plusFMLts xzw xzx = splitLT xzw xzx; " "plusFMGts xzw xzx = splitGT 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 "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); " "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); " "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); " "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; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord 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 a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt 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 xxy xxz 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 xxy xxz 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 xxy xxz 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 xxy xxz fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; 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 xyx 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 yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (1 + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyw; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (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 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 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; } ---------------------------------------- (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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap 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 :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt 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))))))) xxy xxz 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))))))))))))) xxy xxz 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))))) xxy xxz 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)))))))))) xxy xxz fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; 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 xyx 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 yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (Pos (Succ Zero) + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyw; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (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 (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 a b -> Int; sizeFM EmptyFM = Pos Zero; 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 :: b -> a -> FiniteMap b a; 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"];4770[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4770[label="",style="solid", color="burlywood", weight=9]; 4770 -> 5[label="",style="solid", color="burlywood", weight=3]; 4771[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4771[label="",style="solid", color="burlywood", weight=9]; 4771 -> 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"];4772[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4772[label="",style="solid", color="burlywood", weight=9]; 4772 -> 8[label="",style="solid", color="burlywood", weight=3]; 4773[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4773[label="",style="solid", color="burlywood", weight=9]; 4773 -> 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.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",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.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",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"];4774[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4774[label="",style="solid", color="burlywood", weight=9]; 4774 -> 19[label="",style="solid", color="burlywood", weight=3]; 4775[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4775[label="",style="solid", color="burlywood", weight=9]; 4775 -> 20[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.plusFMLts (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="yvy43",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMGts (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="yvy44",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"];4776[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4776[label="",style="solid", color="burlywood", weight=9]; 4776 -> 24[label="",style="solid", color="burlywood", weight=3]; 4777[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4777[label="",style="solid", color="burlywood", weight=9]; 4777 -> 25[label="",style="solid", color="burlywood", weight=3]; 21[label="FiniteMap.splitLT (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.splitGT (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.splitLT3 (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.splitGT3 (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.splitLT2 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.splitGT2 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"];4778[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 38[label="",style="solid", color="burlywood", weight=3]; 4779[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 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.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];36 -> 42[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];37 -> 43[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];38 -> 44[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 -> 45[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 -> 46[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];42 -> 47[label="",style="solid", color="black", weight=3]; 43[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];43 -> 48[label="",style="solid", color="black", weight=3]; 44[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];44 -> 49[label="",style="solid", color="black", weight=3]; 45[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];45 -> 50[label="",style="solid", color="black", weight=3]; 46[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"];46 -> 51[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4780[label="yvy40/(yvy400,yvy401)",fontsize=10,color="white",style="solid",shape="box"];47 -> 4780[label="",style="solid", color="burlywood", weight=9]; 4780 -> 52[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4781[label="yvy40/(yvy400,yvy401)",fontsize=10,color="white",style="solid",shape="box"];48 -> 4781[label="",style="solid", color="burlywood", weight=9]; 4781 -> 53[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];49 -> 54[label="",style="solid", color="black", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="black",shape="box"];50 -> 55[label="",style="solid", color="black", weight=3]; 51[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"];51 -> 56[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) yvy30 ((yvy400,yvy401) == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4782[label="yvy30/(yvy300,yvy301)",fontsize=10,color="white",style="solid",shape="box"];52 -> 4782[label="",style="solid", color="burlywood", weight=9]; 4782 -> 57[label="",style="solid", color="burlywood", weight=3]; 53[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) yvy30 ((yvy400,yvy401) == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4783[label="yvy30/(yvy300,yvy301)",fontsize=10,color="white",style="solid",shape="box"];53 -> 4783[label="",style="solid", color="burlywood", weight=9]; 4783 -> 58[label="",style="solid", color="burlywood", weight=3]; 54[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];54 -> 59[label="",style="dashed", color="green", weight=3]; 54 -> 60[label="",style="dashed", color="green", weight=3]; 55[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];55 -> 61[label="",style="solid", color="black", weight=3]; 56[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"];56 -> 62[label="",style="solid", color="black", weight=3]; 57[label="FiniteMap.splitLT2 (yvy300,yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) (yvy300,yvy301) ((yvy400,yvy401) == (yvy300,yvy301)) == LT)",fontsize=16,color="black",shape="box"];57 -> 63[label="",style="solid", color="black", weight=3]; 58[label="FiniteMap.splitGT2 (yvy300,yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) (yvy300,yvy301) ((yvy400,yvy401) == (yvy300,yvy301)) == GT)",fontsize=16,color="black",shape="box"];58 -> 64[label="",style="solid", color="black", weight=3]; 59[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];59 -> 65[label="",style="solid", color="black", weight=3]; 60 -> 59[label="",style="dashed", color="red", weight=0]; 60[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];61[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare3 yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];61 -> 66[label="",style="solid", color="black", weight=3]; 62[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"];62 -> 67[label="",style="solid", color="black", weight=3]; 63 -> 190[label="",style="dashed", color="red", weight=0]; 63[label="FiniteMap.splitLT2 (yvy300,yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301) == LT)",fontsize=16,color="magenta"];63 -> 191[label="",style="dashed", color="magenta", weight=3]; 63 -> 192[label="",style="dashed", color="magenta", weight=3]; 63 -> 193[label="",style="dashed", color="magenta", weight=3]; 63 -> 194[label="",style="dashed", color="magenta", weight=3]; 63 -> 195[label="",style="dashed", color="magenta", weight=3]; 63 -> 196[label="",style="dashed", color="magenta", weight=3]; 63 -> 197[label="",style="dashed", color="magenta", weight=3]; 63 -> 198[label="",style="dashed", color="magenta", weight=3]; 63 -> 199[label="",style="dashed", color="magenta", weight=3]; 64 -> 207[label="",style="dashed", color="red", weight=0]; 64[label="FiniteMap.splitGT2 (yvy300,yvy301) yvy31 yvy32 yvy33 yvy34 (yvy400,yvy401) (compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301) == GT)",fontsize=16,color="magenta"];64 -> 208[label="",style="dashed", color="magenta", weight=3]; 64 -> 209[label="",style="dashed", color="magenta", weight=3]; 64 -> 210[label="",style="dashed", color="magenta", weight=3]; 64 -> 211[label="",style="dashed", color="magenta", weight=3]; 64 -> 212[label="",style="dashed", color="magenta", weight=3]; 64 -> 213[label="",style="dashed", color="magenta", weight=3]; 64 -> 214[label="",style="dashed", color="magenta", weight=3]; 64 -> 215[label="",style="dashed", color="magenta", weight=3]; 64 -> 216[label="",style="dashed", color="magenta", weight=3]; 65[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];66[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare2 yvy40 yvy50 (yvy40 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4784[label="yvy40/(yvy400,yvy401)",fontsize=10,color="white",style="solid",shape="box"];66 -> 4784[label="",style="solid", color="burlywood", weight=9]; 4784 -> 88[label="",style="solid", color="burlywood", weight=3]; 67[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"];4785[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];67 -> 4785[label="",style="solid", color="burlywood", weight=9]; 4785 -> 89[label="",style="solid", color="burlywood", weight=3]; 4786[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];67 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 90[label="",style="solid", color="burlywood", weight=3]; 191[label="yvy31",fontsize=16,color="green",shape="box"];192 -> 96[label="",style="dashed", color="red", weight=0]; 192[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301) == LT",fontsize=16,color="magenta"];192 -> 203[label="",style="dashed", color="magenta", weight=3]; 192 -> 204[label="",style="dashed", color="magenta", weight=3]; 193[label="yvy33",fontsize=16,color="green",shape="box"];194[label="yvy301",fontsize=16,color="green",shape="box"];195[label="yvy34",fontsize=16,color="green",shape="box"];196[label="yvy32",fontsize=16,color="green",shape="box"];197[label="yvy300",fontsize=16,color="green",shape="box"];198[label="yvy401",fontsize=16,color="green",shape="box"];199[label="yvy400",fontsize=16,color="green",shape="box"];190[label="FiniteMap.splitLT2 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) yvy47",fontsize=16,color="burlywood",shape="triangle"];4787[label="yvy47/False",fontsize=10,color="white",style="solid",shape="box"];190 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 205[label="",style="solid", color="burlywood", weight=3]; 4788[label="yvy47/True",fontsize=10,color="white",style="solid",shape="box"];190 -> 4788[label="",style="solid", color="burlywood", weight=9]; 4788 -> 206[label="",style="solid", color="burlywood", weight=3]; 208[label="yvy300",fontsize=16,color="green",shape="box"];209 -> 96[label="",style="dashed", color="red", weight=0]; 209[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301) == GT",fontsize=16,color="magenta"];209 -> 220[label="",style="dashed", color="magenta", weight=3]; 209 -> 221[label="",style="dashed", color="magenta", weight=3]; 210[label="yvy400",fontsize=16,color="green",shape="box"];211[label="yvy401",fontsize=16,color="green",shape="box"];212[label="yvy31",fontsize=16,color="green",shape="box"];213[label="yvy301",fontsize=16,color="green",shape="box"];214[label="yvy33",fontsize=16,color="green",shape="box"];215[label="yvy34",fontsize=16,color="green",shape="box"];216[label="yvy32",fontsize=16,color="green",shape="box"];207[label="FiniteMap.splitGT2 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) yvy48",fontsize=16,color="burlywood",shape="triangle"];4789[label="yvy48/False",fontsize=10,color="white",style="solid",shape="box"];207 -> 4789[label="",style="solid", color="burlywood", weight=9]; 4789 -> 222[label="",style="solid", color="burlywood", weight=3]; 4790[label="yvy48/True",fontsize=10,color="white",style="solid",shape="box"];207 -> 4790[label="",style="solid", color="burlywood", weight=9]; 4790 -> 223[label="",style="solid", color="burlywood", weight=3]; 88[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 (compare2 (yvy400,yvy401) yvy50 ((yvy400,yvy401) == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4791[label="yvy50/(yvy500,yvy501)",fontsize=10,color="white",style="solid",shape="box"];88 -> 4791[label="",style="solid", color="burlywood", weight=9]; 4791 -> 123[label="",style="solid", color="burlywood", weight=3]; 89[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"];89 -> 124[label="",style="solid", color="black", weight=3]; 90[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"];90 -> 125[label="",style="solid", color="black", weight=3]; 203[label="LT",fontsize=16,color="green",shape="box"];204 -> 1978[label="",style="dashed", color="red", weight=0]; 204[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301)",fontsize=16,color="magenta"];204 -> 1979[label="",style="dashed", color="magenta", weight=3]; 204 -> 1980[label="",style="dashed", color="magenta", weight=3]; 204 -> 1981[label="",style="dashed", color="magenta", weight=3]; 96[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4792[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];96 -> 4792[label="",style="solid", color="burlywood", weight=9]; 4792 -> 133[label="",style="solid", color="burlywood", weight=3]; 4793[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];96 -> 4793[label="",style="solid", color="burlywood", weight=9]; 4793 -> 134[label="",style="solid", color="burlywood", weight=3]; 4794[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];96 -> 4794[label="",style="solid", color="burlywood", weight=9]; 4794 -> 135[label="",style="solid", color="burlywood", weight=3]; 205[label="FiniteMap.splitLT2 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) False",fontsize=16,color="black",shape="box"];205 -> 235[label="",style="solid", color="black", weight=3]; 206[label="FiniteMap.splitLT2 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) True",fontsize=16,color="black",shape="box"];206 -> 236[label="",style="solid", color="black", weight=3]; 220[label="GT",fontsize=16,color="green",shape="box"];221 -> 1978[label="",style="dashed", color="red", weight=0]; 221[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301)",fontsize=16,color="magenta"];221 -> 1982[label="",style="dashed", color="magenta", weight=3]; 221 -> 1983[label="",style="dashed", color="magenta", weight=3]; 221 -> 1984[label="",style="dashed", color="magenta", weight=3]; 222[label="FiniteMap.splitGT2 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) False",fontsize=16,color="black",shape="box"];222 -> 237[label="",style="solid", color="black", weight=3]; 223[label="FiniteMap.splitGT2 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) True",fontsize=16,color="black",shape="box"];223 -> 238[label="",style="solid", color="black", weight=3]; 123[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 (compare2 (yvy400,yvy401) (yvy500,yvy501) ((yvy400,yvy401) == (yvy500,yvy501)) == LT)",fontsize=16,color="black",shape="box"];123 -> 150[label="",style="solid", color="black", weight=3]; 124 -> 151[label="",style="dashed", color="red", weight=0]; 124[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="magenta"];124 -> 152[label="",style="dashed", color="magenta", weight=3]; 125 -> 153[label="",style="dashed", color="red", weight=0]; 125[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="magenta"];125 -> 154[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2405[label="",style="dashed", color="red", weight=0]; 1979[label="yvy400 == yvy300 && yvy401 == yvy301",fontsize=16,color="magenta"];1979 -> 2406[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2407[label="",style="dashed", color="magenta", weight=3]; 1980[label="(yvy400,yvy401)",fontsize=16,color="green",shape="box"];1981[label="(yvy300,yvy301)",fontsize=16,color="green",shape="box"];1978[label="compare2 yvy70 yvy72 yvy146",fontsize=16,color="burlywood",shape="triangle"];4795[label="yvy146/False",fontsize=10,color="white",style="solid",shape="box"];1978 -> 4795[label="",style="solid", color="burlywood", weight=9]; 4795 -> 2005[label="",style="solid", color="burlywood", weight=3]; 4796[label="yvy146/True",fontsize=10,color="white",style="solid",shape="box"];1978 -> 4796[label="",style="solid", color="burlywood", weight=9]; 4796 -> 2006[label="",style="solid", color="burlywood", weight=3]; 133[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4797[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];133 -> 4797[label="",style="solid", color="burlywood", weight=9]; 4797 -> 166[label="",style="solid", color="burlywood", weight=3]; 4798[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];133 -> 4798[label="",style="solid", color="burlywood", weight=9]; 4798 -> 167[label="",style="solid", color="burlywood", weight=3]; 4799[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];133 -> 4799[label="",style="solid", color="burlywood", weight=9]; 4799 -> 168[label="",style="solid", color="burlywood", weight=3]; 134[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4800[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];134 -> 4800[label="",style="solid", color="burlywood", weight=9]; 4800 -> 169[label="",style="solid", color="burlywood", weight=3]; 4801[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];134 -> 4801[label="",style="solid", color="burlywood", weight=9]; 4801 -> 170[label="",style="solid", color="burlywood", weight=3]; 4802[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];134 -> 4802[label="",style="solid", color="burlywood", weight=9]; 4802 -> 171[label="",style="solid", color="burlywood", weight=3]; 135[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4803[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];135 -> 4803[label="",style="solid", color="burlywood", weight=9]; 4803 -> 172[label="",style="solid", color="burlywood", weight=3]; 4804[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];135 -> 4804[label="",style="solid", color="burlywood", weight=9]; 4804 -> 173[label="",style="solid", color="burlywood", weight=3]; 4805[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];135 -> 4805[label="",style="solid", color="burlywood", weight=9]; 4805 -> 174[label="",style="solid", color="burlywood", weight=3]; 235 -> 317[label="",style="dashed", color="red", weight=0]; 235[label="FiniteMap.splitLT1 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) ((yvy23,yvy24) > (yvy17,yvy18))",fontsize=16,color="magenta"];235 -> 318[label="",style="dashed", color="magenta", weight=3]; 236[label="FiniteMap.splitLT yvy21 (yvy23,yvy24)",fontsize=16,color="burlywood",shape="triangle"];4806[label="yvy21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];236 -> 4806[label="",style="solid", color="burlywood", weight=9]; 4806 -> 272[label="",style="solid", color="burlywood", weight=3]; 4807[label="yvy21/FiniteMap.Branch yvy210 yvy211 yvy212 yvy213 yvy214",fontsize=10,color="white",style="solid",shape="box"];236 -> 4807[label="",style="solid", color="burlywood", weight=9]; 4807 -> 273[label="",style="solid", color="burlywood", weight=3]; 1982 -> 2405[label="",style="dashed", color="red", weight=0]; 1982[label="yvy400 == yvy300 && yvy401 == yvy301",fontsize=16,color="magenta"];1982 -> 2408[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2409[label="",style="dashed", color="magenta", weight=3]; 1983[label="(yvy400,yvy401)",fontsize=16,color="green",shape="box"];1984[label="(yvy300,yvy301)",fontsize=16,color="green",shape="box"];237 -> 325[label="",style="dashed", color="red", weight=0]; 237[label="FiniteMap.splitGT1 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) ((yvy42,yvy43) < (yvy36,yvy37))",fontsize=16,color="magenta"];237 -> 326[label="",style="dashed", color="magenta", weight=3]; 238[label="FiniteMap.splitGT yvy41 (yvy42,yvy43)",fontsize=16,color="burlywood",shape="triangle"];4808[label="yvy41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];238 -> 4808[label="",style="solid", color="burlywood", weight=9]; 4808 -> 275[label="",style="solid", color="burlywood", weight=3]; 4809[label="yvy41/FiniteMap.Branch yvy410 yvy411 yvy412 yvy413 yvy414",fontsize=10,color="white",style="solid",shape="box"];238 -> 4809[label="",style="solid", color="burlywood", weight=9]; 4809 -> 276[label="",style="solid", color="burlywood", weight=3]; 150 -> 269[label="",style="dashed", color="red", weight=0]; 150[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 (compare2 (yvy400,yvy401) (yvy500,yvy501) (yvy400 == yvy500 && yvy401 == yvy501) == LT)",fontsize=16,color="magenta"];150 -> 270[label="",style="dashed", color="magenta", weight=3]; 152 -> 96[label="",style="dashed", color="red", weight=0]; 152[label="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="magenta"];152 -> 277[label="",style="dashed", color="magenta", weight=3]; 152 -> 278[label="",style="dashed", color="magenta", weight=3]; 151[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 yvy45",fontsize=16,color="burlywood",shape="triangle"];4810[label="yvy45/False",fontsize=10,color="white",style="solid",shape="box"];151 -> 4810[label="",style="solid", color="burlywood", weight=9]; 4810 -> 279[label="",style="solid", color="burlywood", weight=3]; 4811[label="yvy45/True",fontsize=10,color="white",style="solid",shape="box"];151 -> 4811[label="",style="solid", color="burlywood", weight=9]; 4811 -> 280[label="",style="solid", color="burlywood", weight=3]; 154 -> 96[label="",style="dashed", color="red", weight=0]; 154[label="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="magenta"];154 -> 281[label="",style="dashed", color="magenta", weight=3]; 154 -> 282[label="",style="dashed", color="magenta", weight=3]; 153[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 yvy46",fontsize=16,color="burlywood",shape="triangle"];4812[label="yvy46/False",fontsize=10,color="white",style="solid",shape="box"];153 -> 4812[label="",style="solid", color="burlywood", weight=9]; 4812 -> 283[label="",style="solid", color="burlywood", weight=3]; 4813[label="yvy46/True",fontsize=10,color="white",style="solid",shape="box"];153 -> 4813[label="",style="solid", color="burlywood", weight=9]; 4813 -> 284[label="",style="solid", color="burlywood", weight=3]; 2406[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4814[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2416[label="",style="solid", color="blue", weight=3]; 4815[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2417[label="",style="solid", color="blue", weight=3]; 4816[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 2418[label="",style="solid", color="blue", weight=3]; 4817[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 2419[label="",style="solid", color="blue", weight=3]; 4818[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2420[label="",style="solid", color="blue", weight=3]; 4819[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2421[label="",style="solid", color="blue", weight=3]; 4820[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2422[label="",style="solid", color="blue", weight=3]; 4821[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2423[label="",style="solid", color="blue", weight=3]; 4822[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 2424[label="",style="solid", color="blue", weight=3]; 4823[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 2425[label="",style="solid", color="blue", weight=3]; 4824[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 2426[label="",style="solid", color="blue", weight=3]; 4825[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 2427[label="",style="solid", color="blue", weight=3]; 4826[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 2428[label="",style="solid", color="blue", weight=3]; 4827[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 2429[label="",style="solid", color="blue", weight=3]; 2407[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];4828[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 2430[label="",style="solid", color="blue", weight=3]; 4829[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 2431[label="",style="solid", color="blue", weight=3]; 4830[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 2432[label="",style="solid", color="blue", weight=3]; 4831[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 2433[label="",style="solid", color="blue", weight=3]; 4832[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4832[label="",style="solid", color="blue", weight=9]; 4832 -> 2434[label="",style="solid", color="blue", weight=3]; 4833[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4833[label="",style="solid", color="blue", weight=9]; 4833 -> 2435[label="",style="solid", color="blue", weight=3]; 4834[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4834[label="",style="solid", color="blue", weight=9]; 4834 -> 2436[label="",style="solid", color="blue", weight=3]; 4835[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 2437[label="",style="solid", color="blue", weight=3]; 4836[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 2438[label="",style="solid", color="blue", weight=3]; 4837[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4837[label="",style="solid", color="blue", weight=9]; 4837 -> 2439[label="",style="solid", color="blue", weight=3]; 4838[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4838[label="",style="solid", color="blue", weight=9]; 4838 -> 2440[label="",style="solid", color="blue", weight=3]; 4839[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4839[label="",style="solid", color="blue", weight=9]; 4839 -> 2441[label="",style="solid", color="blue", weight=3]; 4840[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4840[label="",style="solid", color="blue", weight=9]; 4840 -> 2442[label="",style="solid", color="blue", weight=3]; 4841[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4841[label="",style="solid", color="blue", weight=9]; 4841 -> 2443[label="",style="solid", color="blue", weight=3]; 2405[label="yvy162 && yvy163",fontsize=16,color="burlywood",shape="triangle"];4842[label="yvy162/False",fontsize=10,color="white",style="solid",shape="box"];2405 -> 4842[label="",style="solid", color="burlywood", weight=9]; 4842 -> 2444[label="",style="solid", color="burlywood", weight=3]; 4843[label="yvy162/True",fontsize=10,color="white",style="solid",shape="box"];2405 -> 4843[label="",style="solid", color="burlywood", weight=9]; 4843 -> 2445[label="",style="solid", color="burlywood", weight=3]; 2005[label="compare2 yvy70 yvy72 False",fontsize=16,color="black",shape="box"];2005 -> 2069[label="",style="solid", color="black", weight=3]; 2006[label="compare2 yvy70 yvy72 True",fontsize=16,color="black",shape="box"];2006 -> 2070[label="",style="solid", color="black", weight=3]; 166[label="LT == LT",fontsize=16,color="black",shape="box"];166 -> 304[label="",style="solid", color="black", weight=3]; 167[label="LT == EQ",fontsize=16,color="black",shape="box"];167 -> 305[label="",style="solid", color="black", weight=3]; 168[label="LT == GT",fontsize=16,color="black",shape="box"];168 -> 306[label="",style="solid", color="black", weight=3]; 169[label="EQ == LT",fontsize=16,color="black",shape="box"];169 -> 307[label="",style="solid", color="black", weight=3]; 170[label="EQ == EQ",fontsize=16,color="black",shape="box"];170 -> 308[label="",style="solid", color="black", weight=3]; 171[label="EQ == GT",fontsize=16,color="black",shape="box"];171 -> 309[label="",style="solid", color="black", weight=3]; 172[label="GT == LT",fontsize=16,color="black",shape="box"];172 -> 310[label="",style="solid", color="black", weight=3]; 173[label="GT == EQ",fontsize=16,color="black",shape="box"];173 -> 311[label="",style="solid", color="black", weight=3]; 174[label="GT == GT",fontsize=16,color="black",shape="box"];174 -> 312[label="",style="solid", color="black", weight=3]; 318[label="(yvy23,yvy24) > (yvy17,yvy18)",fontsize=16,color="black",shape="triangle"];318 -> 320[label="",style="solid", color="black", weight=3]; 317[label="FiniteMap.splitLT1 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) yvy62",fontsize=16,color="burlywood",shape="triangle"];4844[label="yvy62/False",fontsize=10,color="white",style="solid",shape="box"];317 -> 4844[label="",style="solid", color="burlywood", weight=9]; 4844 -> 321[label="",style="solid", color="burlywood", weight=3]; 4845[label="yvy62/True",fontsize=10,color="white",style="solid",shape="box"];317 -> 4845[label="",style="solid", color="burlywood", weight=9]; 4845 -> 322[label="",style="solid", color="burlywood", weight=3]; 272[label="FiniteMap.splitLT FiniteMap.EmptyFM (yvy23,yvy24)",fontsize=16,color="black",shape="box"];272 -> 323[label="",style="solid", color="black", weight=3]; 273[label="FiniteMap.splitLT (FiniteMap.Branch yvy210 yvy211 yvy212 yvy213 yvy214) (yvy23,yvy24)",fontsize=16,color="black",shape="box"];273 -> 324[label="",style="solid", color="black", weight=3]; 2408[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4846[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4846[label="",style="solid", color="blue", weight=9]; 4846 -> 2446[label="",style="solid", color="blue", weight=3]; 4847[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4847[label="",style="solid", color="blue", weight=9]; 4847 -> 2447[label="",style="solid", color="blue", weight=3]; 4848[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4848[label="",style="solid", color="blue", weight=9]; 4848 -> 2448[label="",style="solid", color="blue", weight=3]; 4849[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4849[label="",style="solid", color="blue", weight=9]; 4849 -> 2449[label="",style="solid", color="blue", weight=3]; 4850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4850[label="",style="solid", color="blue", weight=9]; 4850 -> 2450[label="",style="solid", color="blue", weight=3]; 4851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 2451[label="",style="solid", color="blue", weight=3]; 4852[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 2452[label="",style="solid", color="blue", weight=3]; 4853[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 2453[label="",style="solid", color="blue", weight=3]; 4854[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 2454[label="",style="solid", color="blue", weight=3]; 4855[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4855[label="",style="solid", color="blue", weight=9]; 4855 -> 2455[label="",style="solid", color="blue", weight=3]; 4856[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4856[label="",style="solid", color="blue", weight=9]; 4856 -> 2456[label="",style="solid", color="blue", weight=3]; 4857[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4857[label="",style="solid", color="blue", weight=9]; 4857 -> 2457[label="",style="solid", color="blue", weight=3]; 4858[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4858[label="",style="solid", color="blue", weight=9]; 4858 -> 2458[label="",style="solid", color="blue", weight=3]; 4859[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4859[label="",style="solid", color="blue", weight=9]; 4859 -> 2459[label="",style="solid", color="blue", weight=3]; 2409[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];4860[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 2460[label="",style="solid", color="blue", weight=3]; 4861[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 2461[label="",style="solid", color="blue", weight=3]; 4862[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 2462[label="",style="solid", color="blue", weight=3]; 4863[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 2463[label="",style="solid", color="blue", weight=3]; 4864[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4864[label="",style="solid", color="blue", weight=9]; 4864 -> 2464[label="",style="solid", color="blue", weight=3]; 4865[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4865[label="",style="solid", color="blue", weight=9]; 4865 -> 2465[label="",style="solid", color="blue", weight=3]; 4866[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4866[label="",style="solid", color="blue", weight=9]; 4866 -> 2466[label="",style="solid", color="blue", weight=3]; 4867[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4867[label="",style="solid", color="blue", weight=9]; 4867 -> 2467[label="",style="solid", color="blue", weight=3]; 4868[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4868[label="",style="solid", color="blue", weight=9]; 4868 -> 2468[label="",style="solid", color="blue", weight=3]; 4869[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4869[label="",style="solid", color="blue", weight=9]; 4869 -> 2469[label="",style="solid", color="blue", weight=3]; 4870[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4870[label="",style="solid", color="blue", weight=9]; 4870 -> 2470[label="",style="solid", color="blue", weight=3]; 4871[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4871[label="",style="solid", color="blue", weight=9]; 4871 -> 2471[label="",style="solid", color="blue", weight=3]; 4872[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4872[label="",style="solid", color="blue", weight=9]; 4872 -> 2472[label="",style="solid", color="blue", weight=3]; 4873[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4873[label="",style="solid", color="blue", weight=9]; 4873 -> 2473[label="",style="solid", color="blue", weight=3]; 326[label="(yvy42,yvy43) < (yvy36,yvy37)",fontsize=16,color="black",shape="box"];326 -> 328[label="",style="solid", color="black", weight=3]; 325[label="FiniteMap.splitGT1 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) yvy63",fontsize=16,color="burlywood",shape="triangle"];4874[label="yvy63/False",fontsize=10,color="white",style="solid",shape="box"];325 -> 4874[label="",style="solid", color="burlywood", weight=9]; 4874 -> 329[label="",style="solid", color="burlywood", weight=3]; 4875[label="yvy63/True",fontsize=10,color="white",style="solid",shape="box"];325 -> 4875[label="",style="solid", color="burlywood", weight=9]; 4875 -> 330[label="",style="solid", color="burlywood", weight=3]; 275[label="FiniteMap.splitGT FiniteMap.EmptyFM (yvy42,yvy43)",fontsize=16,color="black",shape="box"];275 -> 331[label="",style="solid", color="black", weight=3]; 276[label="FiniteMap.splitGT (FiniteMap.Branch yvy410 yvy411 yvy412 yvy413 yvy414) (yvy42,yvy43)",fontsize=16,color="black",shape="box"];276 -> 332[label="",style="solid", color="black", weight=3]; 270 -> 96[label="",style="dashed", color="red", weight=0]; 270[label="compare2 (yvy400,yvy401) (yvy500,yvy501) (yvy400 == yvy500 && yvy401 == yvy501) == LT",fontsize=16,color="magenta"];270 -> 313[label="",style="dashed", color="magenta", weight=3]; 270 -> 314[label="",style="dashed", color="magenta", weight=3]; 269[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 yvy60",fontsize=16,color="burlywood",shape="triangle"];4876[label="yvy60/False",fontsize=10,color="white",style="solid",shape="box"];269 -> 4876[label="",style="solid", color="burlywood", weight=9]; 4876 -> 315[label="",style="solid", color="burlywood", weight=3]; 4877[label="yvy60/True",fontsize=10,color="white",style="solid",shape="box"];269 -> 4877[label="",style="solid", color="burlywood", weight=9]; 4877 -> 316[label="",style="solid", color="burlywood", weight=3]; 277[label="LT",fontsize=16,color="green",shape="box"];278[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];4878[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];278 -> 4878[label="",style="solid", color="burlywood", weight=9]; 4878 -> 333[label="",style="solid", color="burlywood", weight=3]; 4879[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];278 -> 4879[label="",style="solid", color="burlywood", weight=9]; 4879 -> 334[label="",style="solid", color="burlywood", weight=3]; 279[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 False",fontsize=16,color="black",shape="box"];279 -> 335[label="",style="solid", color="black", weight=3]; 280[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 True",fontsize=16,color="black",shape="box"];280 -> 336[label="",style="solid", color="black", weight=3]; 281[label="LT",fontsize=16,color="green",shape="box"];282[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];4880[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];282 -> 4880[label="",style="solid", color="burlywood", weight=9]; 4880 -> 337[label="",style="solid", color="burlywood", weight=3]; 4881[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];282 -> 4881[label="",style="solid", color="burlywood", weight=9]; 4881 -> 338[label="",style="solid", color="burlywood", weight=3]; 283[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 False",fontsize=16,color="black",shape="box"];283 -> 339[label="",style="solid", color="black", weight=3]; 284[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 True",fontsize=16,color="black",shape="box"];284 -> 340[label="",style="solid", color="black", weight=3]; 2416[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4882[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4882[label="",style="solid", color="burlywood", weight=9]; 4882 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2417[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4883[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2417 -> 4883[label="",style="solid", color="burlywood", weight=9]; 4883 -> 2505[label="",style="solid", color="burlywood", weight=3]; 4884[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2417 -> 4884[label="",style="solid", color="burlywood", weight=9]; 4884 -> 2506[label="",style="solid", color="burlywood", weight=3]; 2418[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4885[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4885[label="",style="solid", color="burlywood", weight=9]; 4885 -> 2507[label="",style="solid", color="burlywood", weight=3]; 2419[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4886[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2419 -> 4886[label="",style="solid", color="burlywood", weight=9]; 4886 -> 2508[label="",style="solid", color="burlywood", weight=3]; 2420[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4887[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4887[label="",style="solid", color="burlywood", weight=9]; 4887 -> 2509[label="",style="solid", color="burlywood", weight=3]; 4888[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4888[label="",style="solid", color="burlywood", weight=9]; 4888 -> 2510[label="",style="solid", color="burlywood", weight=3]; 2421 -> 96[label="",style="dashed", color="red", weight=0]; 2421[label="yvy400 == yvy300",fontsize=16,color="magenta"];2422[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4889[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2422 -> 4889[label="",style="solid", color="burlywood", weight=9]; 4889 -> 2511[label="",style="solid", color="burlywood", weight=3]; 2423[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4890[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4890[label="",style="solid", color="burlywood", weight=9]; 4890 -> 2512[label="",style="solid", color="burlywood", weight=3]; 2424[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2424 -> 2513[label="",style="solid", color="black", weight=3]; 2425[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2425 -> 2514[label="",style="solid", color="black", weight=3]; 2426[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2426 -> 2515[label="",style="solid", color="black", weight=3]; 2427[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4891[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4891[label="",style="solid", color="burlywood", weight=9]; 4891 -> 2516[label="",style="solid", color="burlywood", weight=3]; 4892[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4892[label="",style="solid", color="burlywood", weight=9]; 4892 -> 2517[label="",style="solid", color="burlywood", weight=3]; 2428[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4893[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2428 -> 4893[label="",style="solid", color="burlywood", weight=9]; 4893 -> 2518[label="",style="solid", color="burlywood", weight=3]; 4894[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2428 -> 4894[label="",style="solid", color="burlywood", weight=9]; 4894 -> 2519[label="",style="solid", color="burlywood", weight=3]; 2429[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2429 -> 2520[label="",style="solid", color="black", weight=3]; 2430 -> 2416[label="",style="dashed", color="red", weight=0]; 2430[label="yvy401 == yvy301",fontsize=16,color="magenta"];2430 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2417[label="",style="dashed", color="red", weight=0]; 2431[label="yvy401 == yvy301",fontsize=16,color="magenta"];2431 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2418[label="",style="dashed", color="red", weight=0]; 2432[label="yvy401 == yvy301",fontsize=16,color="magenta"];2432 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2419[label="",style="dashed", color="red", weight=0]; 2433[label="yvy401 == yvy301",fontsize=16,color="magenta"];2433 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2420[label="",style="dashed", color="red", weight=0]; 2434[label="yvy401 == yvy301",fontsize=16,color="magenta"];2434 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2435 -> 96[label="",style="dashed", color="red", weight=0]; 2435[label="yvy401 == yvy301",fontsize=16,color="magenta"];2435 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2422[label="",style="dashed", color="red", weight=0]; 2436[label="yvy401 == yvy301",fontsize=16,color="magenta"];2436 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2423[label="",style="dashed", color="red", weight=0]; 2437[label="yvy401 == yvy301",fontsize=16,color="magenta"];2437 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2424[label="",style="dashed", color="red", weight=0]; 2438[label="yvy401 == yvy301",fontsize=16,color="magenta"];2438 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2425[label="",style="dashed", color="red", weight=0]; 2439[label="yvy401 == yvy301",fontsize=16,color="magenta"];2439 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2426[label="",style="dashed", color="red", weight=0]; 2440[label="yvy401 == yvy301",fontsize=16,color="magenta"];2440 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2427[label="",style="dashed", color="red", weight=0]; 2441[label="yvy401 == yvy301",fontsize=16,color="magenta"];2441 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2428[label="",style="dashed", color="red", weight=0]; 2442[label="yvy401 == yvy301",fontsize=16,color="magenta"];2442 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2429[label="",style="dashed", color="red", weight=0]; 2443[label="yvy401 == yvy301",fontsize=16,color="magenta"];2443 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2444[label="False && yvy163",fontsize=16,color="black",shape="box"];2444 -> 2549[label="",style="solid", color="black", weight=3]; 2445[label="True && yvy163",fontsize=16,color="black",shape="box"];2445 -> 2550[label="",style="solid", color="black", weight=3]; 2069[label="compare1 yvy70 yvy72 (yvy70 <= yvy72)",fontsize=16,color="burlywood",shape="box"];4895[label="yvy70/(yvy700,yvy701)",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4895[label="",style="solid", color="burlywood", weight=9]; 4895 -> 2109[label="",style="solid", color="burlywood", weight=3]; 2070[label="EQ",fontsize=16,color="green",shape="box"];304[label="True",fontsize=16,color="green",shape="box"];305[label="False",fontsize=16,color="green",shape="box"];306[label="False",fontsize=16,color="green",shape="box"];307[label="False",fontsize=16,color="green",shape="box"];308[label="True",fontsize=16,color="green",shape="box"];309[label="False",fontsize=16,color="green",shape="box"];310[label="False",fontsize=16,color="green",shape="box"];311[label="False",fontsize=16,color="green",shape="box"];312[label="True",fontsize=16,color="green",shape="box"];320 -> 96[label="",style="dashed", color="red", weight=0]; 320[label="compare (yvy23,yvy24) (yvy17,yvy18) == GT",fontsize=16,color="magenta"];320 -> 441[label="",style="dashed", color="magenta", weight=3]; 320 -> 442[label="",style="dashed", color="magenta", weight=3]; 321[label="FiniteMap.splitLT1 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) False",fontsize=16,color="black",shape="box"];321 -> 443[label="",style="solid", color="black", weight=3]; 322[label="FiniteMap.splitLT1 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) True",fontsize=16,color="black",shape="box"];322 -> 444[label="",style="solid", color="black", weight=3]; 323[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (yvy23,yvy24)",fontsize=16,color="black",shape="box"];323 -> 445[label="",style="solid", color="black", weight=3]; 324 -> 26[label="",style="dashed", color="red", weight=0]; 324[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy210 yvy211 yvy212 yvy213 yvy214) (yvy23,yvy24)",fontsize=16,color="magenta"];324 -> 446[label="",style="dashed", color="magenta", weight=3]; 324 -> 447[label="",style="dashed", color="magenta", weight=3]; 324 -> 448[label="",style="dashed", color="magenta", weight=3]; 324 -> 449[label="",style="dashed", color="magenta", weight=3]; 324 -> 450[label="",style="dashed", color="magenta", weight=3]; 324 -> 451[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2416[label="",style="dashed", color="red", weight=0]; 2446[label="yvy400 == yvy300",fontsize=16,color="magenta"];2447 -> 2417[label="",style="dashed", color="red", weight=0]; 2447[label="yvy400 == yvy300",fontsize=16,color="magenta"];2448 -> 2418[label="",style="dashed", color="red", weight=0]; 2448[label="yvy400 == yvy300",fontsize=16,color="magenta"];2449 -> 2419[label="",style="dashed", color="red", weight=0]; 2449[label="yvy400 == yvy300",fontsize=16,color="magenta"];2450 -> 2420[label="",style="dashed", color="red", weight=0]; 2450[label="yvy400 == yvy300",fontsize=16,color="magenta"];2451 -> 96[label="",style="dashed", color="red", weight=0]; 2451[label="yvy400 == yvy300",fontsize=16,color="magenta"];2452 -> 2422[label="",style="dashed", color="red", weight=0]; 2452[label="yvy400 == yvy300",fontsize=16,color="magenta"];2453 -> 2423[label="",style="dashed", color="red", weight=0]; 2453[label="yvy400 == yvy300",fontsize=16,color="magenta"];2454 -> 2424[label="",style="dashed", color="red", weight=0]; 2454[label="yvy400 == yvy300",fontsize=16,color="magenta"];2455 -> 2425[label="",style="dashed", color="red", weight=0]; 2455[label="yvy400 == yvy300",fontsize=16,color="magenta"];2456 -> 2426[label="",style="dashed", color="red", weight=0]; 2456[label="yvy400 == yvy300",fontsize=16,color="magenta"];2457 -> 2427[label="",style="dashed", color="red", weight=0]; 2457[label="yvy400 == yvy300",fontsize=16,color="magenta"];2458 -> 2428[label="",style="dashed", color="red", weight=0]; 2458[label="yvy400 == yvy300",fontsize=16,color="magenta"];2459 -> 2429[label="",style="dashed", color="red", weight=0]; 2459[label="yvy400 == yvy300",fontsize=16,color="magenta"];2460 -> 2416[label="",style="dashed", color="red", weight=0]; 2460[label="yvy401 == yvy301",fontsize=16,color="magenta"];2460 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2417[label="",style="dashed", color="red", weight=0]; 2461[label="yvy401 == yvy301",fontsize=16,color="magenta"];2461 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2418[label="",style="dashed", color="red", weight=0]; 2462[label="yvy401 == yvy301",fontsize=16,color="magenta"];2462 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2419[label="",style="dashed", color="red", weight=0]; 2463[label="yvy401 == yvy301",fontsize=16,color="magenta"];2463 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2420[label="",style="dashed", color="red", weight=0]; 2464[label="yvy401 == yvy301",fontsize=16,color="magenta"];2464 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2465 -> 96[label="",style="dashed", color="red", weight=0]; 2465[label="yvy401 == yvy301",fontsize=16,color="magenta"];2465 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2422[label="",style="dashed", color="red", weight=0]; 2466[label="yvy401 == yvy301",fontsize=16,color="magenta"];2466 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2423[label="",style="dashed", color="red", weight=0]; 2467[label="yvy401 == yvy301",fontsize=16,color="magenta"];2467 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2424[label="",style="dashed", color="red", weight=0]; 2468[label="yvy401 == yvy301",fontsize=16,color="magenta"];2468 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2425[label="",style="dashed", color="red", weight=0]; 2469[label="yvy401 == yvy301",fontsize=16,color="magenta"];2469 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2426[label="",style="dashed", color="red", weight=0]; 2470[label="yvy401 == yvy301",fontsize=16,color="magenta"];2470 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2427[label="",style="dashed", color="red", weight=0]; 2471[label="yvy401 == yvy301",fontsize=16,color="magenta"];2471 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2428[label="",style="dashed", color="red", weight=0]; 2472[label="yvy401 == yvy301",fontsize=16,color="magenta"];2472 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2429[label="",style="dashed", color="red", weight=0]; 2473[label="yvy401 == yvy301",fontsize=16,color="magenta"];2473 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2578[label="",style="dashed", color="magenta", weight=3]; 328 -> 96[label="",style="dashed", color="red", weight=0]; 328[label="compare (yvy42,yvy43) (yvy36,yvy37) == LT",fontsize=16,color="magenta"];328 -> 452[label="",style="dashed", color="magenta", weight=3]; 328 -> 453[label="",style="dashed", color="magenta", weight=3]; 329[label="FiniteMap.splitGT1 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) False",fontsize=16,color="black",shape="box"];329 -> 454[label="",style="solid", color="black", weight=3]; 330[label="FiniteMap.splitGT1 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) True",fontsize=16,color="black",shape="box"];330 -> 455[label="",style="solid", color="black", weight=3]; 331[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (yvy42,yvy43)",fontsize=16,color="black",shape="box"];331 -> 456[label="",style="solid", color="black", weight=3]; 332 -> 27[label="",style="dashed", color="red", weight=0]; 332[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy410 yvy411 yvy412 yvy413 yvy414) (yvy42,yvy43)",fontsize=16,color="magenta"];332 -> 457[label="",style="dashed", color="magenta", weight=3]; 332 -> 458[label="",style="dashed", color="magenta", weight=3]; 332 -> 459[label="",style="dashed", color="magenta", weight=3]; 332 -> 460[label="",style="dashed", color="magenta", weight=3]; 332 -> 461[label="",style="dashed", color="magenta", weight=3]; 332 -> 462[label="",style="dashed", color="magenta", weight=3]; 313[label="LT",fontsize=16,color="green",shape="box"];314 -> 1978[label="",style="dashed", color="red", weight=0]; 314[label="compare2 (yvy400,yvy401) (yvy500,yvy501) (yvy400 == yvy500 && yvy401 == yvy501)",fontsize=16,color="magenta"];314 -> 1988[label="",style="dashed", color="magenta", weight=3]; 314 -> 1989[label="",style="dashed", color="magenta", weight=3]; 314 -> 1990[label="",style="dashed", color="magenta", weight=3]; 315[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 False",fontsize=16,color="black",shape="box"];315 -> 463[label="",style="solid", color="black", weight=3]; 316[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 True",fontsize=16,color="black",shape="box"];316 -> 464[label="",style="solid", color="black", weight=3]; 333[label="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)",fontsize=16,color="black",shape="box"];333 -> 465[label="",style="solid", color="black", weight=3]; 334[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];334 -> 466[label="",style="solid", color="black", weight=3]; 335 -> 558[label="",style="dashed", color="red", weight=0]; 335[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];335 -> 559[label="",style="dashed", color="magenta", weight=3]; 336 -> 468[label="",style="dashed", color="red", weight=0]; 336[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];336 -> 469[label="",style="dashed", color="magenta", weight=3]; 337[label="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)",fontsize=16,color="black",shape="box"];337 -> 494[label="",style="solid", color="black", weight=3]; 338[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];338 -> 495[label="",style="solid", color="black", weight=3]; 339 -> 575[label="",style="dashed", color="red", weight=0]; 339[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];339 -> 576[label="",style="dashed", color="magenta", weight=3]; 340 -> 468[label="",style="dashed", color="red", weight=0]; 340[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];340 -> 470[label="",style="dashed", color="magenta", weight=3]; 2504[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4896[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4896[label="",style="solid", color="burlywood", weight=9]; 4896 -> 2636[label="",style="solid", color="burlywood", weight=3]; 2505[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4897[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4897[label="",style="solid", color="burlywood", weight=9]; 4897 -> 2637[label="",style="solid", color="burlywood", weight=3]; 4898[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4898[label="",style="solid", color="burlywood", weight=9]; 4898 -> 2638[label="",style="solid", color="burlywood", weight=3]; 2506[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4899[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2506 -> 4899[label="",style="solid", color="burlywood", weight=9]; 4899 -> 2639[label="",style="solid", color="burlywood", weight=3]; 4900[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2506 -> 4900[label="",style="solid", color="burlywood", weight=9]; 4900 -> 2640[label="",style="solid", color="burlywood", weight=3]; 2507[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4901[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4901[label="",style="solid", color="burlywood", weight=9]; 4901 -> 2641[label="",style="solid", color="burlywood", weight=3]; 2508[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4902[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2508 -> 4902[label="",style="solid", color="burlywood", weight=9]; 4902 -> 2642[label="",style="solid", color="burlywood", weight=3]; 2509[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4903[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4903[label="",style="solid", color="burlywood", weight=9]; 4903 -> 2643[label="",style="solid", color="burlywood", weight=3]; 4904[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4904[label="",style="solid", color="burlywood", weight=9]; 4904 -> 2644[label="",style="solid", color="burlywood", weight=3]; 2510[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4905[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4905[label="",style="solid", color="burlywood", weight=9]; 4905 -> 2645[label="",style="solid", color="burlywood", weight=3]; 4906[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4906[label="",style="solid", color="burlywood", weight=9]; 4906 -> 2646[label="",style="solid", color="burlywood", weight=3]; 2511[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4907[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4907[label="",style="solid", color="burlywood", weight=9]; 4907 -> 2647[label="",style="solid", color="burlywood", weight=3]; 2512[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4908[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4908[label="",style="solid", color="burlywood", weight=9]; 4908 -> 2648[label="",style="solid", color="burlywood", weight=3]; 2513[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4909[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2513 -> 4909[label="",style="solid", color="burlywood", weight=9]; 4909 -> 2649[label="",style="solid", color="burlywood", weight=3]; 4910[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2513 -> 4910[label="",style="solid", color="burlywood", weight=9]; 4910 -> 2650[label="",style="solid", color="burlywood", weight=3]; 2514[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4911[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4911[label="",style="solid", color="burlywood", weight=9]; 4911 -> 2651[label="",style="solid", color="burlywood", weight=3]; 2515[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4912[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4912[label="",style="solid", color="burlywood", weight=9]; 4912 -> 2652[label="",style="solid", color="burlywood", weight=3]; 2516[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4913[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2516 -> 4913[label="",style="solid", color="burlywood", weight=9]; 4913 -> 2653[label="",style="solid", color="burlywood", weight=3]; 4914[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2516 -> 4914[label="",style="solid", color="burlywood", weight=9]; 4914 -> 2654[label="",style="solid", color="burlywood", weight=3]; 2517[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4915[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2517 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 2655[label="",style="solid", color="burlywood", weight=3]; 4916[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2517 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 2656[label="",style="solid", color="burlywood", weight=3]; 2518[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4917[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2518 -> 4917[label="",style="solid", color="burlywood", weight=9]; 4917 -> 2657[label="",style="solid", color="burlywood", weight=3]; 4918[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2518 -> 4918[label="",style="solid", color="burlywood", weight=9]; 4918 -> 2658[label="",style="solid", color="burlywood", weight=3]; 2519[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4919[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4919[label="",style="solid", color="burlywood", weight=9]; 4919 -> 2659[label="",style="solid", color="burlywood", weight=3]; 4920[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4920[label="",style="solid", color="burlywood", weight=9]; 4920 -> 2660[label="",style="solid", color="burlywood", weight=3]; 2520[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4921[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2520 -> 4921[label="",style="solid", color="burlywood", weight=9]; 4921 -> 2661[label="",style="solid", color="burlywood", weight=3]; 2521[label="yvy301",fontsize=16,color="green",shape="box"];2522[label="yvy401",fontsize=16,color="green",shape="box"];2523[label="yvy301",fontsize=16,color="green",shape="box"];2524[label="yvy401",fontsize=16,color="green",shape="box"];2525[label="yvy301",fontsize=16,color="green",shape="box"];2526[label="yvy401",fontsize=16,color="green",shape="box"];2527[label="yvy301",fontsize=16,color="green",shape="box"];2528[label="yvy401",fontsize=16,color="green",shape="box"];2529[label="yvy301",fontsize=16,color="green",shape="box"];2530[label="yvy401",fontsize=16,color="green",shape="box"];2531[label="yvy301",fontsize=16,color="green",shape="box"];2532[label="yvy401",fontsize=16,color="green",shape="box"];2533[label="yvy301",fontsize=16,color="green",shape="box"];2534[label="yvy401",fontsize=16,color="green",shape="box"];2535[label="yvy301",fontsize=16,color="green",shape="box"];2536[label="yvy401",fontsize=16,color="green",shape="box"];2537[label="yvy301",fontsize=16,color="green",shape="box"];2538[label="yvy401",fontsize=16,color="green",shape="box"];2539[label="yvy301",fontsize=16,color="green",shape="box"];2540[label="yvy401",fontsize=16,color="green",shape="box"];2541[label="yvy301",fontsize=16,color="green",shape="box"];2542[label="yvy401",fontsize=16,color="green",shape="box"];2543[label="yvy301",fontsize=16,color="green",shape="box"];2544[label="yvy401",fontsize=16,color="green",shape="box"];2545[label="yvy301",fontsize=16,color="green",shape="box"];2546[label="yvy401",fontsize=16,color="green",shape="box"];2547[label="yvy301",fontsize=16,color="green",shape="box"];2548[label="yvy401",fontsize=16,color="green",shape="box"];2549[label="False",fontsize=16,color="green",shape="box"];2550[label="yvy163",fontsize=16,color="green",shape="box"];2109[label="compare1 (yvy700,yvy701) yvy72 ((yvy700,yvy701) <= yvy72)",fontsize=16,color="burlywood",shape="box"];4922[label="yvy72/(yvy720,yvy721)",fontsize=10,color="white",style="solid",shape="box"];2109 -> 4922[label="",style="solid", color="burlywood", weight=9]; 4922 -> 2214[label="",style="solid", color="burlywood", weight=3]; 441[label="GT",fontsize=16,color="green",shape="box"];442[label="compare (yvy23,yvy24) (yvy17,yvy18)",fontsize=16,color="black",shape="triangle"];442 -> 497[label="",style="solid", color="black", weight=3]; 443[label="FiniteMap.splitLT0 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) otherwise",fontsize=16,color="black",shape="box"];443 -> 498[label="",style="solid", color="black", weight=3]; 444 -> 12[label="",style="dashed", color="red", weight=0]; 444[label="FiniteMap.mkVBalBranch (yvy17,yvy18) yvy19 yvy21 (FiniteMap.splitLT yvy22 (yvy23,yvy24))",fontsize=16,color="magenta"];444 -> 499[label="",style="dashed", color="magenta", weight=3]; 444 -> 500[label="",style="dashed", color="magenta", weight=3]; 444 -> 501[label="",style="dashed", color="magenta", weight=3]; 444 -> 502[label="",style="dashed", color="magenta", weight=3]; 445 -> 59[label="",style="dashed", color="red", weight=0]; 445[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];446[label="yvy210",fontsize=16,color="green",shape="box"];447[label="yvy212",fontsize=16,color="green",shape="box"];448[label="(yvy23,yvy24)",fontsize=16,color="green",shape="box"];449[label="yvy214",fontsize=16,color="green",shape="box"];450[label="yvy213",fontsize=16,color="green",shape="box"];451[label="yvy211",fontsize=16,color="green",shape="box"];2551[label="yvy301",fontsize=16,color="green",shape="box"];2552[label="yvy401",fontsize=16,color="green",shape="box"];2553[label="yvy301",fontsize=16,color="green",shape="box"];2554[label="yvy401",fontsize=16,color="green",shape="box"];2555[label="yvy301",fontsize=16,color="green",shape="box"];2556[label="yvy401",fontsize=16,color="green",shape="box"];2557[label="yvy301",fontsize=16,color="green",shape="box"];2558[label="yvy401",fontsize=16,color="green",shape="box"];2559[label="yvy301",fontsize=16,color="green",shape="box"];2560[label="yvy401",fontsize=16,color="green",shape="box"];2561[label="yvy301",fontsize=16,color="green",shape="box"];2562[label="yvy401",fontsize=16,color="green",shape="box"];2563[label="yvy301",fontsize=16,color="green",shape="box"];2564[label="yvy401",fontsize=16,color="green",shape="box"];2565[label="yvy301",fontsize=16,color="green",shape="box"];2566[label="yvy401",fontsize=16,color="green",shape="box"];2567[label="yvy301",fontsize=16,color="green",shape="box"];2568[label="yvy401",fontsize=16,color="green",shape="box"];2569[label="yvy301",fontsize=16,color="green",shape="box"];2570[label="yvy401",fontsize=16,color="green",shape="box"];2571[label="yvy301",fontsize=16,color="green",shape="box"];2572[label="yvy401",fontsize=16,color="green",shape="box"];2573[label="yvy301",fontsize=16,color="green",shape="box"];2574[label="yvy401",fontsize=16,color="green",shape="box"];2575[label="yvy301",fontsize=16,color="green",shape="box"];2576[label="yvy401",fontsize=16,color="green",shape="box"];2577[label="yvy301",fontsize=16,color="green",shape="box"];2578[label="yvy401",fontsize=16,color="green",shape="box"];452[label="LT",fontsize=16,color="green",shape="box"];453 -> 442[label="",style="dashed", color="red", weight=0]; 453[label="compare (yvy42,yvy43) (yvy36,yvy37)",fontsize=16,color="magenta"];453 -> 503[label="",style="dashed", color="magenta", weight=3]; 453 -> 504[label="",style="dashed", color="magenta", weight=3]; 453 -> 505[label="",style="dashed", color="magenta", weight=3]; 453 -> 506[label="",style="dashed", color="magenta", weight=3]; 454[label="FiniteMap.splitGT0 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) otherwise",fontsize=16,color="black",shape="box"];454 -> 507[label="",style="solid", color="black", weight=3]; 455 -> 12[label="",style="dashed", color="red", weight=0]; 455[label="FiniteMap.mkVBalBranch (yvy36,yvy37) yvy38 (FiniteMap.splitGT yvy40 (yvy42,yvy43)) yvy41",fontsize=16,color="magenta"];455 -> 508[label="",style="dashed", color="magenta", weight=3]; 455 -> 509[label="",style="dashed", color="magenta", weight=3]; 455 -> 510[label="",style="dashed", color="magenta", weight=3]; 455 -> 511[label="",style="dashed", color="magenta", weight=3]; 456 -> 59[label="",style="dashed", color="red", weight=0]; 456[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];457[label="yvy410",fontsize=16,color="green",shape="box"];458[label="yvy412",fontsize=16,color="green",shape="box"];459[label="(yvy42,yvy43)",fontsize=16,color="green",shape="box"];460[label="yvy414",fontsize=16,color="green",shape="box"];461[label="yvy413",fontsize=16,color="green",shape="box"];462[label="yvy411",fontsize=16,color="green",shape="box"];1988 -> 2405[label="",style="dashed", color="red", weight=0]; 1988[label="yvy400 == yvy500 && yvy401 == yvy501",fontsize=16,color="magenta"];1988 -> 2412[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2413[label="",style="dashed", color="magenta", weight=3]; 1989[label="(yvy400,yvy401)",fontsize=16,color="green",shape="box"];1990[label="(yvy500,yvy501)",fontsize=16,color="green",shape="box"];463 -> 512[label="",style="dashed", color="red", weight=0]; 463[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 ((yvy400,yvy401) > (yvy500,yvy501))",fontsize=16,color="magenta"];463 -> 513[label="",style="dashed", color="magenta", weight=3]; 464 -> 468[label="",style="dashed", color="red", weight=0]; 464[label="FiniteMap.mkBalBranch (yvy500,yvy501) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (yvy400,yvy401) yvy41) yvy54",fontsize=16,color="magenta"];464 -> 471[label="",style="dashed", color="magenta", weight=3]; 464 -> 472[label="",style="dashed", color="magenta", weight=3]; 465[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="black",shape="box"];465 -> 556[label="",style="solid", color="black", weight=3]; 466[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];466 -> 557[label="",style="solid", color="black", weight=3]; 559[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];559 -> 567[label="",style="solid", color="black", weight=3]; 558[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy84",fontsize=16,color="burlywood",shape="triangle"];4923[label="yvy84/False",fontsize=10,color="white",style="solid",shape="box"];558 -> 4923[label="",style="solid", color="burlywood", weight=9]; 4923 -> 568[label="",style="solid", color="burlywood", weight=3]; 4924[label="yvy84/True",fontsize=10,color="white",style="solid",shape="box"];558 -> 4924[label="",style="solid", color="burlywood", weight=9]; 4924 -> 569[label="",style="solid", color="burlywood", weight=3]; 469 -> 12[label="",style="dashed", color="red", weight=0]; 469[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];469 -> 570[label="",style="dashed", color="magenta", weight=3]; 469 -> 571[label="",style="dashed", color="magenta", weight=3]; 468[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy82 yvy54",fontsize=16,color="black",shape="triangle"];468 -> 572[label="",style="solid", color="black", weight=3]; 494[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="black",shape="box"];494 -> 573[label="",style="solid", color="black", weight=3]; 495[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];495 -> 574[label="",style="solid", color="black", weight=3]; 576[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];576 -> 578[label="",style="solid", color="black", weight=3]; 575[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy96",fontsize=16,color="burlywood",shape="triangle"];4925[label="yvy96/False",fontsize=10,color="white",style="solid",shape="box"];575 -> 4925[label="",style="solid", color="burlywood", weight=9]; 4925 -> 579[label="",style="solid", color="burlywood", weight=3]; 4926[label="yvy96/True",fontsize=10,color="white",style="solid",shape="box"];575 -> 4926[label="",style="solid", color="burlywood", weight=9]; 4926 -> 580[label="",style="solid", color="burlywood", weight=3]; 470 -> 12[label="",style="dashed", color="red", weight=0]; 470[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];470 -> 581[label="",style="dashed", color="magenta", weight=3]; 470 -> 582[label="",style="dashed", color="magenta", weight=3]; 2636[label="() == ()",fontsize=16,color="black",shape="box"];2636 -> 2711[label="",style="solid", color="black", weight=3]; 2637[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2637 -> 2712[label="",style="solid", color="black", weight=3]; 2638[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];2638 -> 2713[label="",style="solid", color="black", weight=3]; 2639[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];2639 -> 2714[label="",style="solid", color="black", weight=3]; 2640[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];2640 -> 2715[label="",style="solid", color="black", weight=3]; 2641[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];2641 -> 2716[label="",style="solid", color="black", weight=3]; 2642[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];2642 -> 2717[label="",style="solid", color="black", weight=3]; 2643[label="False == False",fontsize=16,color="black",shape="box"];2643 -> 2718[label="",style="solid", color="black", weight=3]; 2644[label="False == True",fontsize=16,color="black",shape="box"];2644 -> 2719[label="",style="solid", color="black", weight=3]; 2645[label="True == False",fontsize=16,color="black",shape="box"];2645 -> 2720[label="",style="solid", color="black", weight=3]; 2646[label="True == True",fontsize=16,color="black",shape="box"];2646 -> 2721[label="",style="solid", color="black", weight=3]; 2647[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];2647 -> 2722[label="",style="solid", color="black", weight=3]; 2648[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];2648 -> 2723[label="",style="solid", color="black", weight=3]; 2649[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4927[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2649 -> 4927[label="",style="solid", color="burlywood", weight=9]; 4927 -> 2724[label="",style="solid", color="burlywood", weight=3]; 4928[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2649 -> 4928[label="",style="solid", color="burlywood", weight=9]; 4928 -> 2725[label="",style="solid", color="burlywood", weight=3]; 2650[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4929[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4929[label="",style="solid", color="burlywood", weight=9]; 4929 -> 2726[label="",style="solid", color="burlywood", weight=3]; 4930[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4930[label="",style="solid", color="burlywood", weight=9]; 4930 -> 2727[label="",style="solid", color="burlywood", weight=3]; 2651[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4931[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 2728[label="",style="solid", color="burlywood", weight=3]; 2652[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4932[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2652 -> 4932[label="",style="solid", color="burlywood", weight=9]; 4932 -> 2729[label="",style="solid", color="burlywood", weight=3]; 2653[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2653 -> 2730[label="",style="solid", color="black", weight=3]; 2654[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];2654 -> 2731[label="",style="solid", color="black", weight=3]; 2655[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2655 -> 2732[label="",style="solid", color="black", weight=3]; 2656[label="[] == []",fontsize=16,color="black",shape="box"];2656 -> 2733[label="",style="solid", color="black", weight=3]; 2657[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2657 -> 2734[label="",style="solid", color="black", weight=3]; 2658[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2658 -> 2735[label="",style="solid", color="black", weight=3]; 2659[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2659 -> 2736[label="",style="solid", color="black", weight=3]; 2660[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2660 -> 2737[label="",style="solid", color="black", weight=3]; 2661[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4933[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 2738[label="",style="solid", color="burlywood", weight=3]; 2214[label="compare1 (yvy700,yvy701) (yvy720,yvy721) ((yvy700,yvy701) <= (yvy720,yvy721))",fontsize=16,color="black",shape="box"];2214 -> 2344[label="",style="solid", color="black", weight=3]; 497[label="compare3 (yvy23,yvy24) (yvy17,yvy18)",fontsize=16,color="black",shape="box"];497 -> 654[label="",style="solid", color="black", weight=3]; 498[label="FiniteMap.splitLT0 (yvy17,yvy18) yvy19 yvy20 yvy21 yvy22 (yvy23,yvy24) True",fontsize=16,color="black",shape="box"];498 -> 655[label="",style="solid", color="black", weight=3]; 499[label="yvy21",fontsize=16,color="green",shape="box"];500[label="(yvy17,yvy18)",fontsize=16,color="green",shape="box"];501[label="yvy19",fontsize=16,color="green",shape="box"];502 -> 236[label="",style="dashed", color="red", weight=0]; 502[label="FiniteMap.splitLT yvy22 (yvy23,yvy24)",fontsize=16,color="magenta"];502 -> 656[label="",style="dashed", color="magenta", weight=3]; 503[label="yvy37",fontsize=16,color="green",shape="box"];504[label="yvy43",fontsize=16,color="green",shape="box"];505[label="yvy36",fontsize=16,color="green",shape="box"];506[label="yvy42",fontsize=16,color="green",shape="box"];507[label="FiniteMap.splitGT0 (yvy36,yvy37) yvy38 yvy39 yvy40 yvy41 (yvy42,yvy43) True",fontsize=16,color="black",shape="box"];507 -> 657[label="",style="solid", color="black", weight=3]; 508 -> 238[label="",style="dashed", color="red", weight=0]; 508[label="FiniteMap.splitGT yvy40 (yvy42,yvy43)",fontsize=16,color="magenta"];508 -> 658[label="",style="dashed", color="magenta", weight=3]; 509[label="(yvy36,yvy37)",fontsize=16,color="green",shape="box"];510[label="yvy38",fontsize=16,color="green",shape="box"];511[label="yvy41",fontsize=16,color="green",shape="box"];2412[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];4934[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4934[label="",style="solid", color="blue", weight=9]; 4934 -> 2474[label="",style="solid", color="blue", weight=3]; 4935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4935[label="",style="solid", color="blue", weight=9]; 4935 -> 2475[label="",style="solid", color="blue", weight=3]; 4936[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4936[label="",style="solid", color="blue", weight=9]; 4936 -> 2476[label="",style="solid", color="blue", weight=3]; 4937[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4937[label="",style="solid", color="blue", weight=9]; 4937 -> 2477[label="",style="solid", color="blue", weight=3]; 4938[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4938[label="",style="solid", color="blue", weight=9]; 4938 -> 2478[label="",style="solid", color="blue", weight=3]; 4939[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4939[label="",style="solid", color="blue", weight=9]; 4939 -> 2479[label="",style="solid", color="blue", weight=3]; 4940[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4940[label="",style="solid", color="blue", weight=9]; 4940 -> 2480[label="",style="solid", color="blue", weight=3]; 4941[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 2481[label="",style="solid", color="blue", weight=3]; 4942[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4942[label="",style="solid", color="blue", weight=9]; 4942 -> 2482[label="",style="solid", color="blue", weight=3]; 4943[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 2483[label="",style="solid", color="blue", weight=3]; 4944[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 2484[label="",style="solid", color="blue", weight=3]; 4945[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 2485[label="",style="solid", color="blue", weight=3]; 4946[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 2486[label="",style="solid", color="blue", weight=3]; 4947[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 2487[label="",style="solid", color="blue", weight=3]; 2413[label="yvy401 == yvy501",fontsize=16,color="blue",shape="box"];4948[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 2488[label="",style="solid", color="blue", weight=3]; 4949[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 2489[label="",style="solid", color="blue", weight=3]; 4950[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 2490[label="",style="solid", color="blue", weight=3]; 4951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 2491[label="",style="solid", color="blue", weight=3]; 4952[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 2492[label="",style="solid", color="blue", weight=3]; 4953[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 2493[label="",style="solid", color="blue", weight=3]; 4954[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4954[label="",style="solid", color="blue", weight=9]; 4954 -> 2494[label="",style="solid", color="blue", weight=3]; 4955[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4955[label="",style="solid", color="blue", weight=9]; 4955 -> 2495[label="",style="solid", color="blue", weight=3]; 4956[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4956[label="",style="solid", color="blue", weight=9]; 4956 -> 2496[label="",style="solid", color="blue", weight=3]; 4957[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4957[label="",style="solid", color="blue", weight=9]; 4957 -> 2497[label="",style="solid", color="blue", weight=3]; 4958[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4958[label="",style="solid", color="blue", weight=9]; 4958 -> 2498[label="",style="solid", color="blue", weight=3]; 4959[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4959[label="",style="solid", color="blue", weight=9]; 4959 -> 2499[label="",style="solid", color="blue", weight=3]; 4960[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4960[label="",style="solid", color="blue", weight=9]; 4960 -> 2500[label="",style="solid", color="blue", weight=3]; 4961[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 4961[label="",style="solid", color="blue", weight=9]; 4961 -> 2501[label="",style="solid", color="blue", weight=3]; 513 -> 318[label="",style="dashed", color="red", weight=0]; 513[label="(yvy400,yvy401) > (yvy500,yvy501)",fontsize=16,color="magenta"];513 -> 673[label="",style="dashed", color="magenta", weight=3]; 513 -> 674[label="",style="dashed", color="magenta", weight=3]; 513 -> 675[label="",style="dashed", color="magenta", weight=3]; 513 -> 676[label="",style="dashed", color="magenta", weight=3]; 512[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 yvy83",fontsize=16,color="burlywood",shape="triangle"];4962[label="yvy83/False",fontsize=10,color="white",style="solid",shape="box"];512 -> 4962[label="",style="solid", color="burlywood", weight=9]; 4962 -> 677[label="",style="solid", color="burlywood", weight=3]; 4963[label="yvy83/True",fontsize=10,color="white",style="solid",shape="box"];512 -> 4963[label="",style="solid", color="burlywood", weight=9]; 4963 -> 678[label="",style="solid", color="burlywood", weight=3]; 471[label="(yvy500,yvy501)",fontsize=16,color="green",shape="box"];472 -> 33[label="",style="dashed", color="red", weight=0]; 472[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (yvy400,yvy401) yvy41",fontsize=16,color="magenta"];472 -> 679[label="",style="dashed", color="magenta", weight=3]; 472 -> 680[label="",style="dashed", color="magenta", weight=3]; 556[label="primCmpInt (Pos (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];556 -> 681[label="",style="solid", color="black", weight=3]; 557[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];557 -> 682[label="",style="solid", color="black", weight=3]; 567 -> 96[label="",style="dashed", color="red", weight=0]; 567[label="compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];567 -> 683[label="",style="dashed", color="magenta", weight=3]; 567 -> 684[label="",style="dashed", color="magenta", weight=3]; 568[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];568 -> 685[label="",style="solid", color="black", weight=3]; 569[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];569 -> 686[label="",style="solid", color="black", weight=3]; 570[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];571[label="yvy53",fontsize=16,color="green",shape="box"];572[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy82 yvy54",fontsize=16,color="black",shape="box"];572 -> 687[label="",style="solid", color="black", weight=3]; 573[label="primCmpInt (Neg (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];573 -> 688[label="",style="solid", color="black", weight=3]; 574[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];574 -> 689[label="",style="solid", color="black", weight=3]; 578 -> 96[label="",style="dashed", color="red", weight=0]; 578[label="compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];578 -> 690[label="",style="dashed", color="magenta", weight=3]; 578 -> 691[label="",style="dashed", color="magenta", weight=3]; 579[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];579 -> 692[label="",style="solid", color="black", weight=3]; 580[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];580 -> 693[label="",style="solid", color="black", weight=3]; 581[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];582[label="yvy53",fontsize=16,color="green",shape="box"];2711[label="True",fontsize=16,color="green",shape="box"];2712[label="True",fontsize=16,color="green",shape="box"];2713[label="False",fontsize=16,color="green",shape="box"];2714[label="False",fontsize=16,color="green",shape="box"];2715[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4964[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4964[label="",style="solid", color="blue", weight=9]; 4964 -> 2871[label="",style="solid", color="blue", weight=3]; 4965[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4965[label="",style="solid", color="blue", weight=9]; 4965 -> 2872[label="",style="solid", color="blue", weight=3]; 4966[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4966[label="",style="solid", color="blue", weight=9]; 4966 -> 2873[label="",style="solid", color="blue", weight=3]; 4967[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4967[label="",style="solid", color="blue", weight=9]; 4967 -> 2874[label="",style="solid", color="blue", weight=3]; 4968[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4968[label="",style="solid", color="blue", weight=9]; 4968 -> 2875[label="",style="solid", color="blue", weight=3]; 4969[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4969[label="",style="solid", color="blue", weight=9]; 4969 -> 2876[label="",style="solid", color="blue", weight=3]; 4970[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 2877[label="",style="solid", color="blue", weight=3]; 4971[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 2878[label="",style="solid", color="blue", weight=3]; 4972[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 2879[label="",style="solid", color="blue", weight=3]; 4973[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4973[label="",style="solid", color="blue", weight=9]; 4973 -> 2880[label="",style="solid", color="blue", weight=3]; 4974[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4974[label="",style="solid", color="blue", weight=9]; 4974 -> 2881[label="",style="solid", color="blue", weight=3]; 4975[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 2882[label="",style="solid", color="blue", weight=3]; 4976[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 2883[label="",style="solid", color="blue", weight=3]; 4977[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 2884[label="",style="solid", color="blue", weight=3]; 2716 -> 2405[label="",style="dashed", color="red", weight=0]; 2716[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2716 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2405[label="",style="dashed", color="red", weight=0]; 2717[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2717 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2718[label="True",fontsize=16,color="green",shape="box"];2719[label="False",fontsize=16,color="green",shape="box"];2720[label="False",fontsize=16,color="green",shape="box"];2721[label="True",fontsize=16,color="green",shape="box"];2722 -> 2405[label="",style="dashed", color="red", weight=0]; 2722[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2722 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2513[label="",style="dashed", color="red", weight=0]; 2723[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];2723 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2724[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4978[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4978[label="",style="solid", color="burlywood", weight=9]; 4978 -> 2893[label="",style="solid", color="burlywood", weight=3]; 4979[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4979[label="",style="solid", color="burlywood", weight=9]; 4979 -> 2894[label="",style="solid", color="burlywood", weight=3]; 2725[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4980[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2725 -> 4980[label="",style="solid", color="burlywood", weight=9]; 4980 -> 2895[label="",style="solid", color="burlywood", weight=3]; 4981[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2725 -> 4981[label="",style="solid", color="burlywood", weight=9]; 4981 -> 2896[label="",style="solid", color="burlywood", weight=3]; 2726[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4982[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2726 -> 4982[label="",style="solid", color="burlywood", weight=9]; 4982 -> 2897[label="",style="solid", color="burlywood", weight=3]; 4983[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2726 -> 4983[label="",style="solid", color="burlywood", weight=9]; 4983 -> 2898[label="",style="solid", color="burlywood", weight=3]; 2727[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4984[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2727 -> 4984[label="",style="solid", color="burlywood", weight=9]; 4984 -> 2899[label="",style="solid", color="burlywood", weight=3]; 4985[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2727 -> 4985[label="",style="solid", color="burlywood", weight=9]; 4985 -> 2900[label="",style="solid", color="burlywood", weight=3]; 2728[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2728 -> 2901[label="",style="solid", color="black", weight=3]; 2729[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2729 -> 2902[label="",style="solid", color="black", weight=3]; 2730 -> 2405[label="",style="dashed", color="red", weight=0]; 2730[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2730 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2731[label="False",fontsize=16,color="green",shape="box"];2732[label="False",fontsize=16,color="green",shape="box"];2733[label="True",fontsize=16,color="green",shape="box"];2734[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4986[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 2905[label="",style="solid", color="blue", weight=3]; 4987[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 2906[label="",style="solid", color="blue", weight=3]; 4988[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 2907[label="",style="solid", color="blue", weight=3]; 4989[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 2908[label="",style="solid", color="blue", weight=3]; 4990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 2909[label="",style="solid", color="blue", weight=3]; 4991[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 2910[label="",style="solid", color="blue", weight=3]; 4992[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 2911[label="",style="solid", color="blue", weight=3]; 4993[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 2912[label="",style="solid", color="blue", weight=3]; 4994[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 2913[label="",style="solid", color="blue", weight=3]; 4995[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 2914[label="",style="solid", color="blue", weight=3]; 4996[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 2915[label="",style="solid", color="blue", weight=3]; 4997[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 2916[label="",style="solid", color="blue", weight=3]; 4998[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 2917[label="",style="solid", color="blue", weight=3]; 4999[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2734 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 2918[label="",style="solid", color="blue", weight=3]; 2735[label="False",fontsize=16,color="green",shape="box"];2736[label="False",fontsize=16,color="green",shape="box"];2737[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5000[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 2919[label="",style="solid", color="blue", weight=3]; 5001[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 2920[label="",style="solid", color="blue", weight=3]; 5002[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 2921[label="",style="solid", color="blue", weight=3]; 5003[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 2922[label="",style="solid", color="blue", weight=3]; 5004[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 2923[label="",style="solid", color="blue", weight=3]; 5005[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 2924[label="",style="solid", color="blue", weight=3]; 5006[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 2925[label="",style="solid", color="blue", weight=3]; 5007[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 2926[label="",style="solid", color="blue", weight=3]; 5008[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 2927[label="",style="solid", color="blue", weight=3]; 5009[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 2928[label="",style="solid", color="blue", weight=3]; 5010[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 2929[label="",style="solid", color="blue", weight=3]; 5011[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 2930[label="",style="solid", color="blue", weight=3]; 5012[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 2931[label="",style="solid", color="blue", weight=3]; 5013[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 2932[label="",style="solid", color="blue", weight=3]; 2738[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];2738 -> 2933[label="",style="solid", color="black", weight=3]; 2344 -> 2623[label="",style="dashed", color="red", weight=0]; 2344[label="compare1 (yvy700,yvy701) (yvy720,yvy721) (yvy700 < yvy720 || yvy700 == yvy720 && yvy701 <= yvy721)",fontsize=16,color="magenta"];2344 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2629[label="",style="dashed", color="magenta", weight=3]; 654 -> 1978[label="",style="dashed", color="red", weight=0]; 654[label="compare2 (yvy23,yvy24) (yvy17,yvy18) ((yvy23,yvy24) == (yvy17,yvy18))",fontsize=16,color="magenta"];654 -> 1991[label="",style="dashed", color="magenta", weight=3]; 654 -> 1992[label="",style="dashed", color="magenta", weight=3]; 654 -> 1993[label="",style="dashed", color="magenta", weight=3]; 655[label="yvy21",fontsize=16,color="green",shape="box"];656[label="yvy22",fontsize=16,color="green",shape="box"];657[label="yvy41",fontsize=16,color="green",shape="box"];658[label="yvy40",fontsize=16,color="green",shape="box"];2474 -> 2416[label="",style="dashed", color="red", weight=0]; 2474[label="yvy400 == yvy500",fontsize=16,color="magenta"];2474 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2417[label="",style="dashed", color="red", weight=0]; 2475[label="yvy400 == yvy500",fontsize=16,color="magenta"];2475 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2418[label="",style="dashed", color="red", weight=0]; 2476[label="yvy400 == yvy500",fontsize=16,color="magenta"];2476 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2419[label="",style="dashed", color="red", weight=0]; 2477[label="yvy400 == yvy500",fontsize=16,color="magenta"];2477 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2420[label="",style="dashed", color="red", weight=0]; 2478[label="yvy400 == yvy500",fontsize=16,color="magenta"];2478 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2479 -> 96[label="",style="dashed", color="red", weight=0]; 2479[label="yvy400 == yvy500",fontsize=16,color="magenta"];2479 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2422[label="",style="dashed", color="red", weight=0]; 2480[label="yvy400 == yvy500",fontsize=16,color="magenta"];2480 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2423[label="",style="dashed", color="red", weight=0]; 2481[label="yvy400 == yvy500",fontsize=16,color="magenta"];2481 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2424[label="",style="dashed", color="red", weight=0]; 2482[label="yvy400 == yvy500",fontsize=16,color="magenta"];2482 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2425[label="",style="dashed", color="red", weight=0]; 2483[label="yvy400 == yvy500",fontsize=16,color="magenta"];2483 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2426[label="",style="dashed", color="red", weight=0]; 2484[label="yvy400 == yvy500",fontsize=16,color="magenta"];2484 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2427[label="",style="dashed", color="red", weight=0]; 2485[label="yvy400 == yvy500",fontsize=16,color="magenta"];2485 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2428[label="",style="dashed", color="red", weight=0]; 2486[label="yvy400 == yvy500",fontsize=16,color="magenta"];2486 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2429[label="",style="dashed", color="red", weight=0]; 2487[label="yvy400 == yvy500",fontsize=16,color="magenta"];2487 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2416[label="",style="dashed", color="red", weight=0]; 2488[label="yvy401 == yvy501",fontsize=16,color="magenta"];2488 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2417[label="",style="dashed", color="red", weight=0]; 2489[label="yvy401 == yvy501",fontsize=16,color="magenta"];2489 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2418[label="",style="dashed", color="red", weight=0]; 2490[label="yvy401 == yvy501",fontsize=16,color="magenta"];2490 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2419[label="",style="dashed", color="red", weight=0]; 2491[label="yvy401 == yvy501",fontsize=16,color="magenta"];2491 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2420[label="",style="dashed", color="red", weight=0]; 2492[label="yvy401 == yvy501",fontsize=16,color="magenta"];2492 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2493 -> 96[label="",style="dashed", color="red", weight=0]; 2493[label="yvy401 == yvy501",fontsize=16,color="magenta"];2493 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2422[label="",style="dashed", color="red", weight=0]; 2494[label="yvy401 == yvy501",fontsize=16,color="magenta"];2494 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2423[label="",style="dashed", color="red", weight=0]; 2495[label="yvy401 == yvy501",fontsize=16,color="magenta"];2495 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2424[label="",style="dashed", color="red", weight=0]; 2496[label="yvy401 == yvy501",fontsize=16,color="magenta"];2496 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2425[label="",style="dashed", color="red", weight=0]; 2497[label="yvy401 == yvy501",fontsize=16,color="magenta"];2497 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2426[label="",style="dashed", color="red", weight=0]; 2498[label="yvy401 == yvy501",fontsize=16,color="magenta"];2498 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2427[label="",style="dashed", color="red", weight=0]; 2499[label="yvy401 == yvy501",fontsize=16,color="magenta"];2499 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2428[label="",style="dashed", color="red", weight=0]; 2500[label="yvy401 == yvy501",fontsize=16,color="magenta"];2500 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2429[label="",style="dashed", color="red", weight=0]; 2501[label="yvy401 == yvy501",fontsize=16,color="magenta"];2501 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2620[label="",style="dashed", color="magenta", weight=3]; 673[label="yvy501",fontsize=16,color="green",shape="box"];674[label="yvy401",fontsize=16,color="green",shape="box"];675[label="yvy500",fontsize=16,color="green",shape="box"];676[label="yvy400",fontsize=16,color="green",shape="box"];677[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 False",fontsize=16,color="black",shape="box"];677 -> 867[label="",style="solid", color="black", weight=3]; 678[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 True",fontsize=16,color="black",shape="box"];678 -> 868[label="",style="solid", color="black", weight=3]; 679[label="(yvy400,yvy401)",fontsize=16,color="green",shape="box"];680[label="yvy53",fontsize=16,color="green",shape="box"];681[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];681 -> 869[label="",style="solid", color="black", weight=3]; 682[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5014[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];682 -> 5014[label="",style="solid", color="burlywood", weight=9]; 5014 -> 870[label="",style="solid", color="burlywood", weight=3]; 5015[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];682 -> 5015[label="",style="solid", color="burlywood", weight=9]; 5015 -> 871[label="",style="solid", color="burlywood", weight=3]; 683[label="LT",fontsize=16,color="green",shape="box"];684[label="compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];684 -> 872[label="",style="solid", color="black", weight=3]; 685[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];685 -> 873[label="",style="solid", color="black", weight=3]; 686 -> 468[label="",style="dashed", color="red", weight=0]; 686[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];686 -> 874[label="",style="dashed", color="magenta", weight=3]; 686 -> 875[label="",style="dashed", color="magenta", weight=3]; 686 -> 876[label="",style="dashed", color="magenta", weight=3]; 686 -> 877[label="",style="dashed", color="magenta", weight=3]; 687 -> 878[label="",style="dashed", color="red", weight=0]; 687[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 (FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];687 -> 879[label="",style="dashed", color="magenta", weight=3]; 688[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];688 -> 997[label="",style="solid", color="black", weight=3]; 689[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5016[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];689 -> 5016[label="",style="solid", color="burlywood", weight=9]; 5016 -> 998[label="",style="solid", color="burlywood", weight=3]; 5017[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];689 -> 5017[label="",style="solid", color="burlywood", weight=9]; 5017 -> 999[label="",style="solid", color="burlywood", weight=3]; 690[label="LT",fontsize=16,color="green",shape="box"];691[label="compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];691 -> 1000[label="",style="solid", color="black", weight=3]; 692[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];692 -> 1001[label="",style="solid", color="black", weight=3]; 693 -> 468[label="",style="dashed", color="red", weight=0]; 693[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];693 -> 1002[label="",style="dashed", color="magenta", weight=3]; 693 -> 1003[label="",style="dashed", color="magenta", weight=3]; 693 -> 1004[label="",style="dashed", color="magenta", weight=3]; 693 -> 1005[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2416[label="",style="dashed", color="red", weight=0]; 2871[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2871 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2871 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2417[label="",style="dashed", color="red", weight=0]; 2872[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2872 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2872 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2418[label="",style="dashed", color="red", weight=0]; 2873[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2873 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2873 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2419[label="",style="dashed", color="red", weight=0]; 2874[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2874 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2874 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2420[label="",style="dashed", color="red", weight=0]; 2875[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2875 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2875 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2876 -> 96[label="",style="dashed", color="red", weight=0]; 2876[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2876 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2876 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2422[label="",style="dashed", color="red", weight=0]; 2877[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2877 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2877 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2423[label="",style="dashed", color="red", weight=0]; 2878[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2878 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2878 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2424[label="",style="dashed", color="red", weight=0]; 2879[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2879 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2879 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2425[label="",style="dashed", color="red", weight=0]; 2880[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2880 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2880 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2426[label="",style="dashed", color="red", weight=0]; 2881[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2881 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2881 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2427[label="",style="dashed", color="red", weight=0]; 2882[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2882 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2882 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2428[label="",style="dashed", color="red", weight=0]; 2883[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2883 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2883 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2429[label="",style="dashed", color="red", weight=0]; 2884[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2884 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2884 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2885[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5018[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3049[label="",style="solid", color="blue", weight=3]; 5019[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3050[label="",style="solid", color="blue", weight=3]; 5020[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3051[label="",style="solid", color="blue", weight=3]; 5021[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3052[label="",style="solid", color="blue", weight=3]; 5022[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3053[label="",style="solid", color="blue", weight=3]; 5023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3054[label="",style="solid", color="blue", weight=3]; 5024[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3055[label="",style="solid", color="blue", weight=3]; 5025[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3056[label="",style="solid", color="blue", weight=3]; 5026[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3057[label="",style="solid", color="blue", weight=3]; 5027[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3058[label="",style="solid", color="blue", weight=3]; 5028[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3059[label="",style="solid", color="blue", weight=3]; 5029[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3060[label="",style="solid", color="blue", weight=3]; 5030[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3061[label="",style="solid", color="blue", weight=3]; 5031[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3062[label="",style="solid", color="blue", weight=3]; 2886[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3063[label="",style="solid", color="blue", weight=3]; 5033[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3064[label="",style="solid", color="blue", weight=3]; 5034[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5034[label="",style="solid", color="blue", weight=9]; 5034 -> 3065[label="",style="solid", color="blue", weight=3]; 5035[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5035[label="",style="solid", color="blue", weight=9]; 5035 -> 3066[label="",style="solid", color="blue", weight=3]; 5036[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5036[label="",style="solid", color="blue", weight=9]; 5036 -> 3067[label="",style="solid", color="blue", weight=3]; 5037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5037[label="",style="solid", color="blue", weight=9]; 5037 -> 3068[label="",style="solid", color="blue", weight=3]; 5038[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5038[label="",style="solid", color="blue", weight=9]; 5038 -> 3069[label="",style="solid", color="blue", weight=3]; 5039[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5039[label="",style="solid", color="blue", weight=9]; 5039 -> 3070[label="",style="solid", color="blue", weight=3]; 5040[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5040[label="",style="solid", color="blue", weight=9]; 5040 -> 3071[label="",style="solid", color="blue", weight=3]; 5041[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5041[label="",style="solid", color="blue", weight=9]; 5041 -> 3072[label="",style="solid", color="blue", weight=3]; 5042[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5042[label="",style="solid", color="blue", weight=9]; 5042 -> 3073[label="",style="solid", color="blue", weight=3]; 5043[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3074[label="",style="solid", color="blue", weight=3]; 5044[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3075[label="",style="solid", color="blue", weight=3]; 5045[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3076[label="",style="solid", color="blue", weight=3]; 2887[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5046[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 5046[label="",style="solid", color="blue", weight=9]; 5046 -> 3077[label="",style="solid", color="blue", weight=3]; 5047[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 5047[label="",style="solid", color="blue", weight=9]; 5047 -> 3078[label="",style="solid", color="blue", weight=3]; 2888[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5048[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5048[label="",style="solid", color="blue", weight=9]; 5048 -> 3079[label="",style="solid", color="blue", weight=3]; 5049[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5049[label="",style="solid", color="blue", weight=9]; 5049 -> 3080[label="",style="solid", color="blue", weight=3]; 2889[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5050[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5050[label="",style="solid", color="blue", weight=9]; 5050 -> 3081[label="",style="solid", color="blue", weight=3]; 5051[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5051[label="",style="solid", color="blue", weight=9]; 5051 -> 3082[label="",style="solid", color="blue", weight=3]; 5052[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5052[label="",style="solid", color="blue", weight=9]; 5052 -> 3083[label="",style="solid", color="blue", weight=3]; 5053[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5053[label="",style="solid", color="blue", weight=9]; 5053 -> 3084[label="",style="solid", color="blue", weight=3]; 5054[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5054[label="",style="solid", color="blue", weight=9]; 5054 -> 3085[label="",style="solid", color="blue", weight=3]; 5055[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5055[label="",style="solid", color="blue", weight=9]; 5055 -> 3086[label="",style="solid", color="blue", weight=3]; 5056[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5056[label="",style="solid", color="blue", weight=9]; 5056 -> 3087[label="",style="solid", color="blue", weight=3]; 5057[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5057[label="",style="solid", color="blue", weight=9]; 5057 -> 3088[label="",style="solid", color="blue", weight=3]; 5058[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5058[label="",style="solid", color="blue", weight=9]; 5058 -> 3089[label="",style="solid", color="blue", weight=3]; 5059[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5059[label="",style="solid", color="blue", weight=9]; 5059 -> 3090[label="",style="solid", color="blue", weight=3]; 5060[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5060[label="",style="solid", color="blue", weight=9]; 5060 -> 3091[label="",style="solid", color="blue", weight=3]; 5061[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5061[label="",style="solid", color="blue", weight=9]; 5061 -> 3092[label="",style="solid", color="blue", weight=3]; 5062[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5062[label="",style="solid", color="blue", weight=9]; 5062 -> 3093[label="",style="solid", color="blue", weight=3]; 5063[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5063[label="",style="solid", color="blue", weight=9]; 5063 -> 3094[label="",style="solid", color="blue", weight=3]; 2890 -> 2405[label="",style="dashed", color="red", weight=0]; 2890[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2890 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2890 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2891[label="yvy3000",fontsize=16,color="green",shape="box"];2892[label="yvy4000",fontsize=16,color="green",shape="box"];2893[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5064[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2893 -> 5064[label="",style="solid", color="burlywood", weight=9]; 5064 -> 3097[label="",style="solid", color="burlywood", weight=3]; 5065[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2893 -> 5065[label="",style="solid", color="burlywood", weight=9]; 5065 -> 3098[label="",style="solid", color="burlywood", weight=3]; 2894[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2894 -> 3099[label="",style="solid", color="black", weight=3]; 2895[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5066[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2895 -> 5066[label="",style="solid", color="burlywood", weight=9]; 5066 -> 3100[label="",style="solid", color="burlywood", weight=3]; 5067[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2895 -> 5067[label="",style="solid", color="burlywood", weight=9]; 5067 -> 3101[label="",style="solid", color="burlywood", weight=3]; 2896[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5068[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2896 -> 5068[label="",style="solid", color="burlywood", weight=9]; 5068 -> 3102[label="",style="solid", color="burlywood", weight=3]; 5069[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2896 -> 5069[label="",style="solid", color="burlywood", weight=9]; 5069 -> 3103[label="",style="solid", color="burlywood", weight=3]; 2897[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2897 -> 3104[label="",style="solid", color="black", weight=3]; 2898[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5070[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2898 -> 5070[label="",style="solid", color="burlywood", weight=9]; 5070 -> 3105[label="",style="solid", color="burlywood", weight=3]; 5071[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2898 -> 5071[label="",style="solid", color="burlywood", weight=9]; 5071 -> 3106[label="",style="solid", color="burlywood", weight=3]; 2899[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5072[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2899 -> 5072[label="",style="solid", color="burlywood", weight=9]; 5072 -> 3107[label="",style="solid", color="burlywood", weight=3]; 5073[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2899 -> 5073[label="",style="solid", color="burlywood", weight=9]; 5073 -> 3108[label="",style="solid", color="burlywood", weight=3]; 2900[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5074[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2900 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 3109[label="",style="solid", color="burlywood", weight=3]; 5075[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2900 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 3110[label="",style="solid", color="burlywood", weight=3]; 2901 -> 2424[label="",style="dashed", color="red", weight=0]; 2901[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2901 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2424[label="",style="dashed", color="red", weight=0]; 2902[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2902 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2902 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2903[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5076[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5076[label="",style="solid", color="blue", weight=9]; 5076 -> 3115[label="",style="solid", color="blue", weight=3]; 5077[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5077[label="",style="solid", color="blue", weight=9]; 5077 -> 3116[label="",style="solid", color="blue", weight=3]; 5078[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5078[label="",style="solid", color="blue", weight=9]; 5078 -> 3117[label="",style="solid", color="blue", weight=3]; 5079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5079[label="",style="solid", color="blue", weight=9]; 5079 -> 3118[label="",style="solid", color="blue", weight=3]; 5080[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5080[label="",style="solid", color="blue", weight=9]; 5080 -> 3119[label="",style="solid", color="blue", weight=3]; 5081[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5081[label="",style="solid", color="blue", weight=9]; 5081 -> 3120[label="",style="solid", color="blue", weight=3]; 5082[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5082[label="",style="solid", color="blue", weight=9]; 5082 -> 3121[label="",style="solid", color="blue", weight=3]; 5083[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5083[label="",style="solid", color="blue", weight=9]; 5083 -> 3122[label="",style="solid", color="blue", weight=3]; 5084[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5084[label="",style="solid", color="blue", weight=9]; 5084 -> 3123[label="",style="solid", color="blue", weight=3]; 5085[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5085[label="",style="solid", color="blue", weight=9]; 5085 -> 3124[label="",style="solid", color="blue", weight=3]; 5086[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5086[label="",style="solid", color="blue", weight=9]; 5086 -> 3125[label="",style="solid", color="blue", weight=3]; 5087[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5087[label="",style="solid", color="blue", weight=9]; 5087 -> 3126[label="",style="solid", color="blue", weight=3]; 5088[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5088[label="",style="solid", color="blue", weight=9]; 5088 -> 3127[label="",style="solid", color="blue", weight=3]; 5089[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 5089[label="",style="solid", color="blue", weight=9]; 5089 -> 3128[label="",style="solid", color="blue", weight=3]; 2904 -> 2427[label="",style="dashed", color="red", weight=0]; 2904[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2904 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2905 -> 2416[label="",style="dashed", color="red", weight=0]; 2905[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2905 -> 3131[label="",style="dashed", color="magenta", weight=3]; 2905 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2906 -> 2417[label="",style="dashed", color="red", weight=0]; 2906[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2906 -> 3133[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3134[label="",style="dashed", color="magenta", weight=3]; 2907 -> 2418[label="",style="dashed", color="red", weight=0]; 2907[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2907 -> 3135[label="",style="dashed", color="magenta", weight=3]; 2907 -> 3136[label="",style="dashed", color="magenta", weight=3]; 2908 -> 2419[label="",style="dashed", color="red", weight=0]; 2908[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2908 -> 3137[label="",style="dashed", color="magenta", weight=3]; 2908 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2909 -> 2420[label="",style="dashed", color="red", weight=0]; 2909[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2909 -> 3139[label="",style="dashed", color="magenta", weight=3]; 2909 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2910 -> 96[label="",style="dashed", color="red", weight=0]; 2910[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2910 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2910 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2911 -> 2422[label="",style="dashed", color="red", weight=0]; 2911[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2911 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3144[label="",style="dashed", color="magenta", weight=3]; 2912 -> 2423[label="",style="dashed", color="red", weight=0]; 2912[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2912 -> 3145[label="",style="dashed", color="magenta", weight=3]; 2912 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2913 -> 2424[label="",style="dashed", color="red", weight=0]; 2913[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2913 -> 3147[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3148[label="",style="dashed", color="magenta", weight=3]; 2914 -> 2425[label="",style="dashed", color="red", weight=0]; 2914[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2914 -> 3149[label="",style="dashed", color="magenta", weight=3]; 2914 -> 3150[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2426[label="",style="dashed", color="red", weight=0]; 2915[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2915 -> 3151[label="",style="dashed", color="magenta", weight=3]; 2915 -> 3152[label="",style="dashed", color="magenta", weight=3]; 2916 -> 2427[label="",style="dashed", color="red", weight=0]; 2916[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2916 -> 3153[label="",style="dashed", color="magenta", weight=3]; 2916 -> 3154[label="",style="dashed", color="magenta", weight=3]; 2917 -> 2428[label="",style="dashed", color="red", weight=0]; 2917[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2917 -> 3155[label="",style="dashed", color="magenta", weight=3]; 2917 -> 3156[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2429[label="",style="dashed", color="red", weight=0]; 2918[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2918 -> 3157[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3158[label="",style="dashed", color="magenta", weight=3]; 2919 -> 2416[label="",style="dashed", color="red", weight=0]; 2919[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2919 -> 3159[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3160[label="",style="dashed", color="magenta", weight=3]; 2920 -> 2417[label="",style="dashed", color="red", weight=0]; 2920[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2920 -> 3161[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3162[label="",style="dashed", color="magenta", weight=3]; 2921 -> 2418[label="",style="dashed", color="red", weight=0]; 2921[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2921 -> 3163[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3164[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2419[label="",style="dashed", color="red", weight=0]; 2922[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2922 -> 3165[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3166[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2420[label="",style="dashed", color="red", weight=0]; 2923[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2923 -> 3167[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3168[label="",style="dashed", color="magenta", weight=3]; 2924 -> 96[label="",style="dashed", color="red", weight=0]; 2924[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2924 -> 3169[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3170[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2422[label="",style="dashed", color="red", weight=0]; 2925[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2925 -> 3171[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3172[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2423[label="",style="dashed", color="red", weight=0]; 2926[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2926 -> 3173[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3174[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2424[label="",style="dashed", color="red", weight=0]; 2927[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2927 -> 3175[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3176[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2425[label="",style="dashed", color="red", weight=0]; 2928[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2928 -> 3177[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3178[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2426[label="",style="dashed", color="red", weight=0]; 2929[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2929 -> 3179[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3180[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2427[label="",style="dashed", color="red", weight=0]; 2930[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2930 -> 3181[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3182[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2428[label="",style="dashed", color="red", weight=0]; 2931[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2931 -> 3183[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3184[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2429[label="",style="dashed", color="red", weight=0]; 2932[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2932 -> 3185[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3186[label="",style="dashed", color="magenta", weight=3]; 2933[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];5090[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2933 -> 5090[label="",style="solid", color="burlywood", weight=9]; 5090 -> 3187[label="",style="solid", color="burlywood", weight=3]; 5091[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2933 -> 5091[label="",style="solid", color="burlywood", weight=9]; 5091 -> 3188[label="",style="solid", color="burlywood", weight=3]; 2624[label="yvy700 < yvy720",fontsize=16,color="blue",shape="box"];5092[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5092[label="",style="solid", color="blue", weight=9]; 5092 -> 2662[label="",style="solid", color="blue", weight=3]; 5093[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5093[label="",style="solid", color="blue", weight=9]; 5093 -> 2663[label="",style="solid", color="blue", weight=3]; 5094[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 2664[label="",style="solid", color="blue", weight=3]; 5095[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 2665[label="",style="solid", color="blue", weight=3]; 5096[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 2666[label="",style="solid", color="blue", weight=3]; 5097[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 2667[label="",style="solid", color="blue", weight=3]; 5098[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5098[label="",style="solid", color="blue", weight=9]; 5098 -> 2668[label="",style="solid", color="blue", weight=3]; 5099[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5099[label="",style="solid", color="blue", weight=9]; 5099 -> 2669[label="",style="solid", color="blue", weight=3]; 5100[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 2670[label="",style="solid", color="blue", weight=3]; 5101[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 2671[label="",style="solid", color="blue", weight=3]; 5102[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 2672[label="",style="solid", color="blue", weight=3]; 5103[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 2673[label="",style="solid", color="blue", weight=3]; 5104[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5104[label="",style="solid", color="blue", weight=9]; 5104 -> 2674[label="",style="solid", color="blue", weight=3]; 5105[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5105[label="",style="solid", color="blue", weight=9]; 5105 -> 2675[label="",style="solid", color="blue", weight=3]; 2625[label="yvy721",fontsize=16,color="green",shape="box"];2626[label="yvy701",fontsize=16,color="green",shape="box"];2627 -> 2405[label="",style="dashed", color="red", weight=0]; 2627[label="yvy700 == yvy720 && yvy701 <= yvy721",fontsize=16,color="magenta"];2627 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2628[label="yvy700",fontsize=16,color="green",shape="box"];2629[label="yvy720",fontsize=16,color="green",shape="box"];2623[label="compare1 (yvy172,yvy173) (yvy174,yvy175) (yvy176 || yvy177)",fontsize=16,color="burlywood",shape="triangle"];5106[label="yvy176/False",fontsize=10,color="white",style="solid",shape="box"];2623 -> 5106[label="",style="solid", color="burlywood", weight=9]; 5106 -> 2678[label="",style="solid", color="burlywood", weight=3]; 5107[label="yvy176/True",fontsize=10,color="white",style="solid",shape="box"];2623 -> 5107[label="",style="solid", color="burlywood", weight=9]; 5107 -> 2679[label="",style="solid", color="burlywood", weight=3]; 1991[label="(yvy23,yvy24) == (yvy17,yvy18)",fontsize=16,color="black",shape="box"];1991 -> 2051[label="",style="solid", color="black", weight=3]; 1992[label="(yvy23,yvy24)",fontsize=16,color="green",shape="box"];1993[label="(yvy17,yvy18)",fontsize=16,color="green",shape="box"];2579[label="yvy500",fontsize=16,color="green",shape="box"];2580[label="yvy500",fontsize=16,color="green",shape="box"];2581[label="yvy500",fontsize=16,color="green",shape="box"];2582[label="yvy500",fontsize=16,color="green",shape="box"];2583[label="yvy500",fontsize=16,color="green",shape="box"];2584[label="yvy500",fontsize=16,color="green",shape="box"];2585[label="yvy500",fontsize=16,color="green",shape="box"];2586[label="yvy500",fontsize=16,color="green",shape="box"];2587[label="yvy500",fontsize=16,color="green",shape="box"];2588[label="yvy500",fontsize=16,color="green",shape="box"];2589[label="yvy500",fontsize=16,color="green",shape="box"];2590[label="yvy500",fontsize=16,color="green",shape="box"];2591[label="yvy500",fontsize=16,color="green",shape="box"];2592[label="yvy500",fontsize=16,color="green",shape="box"];2593[label="yvy501",fontsize=16,color="green",shape="box"];2594[label="yvy401",fontsize=16,color="green",shape="box"];2595[label="yvy501",fontsize=16,color="green",shape="box"];2596[label="yvy401",fontsize=16,color="green",shape="box"];2597[label="yvy501",fontsize=16,color="green",shape="box"];2598[label="yvy401",fontsize=16,color="green",shape="box"];2599[label="yvy501",fontsize=16,color="green",shape="box"];2600[label="yvy401",fontsize=16,color="green",shape="box"];2601[label="yvy501",fontsize=16,color="green",shape="box"];2602[label="yvy401",fontsize=16,color="green",shape="box"];2603[label="yvy501",fontsize=16,color="green",shape="box"];2604[label="yvy401",fontsize=16,color="green",shape="box"];2605[label="yvy501",fontsize=16,color="green",shape="box"];2606[label="yvy401",fontsize=16,color="green",shape="box"];2607[label="yvy501",fontsize=16,color="green",shape="box"];2608[label="yvy401",fontsize=16,color="green",shape="box"];2609[label="yvy501",fontsize=16,color="green",shape="box"];2610[label="yvy401",fontsize=16,color="green",shape="box"];2611[label="yvy501",fontsize=16,color="green",shape="box"];2612[label="yvy401",fontsize=16,color="green",shape="box"];2613[label="yvy501",fontsize=16,color="green",shape="box"];2614[label="yvy401",fontsize=16,color="green",shape="box"];2615[label="yvy501",fontsize=16,color="green",shape="box"];2616[label="yvy401",fontsize=16,color="green",shape="box"];2617[label="yvy501",fontsize=16,color="green",shape="box"];2618[label="yvy401",fontsize=16,color="green",shape="box"];2619[label="yvy501",fontsize=16,color="green",shape="box"];2620[label="yvy401",fontsize=16,color="green",shape="box"];867[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 otherwise",fontsize=16,color="black",shape="box"];867 -> 1079[label="",style="solid", color="black", weight=3]; 868 -> 468[label="",style="dashed", color="red", weight=0]; 868[label="FiniteMap.mkBalBranch (yvy500,yvy501) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400,yvy401) yvy41)",fontsize=16,color="magenta"];868 -> 1080[label="",style="dashed", color="magenta", weight=3]; 868 -> 1081[label="",style="dashed", color="magenta", weight=3]; 868 -> 1082[label="",style="dashed", color="magenta", weight=3]; 869[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];869 -> 1083[label="",style="solid", color="black", weight=3]; 870[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5108[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];870 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 1084[label="",style="solid", color="burlywood", weight=3]; 5109[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];870 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 1085[label="",style="solid", color="burlywood", weight=3]; 871[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5110[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];871 -> 5110[label="",style="solid", color="burlywood", weight=9]; 5110 -> 1086[label="",style="solid", color="burlywood", weight=3]; 5111[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];871 -> 5111[label="",style="solid", color="burlywood", weight=9]; 5111 -> 1087[label="",style="solid", color="burlywood", weight=3]; 872 -> 1800[label="",style="dashed", color="red", weight=0]; 872[label="primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];872 -> 1801[label="",style="dashed", color="magenta", weight=3]; 873[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];873 -> 1089[label="",style="solid", color="black", weight=3]; 874[label="yvy61",fontsize=16,color="green",shape="box"];875 -> 12[label="",style="dashed", color="red", weight=0]; 875[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];875 -> 1090[label="",style="dashed", color="magenta", weight=3]; 875 -> 1091[label="",style="dashed", color="magenta", weight=3]; 876[label="yvy60",fontsize=16,color="green",shape="box"];877[label="yvy63",fontsize=16,color="green",shape="box"];879[label="FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];879 -> 1092[label="",style="solid", color="black", weight=3]; 878[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 yvy103",fontsize=16,color="burlywood",shape="triangle"];5112[label="yvy103/False",fontsize=10,color="white",style="solid",shape="box"];878 -> 5112[label="",style="solid", color="burlywood", weight=9]; 5112 -> 1093[label="",style="solid", color="burlywood", weight=3]; 5113[label="yvy103/True",fontsize=10,color="white",style="solid",shape="box"];878 -> 5113[label="",style="solid", color="burlywood", weight=9]; 5113 -> 1094[label="",style="solid", color="burlywood", weight=3]; 997[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];997 -> 1095[label="",style="solid", color="black", weight=3]; 998[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5114[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];998 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 1096[label="",style="solid", color="burlywood", weight=3]; 5115[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];998 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 1097[label="",style="solid", color="burlywood", weight=3]; 999[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5116[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];999 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 1098[label="",style="solid", color="burlywood", weight=3]; 5117[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];999 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 1099[label="",style="solid", color="burlywood", weight=3]; 1000 -> 1869[label="",style="dashed", color="red", weight=0]; 1000[label="primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];1000 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1001[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1001 -> 1101[label="",style="solid", color="black", weight=3]; 1002[label="yvy61",fontsize=16,color="green",shape="box"];1003 -> 12[label="",style="dashed", color="red", weight=0]; 1003[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1003 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1004[label="yvy60",fontsize=16,color="green",shape="box"];1005[label="yvy63",fontsize=16,color="green",shape="box"];3021[label="yvy3000",fontsize=16,color="green",shape="box"];3022[label="yvy4000",fontsize=16,color="green",shape="box"];3023[label="yvy3000",fontsize=16,color="green",shape="box"];3024[label="yvy4000",fontsize=16,color="green",shape="box"];3025[label="yvy3000",fontsize=16,color="green",shape="box"];3026[label="yvy4000",fontsize=16,color="green",shape="box"];3027[label="yvy3000",fontsize=16,color="green",shape="box"];3028[label="yvy4000",fontsize=16,color="green",shape="box"];3029[label="yvy3000",fontsize=16,color="green",shape="box"];3030[label="yvy4000",fontsize=16,color="green",shape="box"];3031[label="yvy3000",fontsize=16,color="green",shape="box"];3032[label="yvy4000",fontsize=16,color="green",shape="box"];3033[label="yvy3000",fontsize=16,color="green",shape="box"];3034[label="yvy4000",fontsize=16,color="green",shape="box"];3035[label="yvy3000",fontsize=16,color="green",shape="box"];3036[label="yvy4000",fontsize=16,color="green",shape="box"];3037[label="yvy3000",fontsize=16,color="green",shape="box"];3038[label="yvy4000",fontsize=16,color="green",shape="box"];3039[label="yvy3000",fontsize=16,color="green",shape="box"];3040[label="yvy4000",fontsize=16,color="green",shape="box"];3041[label="yvy3000",fontsize=16,color="green",shape="box"];3042[label="yvy4000",fontsize=16,color="green",shape="box"];3043[label="yvy3000",fontsize=16,color="green",shape="box"];3044[label="yvy4000",fontsize=16,color="green",shape="box"];3045[label="yvy3000",fontsize=16,color="green",shape="box"];3046[label="yvy4000",fontsize=16,color="green",shape="box"];3047[label="yvy3000",fontsize=16,color="green",shape="box"];3048[label="yvy4000",fontsize=16,color="green",shape="box"];3049 -> 2416[label="",style="dashed", color="red", weight=0]; 3049[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3049 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3050 -> 2417[label="",style="dashed", color="red", weight=0]; 3050[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3050 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3051 -> 2418[label="",style="dashed", color="red", weight=0]; 3051[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3051 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3052 -> 2419[label="",style="dashed", color="red", weight=0]; 3052[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3052 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3053 -> 2420[label="",style="dashed", color="red", weight=0]; 3053[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3053 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3054 -> 96[label="",style="dashed", color="red", weight=0]; 3054[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3054 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3229[label="",style="dashed", color="magenta", weight=3]; 3055 -> 2422[label="",style="dashed", color="red", weight=0]; 3055[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3055 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3056 -> 2423[label="",style="dashed", color="red", weight=0]; 3056[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3056 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3057 -> 2424[label="",style="dashed", color="red", weight=0]; 3057[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3057 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3058 -> 2425[label="",style="dashed", color="red", weight=0]; 3058[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3058 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3059 -> 2426[label="",style="dashed", color="red", weight=0]; 3059[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3059 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3060 -> 2427[label="",style="dashed", color="red", weight=0]; 3060[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3060 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3061 -> 2428[label="",style="dashed", color="red", weight=0]; 3061[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3061 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3062 -> 2429[label="",style="dashed", color="red", weight=0]; 3062[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3062 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3063 -> 2416[label="",style="dashed", color="red", weight=0]; 3063[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3063 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3064 -> 2417[label="",style="dashed", color="red", weight=0]; 3064[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3064 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3065 -> 2418[label="",style="dashed", color="red", weight=0]; 3065[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3065 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3066 -> 2419[label="",style="dashed", color="red", weight=0]; 3066[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3066 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3067 -> 2420[label="",style="dashed", color="red", weight=0]; 3067[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3067 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3068 -> 96[label="",style="dashed", color="red", weight=0]; 3068[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3068 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3069 -> 2422[label="",style="dashed", color="red", weight=0]; 3069[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3069 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3070 -> 2423[label="",style="dashed", color="red", weight=0]; 3070[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3070 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3071 -> 2424[label="",style="dashed", color="red", weight=0]; 3071[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3071 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3072 -> 2425[label="",style="dashed", color="red", weight=0]; 3072[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3072 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3072 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3073 -> 2426[label="",style="dashed", color="red", weight=0]; 3073[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3073 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3074 -> 2427[label="",style="dashed", color="red", weight=0]; 3074[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3074 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3074 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3075 -> 2428[label="",style="dashed", color="red", weight=0]; 3075[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3075 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3076 -> 2429[label="",style="dashed", color="red", weight=0]; 3076[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3076 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3077 -> 2423[label="",style="dashed", color="red", weight=0]; 3077[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3077 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3078 -> 2424[label="",style="dashed", color="red", weight=0]; 3078[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3078 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3079 -> 2423[label="",style="dashed", color="red", weight=0]; 3079[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3079 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3080 -> 2424[label="",style="dashed", color="red", weight=0]; 3080[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3080 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3081 -> 2416[label="",style="dashed", color="red", weight=0]; 3081[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3081 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3082 -> 2417[label="",style="dashed", color="red", weight=0]; 3082[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3082 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3083 -> 2418[label="",style="dashed", color="red", weight=0]; 3083[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3083 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3084 -> 2419[label="",style="dashed", color="red", weight=0]; 3084[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3084 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3085 -> 2420[label="",style="dashed", color="red", weight=0]; 3085[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3085 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3086 -> 96[label="",style="dashed", color="red", weight=0]; 3086[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3086 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3087 -> 2422[label="",style="dashed", color="red", weight=0]; 3087[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3087 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3088 -> 2423[label="",style="dashed", color="red", weight=0]; 3088[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3088 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3089 -> 2424[label="",style="dashed", color="red", weight=0]; 3089[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3089 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3090 -> 2425[label="",style="dashed", color="red", weight=0]; 3090[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3090 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3091 -> 2426[label="",style="dashed", color="red", weight=0]; 3091[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3091 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3092 -> 2427[label="",style="dashed", color="red", weight=0]; 3092[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3092 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3093 -> 2428[label="",style="dashed", color="red", weight=0]; 3093[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3093 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3094 -> 2429[label="",style="dashed", color="red", weight=0]; 3094[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3094 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3094 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3095[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5118[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 3310[label="",style="solid", color="blue", weight=3]; 5119[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 3311[label="",style="solid", color="blue", weight=3]; 5120[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 3312[label="",style="solid", color="blue", weight=3]; 5121[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 3313[label="",style="solid", color="blue", weight=3]; 5122[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5122[label="",style="solid", color="blue", weight=9]; 5122 -> 3314[label="",style="solid", color="blue", weight=3]; 5123[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5123[label="",style="solid", color="blue", weight=9]; 5123 -> 3315[label="",style="solid", color="blue", weight=3]; 5124[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5124[label="",style="solid", color="blue", weight=9]; 5124 -> 3316[label="",style="solid", color="blue", weight=3]; 5125[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5125[label="",style="solid", color="blue", weight=9]; 5125 -> 3317[label="",style="solid", color="blue", weight=3]; 5126[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5126[label="",style="solid", color="blue", weight=9]; 5126 -> 3318[label="",style="solid", color="blue", weight=3]; 5127[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5127[label="",style="solid", color="blue", weight=9]; 5127 -> 3319[label="",style="solid", color="blue", weight=3]; 5128[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5128[label="",style="solid", color="blue", weight=9]; 5128 -> 3320[label="",style="solid", color="blue", weight=3]; 5129[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5129[label="",style="solid", color="blue", weight=9]; 5129 -> 3321[label="",style="solid", color="blue", weight=3]; 5130[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5130[label="",style="solid", color="blue", weight=9]; 5130 -> 3322[label="",style="solid", color="blue", weight=3]; 5131[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3095 -> 5131[label="",style="solid", color="blue", weight=9]; 5131 -> 3323[label="",style="solid", color="blue", weight=3]; 3096[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];5132[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5132[label="",style="solid", color="blue", weight=9]; 5132 -> 3324[label="",style="solid", color="blue", weight=3]; 5133[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5133[label="",style="solid", color="blue", weight=9]; 5133 -> 3325[label="",style="solid", color="blue", weight=3]; 5134[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5134[label="",style="solid", color="blue", weight=9]; 5134 -> 3326[label="",style="solid", color="blue", weight=3]; 5135[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5135[label="",style="solid", color="blue", weight=9]; 5135 -> 3327[label="",style="solid", color="blue", weight=3]; 5136[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5136[label="",style="solid", color="blue", weight=9]; 5136 -> 3328[label="",style="solid", color="blue", weight=3]; 5137[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5137[label="",style="solid", color="blue", weight=9]; 5137 -> 3329[label="",style="solid", color="blue", weight=3]; 5138[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5138[label="",style="solid", color="blue", weight=9]; 5138 -> 3330[label="",style="solid", color="blue", weight=3]; 5139[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5139[label="",style="solid", color="blue", weight=9]; 5139 -> 3331[label="",style="solid", color="blue", weight=3]; 5140[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5140[label="",style="solid", color="blue", weight=9]; 5140 -> 3332[label="",style="solid", color="blue", weight=3]; 5141[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5141[label="",style="solid", color="blue", weight=9]; 5141 -> 3333[label="",style="solid", color="blue", weight=3]; 5142[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5142[label="",style="solid", color="blue", weight=9]; 5142 -> 3334[label="",style="solid", color="blue", weight=3]; 5143[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5143[label="",style="solid", color="blue", weight=9]; 5143 -> 3335[label="",style="solid", color="blue", weight=3]; 5144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5144[label="",style="solid", color="blue", weight=9]; 5144 -> 3336[label="",style="solid", color="blue", weight=3]; 5145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5145[label="",style="solid", color="blue", weight=9]; 5145 -> 3337[label="",style="solid", color="blue", weight=3]; 3097[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3097 -> 3338[label="",style="solid", color="black", weight=3]; 3098[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3098 -> 3339[label="",style="solid", color="black", weight=3]; 3099[label="False",fontsize=16,color="green",shape="box"];3100[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3100 -> 3340[label="",style="solid", color="black", weight=3]; 3101[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3101 -> 3341[label="",style="solid", color="black", weight=3]; 3102[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3102 -> 3342[label="",style="solid", color="black", weight=3]; 3103[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3103 -> 3343[label="",style="solid", color="black", weight=3]; 3104[label="False",fontsize=16,color="green",shape="box"];3105[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3105 -> 3344[label="",style="solid", color="black", weight=3]; 3106[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3106 -> 3345[label="",style="solid", color="black", weight=3]; 3107[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3107 -> 3346[label="",style="solid", color="black", weight=3]; 3108[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3108 -> 3347[label="",style="solid", color="black", weight=3]; 3109[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3109 -> 3348[label="",style="solid", color="black", weight=3]; 3110[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3110 -> 3349[label="",style="solid", color="black", weight=3]; 3111 -> 1315[label="",style="dashed", color="red", weight=0]; 3111[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3111 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3112 -> 1315[label="",style="dashed", color="red", weight=0]; 3112[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3112 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3113 -> 1315[label="",style="dashed", color="red", weight=0]; 3113[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3113 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3114 -> 1315[label="",style="dashed", color="red", weight=0]; 3114[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3114 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3115 -> 2416[label="",style="dashed", color="red", weight=0]; 3115[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3115 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3116 -> 2417[label="",style="dashed", color="red", weight=0]; 3116[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3116 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3117 -> 2418[label="",style="dashed", color="red", weight=0]; 3117[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3117 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3118 -> 2419[label="",style="dashed", color="red", weight=0]; 3118[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3118 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3119 -> 2420[label="",style="dashed", color="red", weight=0]; 3119[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3119 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3120 -> 96[label="",style="dashed", color="red", weight=0]; 3120[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3120 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3121 -> 2422[label="",style="dashed", color="red", weight=0]; 3121[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3121 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3122 -> 2423[label="",style="dashed", color="red", weight=0]; 3122[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3122 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3123 -> 2424[label="",style="dashed", color="red", weight=0]; 3123[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3123 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3124 -> 2425[label="",style="dashed", color="red", weight=0]; 3124[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3124 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3125 -> 2426[label="",style="dashed", color="red", weight=0]; 3125[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3125 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3126 -> 2427[label="",style="dashed", color="red", weight=0]; 3126[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3126 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3127 -> 2428[label="",style="dashed", color="red", weight=0]; 3127[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3127 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3128 -> 2429[label="",style="dashed", color="red", weight=0]; 3128[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3128 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3129[label="yvy3001",fontsize=16,color="green",shape="box"];3130[label="yvy4001",fontsize=16,color="green",shape="box"];3131[label="yvy3000",fontsize=16,color="green",shape="box"];3132[label="yvy4000",fontsize=16,color="green",shape="box"];3133[label="yvy3000",fontsize=16,color="green",shape="box"];3134[label="yvy4000",fontsize=16,color="green",shape="box"];3135[label="yvy3000",fontsize=16,color="green",shape="box"];3136[label="yvy4000",fontsize=16,color="green",shape="box"];3137[label="yvy3000",fontsize=16,color="green",shape="box"];3138[label="yvy4000",fontsize=16,color="green",shape="box"];3139[label="yvy3000",fontsize=16,color="green",shape="box"];3140[label="yvy4000",fontsize=16,color="green",shape="box"];3141[label="yvy3000",fontsize=16,color="green",shape="box"];3142[label="yvy4000",fontsize=16,color="green",shape="box"];3143[label="yvy3000",fontsize=16,color="green",shape="box"];3144[label="yvy4000",fontsize=16,color="green",shape="box"];3145[label="yvy3000",fontsize=16,color="green",shape="box"];3146[label="yvy4000",fontsize=16,color="green",shape="box"];3147[label="yvy3000",fontsize=16,color="green",shape="box"];3148[label="yvy4000",fontsize=16,color="green",shape="box"];3149[label="yvy3000",fontsize=16,color="green",shape="box"];3150[label="yvy4000",fontsize=16,color="green",shape="box"];3151[label="yvy3000",fontsize=16,color="green",shape="box"];3152[label="yvy4000",fontsize=16,color="green",shape="box"];3153[label="yvy3000",fontsize=16,color="green",shape="box"];3154[label="yvy4000",fontsize=16,color="green",shape="box"];3155[label="yvy3000",fontsize=16,color="green",shape="box"];3156[label="yvy4000",fontsize=16,color="green",shape="box"];3157[label="yvy3000",fontsize=16,color="green",shape="box"];3158[label="yvy4000",fontsize=16,color="green",shape="box"];3159[label="yvy3000",fontsize=16,color="green",shape="box"];3160[label="yvy4000",fontsize=16,color="green",shape="box"];3161[label="yvy3000",fontsize=16,color="green",shape="box"];3162[label="yvy4000",fontsize=16,color="green",shape="box"];3163[label="yvy3000",fontsize=16,color="green",shape="box"];3164[label="yvy4000",fontsize=16,color="green",shape="box"];3165[label="yvy3000",fontsize=16,color="green",shape="box"];3166[label="yvy4000",fontsize=16,color="green",shape="box"];3167[label="yvy3000",fontsize=16,color="green",shape="box"];3168[label="yvy4000",fontsize=16,color="green",shape="box"];3169[label="yvy3000",fontsize=16,color="green",shape="box"];3170[label="yvy4000",fontsize=16,color="green",shape="box"];3171[label="yvy3000",fontsize=16,color="green",shape="box"];3172[label="yvy4000",fontsize=16,color="green",shape="box"];3173[label="yvy3000",fontsize=16,color="green",shape="box"];3174[label="yvy4000",fontsize=16,color="green",shape="box"];3175[label="yvy3000",fontsize=16,color="green",shape="box"];3176[label="yvy4000",fontsize=16,color="green",shape="box"];3177[label="yvy3000",fontsize=16,color="green",shape="box"];3178[label="yvy4000",fontsize=16,color="green",shape="box"];3179[label="yvy3000",fontsize=16,color="green",shape="box"];3180[label="yvy4000",fontsize=16,color="green",shape="box"];3181[label="yvy3000",fontsize=16,color="green",shape="box"];3182[label="yvy4000",fontsize=16,color="green",shape="box"];3183[label="yvy3000",fontsize=16,color="green",shape="box"];3184[label="yvy4000",fontsize=16,color="green",shape="box"];3185[label="yvy3000",fontsize=16,color="green",shape="box"];3186[label="yvy4000",fontsize=16,color="green",shape="box"];3187[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];5146[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 3386[label="",style="solid", color="burlywood", weight=3]; 5147[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 3387[label="",style="solid", color="burlywood", weight=3]; 3188[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];5148[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3188 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 3388[label="",style="solid", color="burlywood", weight=3]; 5149[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3188 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 3389[label="",style="solid", color="burlywood", weight=3]; 2662[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2662 -> 2739[label="",style="solid", color="black", weight=3]; 2663[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2663 -> 2740[label="",style="solid", color="black", weight=3]; 2664[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2664 -> 2741[label="",style="solid", color="black", weight=3]; 2665[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2665 -> 2742[label="",style="solid", color="black", weight=3]; 2666[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2666 -> 2743[label="",style="solid", color="black", weight=3]; 2667[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2667 -> 2744[label="",style="solid", color="black", weight=3]; 2668[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2668 -> 2745[label="",style="solid", color="black", weight=3]; 2669[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2669 -> 2746[label="",style="solid", color="black", weight=3]; 2670[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2670 -> 2747[label="",style="solid", color="black", weight=3]; 2671[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2671 -> 2748[label="",style="solid", color="black", weight=3]; 2672[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2672 -> 2749[label="",style="solid", color="black", weight=3]; 2673[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2673 -> 2750[label="",style="solid", color="black", weight=3]; 2674[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2674 -> 2751[label="",style="solid", color="black", weight=3]; 2675[label="yvy700 < yvy720",fontsize=16,color="black",shape="triangle"];2675 -> 2752[label="",style="solid", color="black", weight=3]; 2676[label="yvy700 == yvy720",fontsize=16,color="blue",shape="box"];5150[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5150[label="",style="solid", color="blue", weight=9]; 5150 -> 2753[label="",style="solid", color="blue", weight=3]; 5151[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5151[label="",style="solid", color="blue", weight=9]; 5151 -> 2754[label="",style="solid", color="blue", weight=3]; 5152[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5152[label="",style="solid", color="blue", weight=9]; 5152 -> 2755[label="",style="solid", color="blue", weight=3]; 5153[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5153[label="",style="solid", color="blue", weight=9]; 5153 -> 2756[label="",style="solid", color="blue", weight=3]; 5154[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5154[label="",style="solid", color="blue", weight=9]; 5154 -> 2757[label="",style="solid", color="blue", weight=3]; 5155[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5155[label="",style="solid", color="blue", weight=9]; 5155 -> 2758[label="",style="solid", color="blue", weight=3]; 5156[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5156[label="",style="solid", color="blue", weight=9]; 5156 -> 2759[label="",style="solid", color="blue", weight=3]; 5157[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5157[label="",style="solid", color="blue", weight=9]; 5157 -> 2760[label="",style="solid", color="blue", weight=3]; 5158[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5158[label="",style="solid", color="blue", weight=9]; 5158 -> 2761[label="",style="solid", color="blue", weight=3]; 5159[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5159[label="",style="solid", color="blue", weight=9]; 5159 -> 2762[label="",style="solid", color="blue", weight=3]; 5160[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5160[label="",style="solid", color="blue", weight=9]; 5160 -> 2763[label="",style="solid", color="blue", weight=3]; 5161[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5161[label="",style="solid", color="blue", weight=9]; 5161 -> 2764[label="",style="solid", color="blue", weight=3]; 5162[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5162[label="",style="solid", color="blue", weight=9]; 5162 -> 2765[label="",style="solid", color="blue", weight=3]; 5163[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2676 -> 5163[label="",style="solid", color="blue", weight=9]; 5163 -> 2766[label="",style="solid", color="blue", weight=3]; 2677[label="yvy701 <= yvy721",fontsize=16,color="blue",shape="box"];5164[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5164[label="",style="solid", color="blue", weight=9]; 5164 -> 2767[label="",style="solid", color="blue", weight=3]; 5165[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5165[label="",style="solid", color="blue", weight=9]; 5165 -> 2768[label="",style="solid", color="blue", weight=3]; 5166[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5166[label="",style="solid", color="blue", weight=9]; 5166 -> 2769[label="",style="solid", color="blue", weight=3]; 5167[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5167[label="",style="solid", color="blue", weight=9]; 5167 -> 2770[label="",style="solid", color="blue", weight=3]; 5168[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5168[label="",style="solid", color="blue", weight=9]; 5168 -> 2771[label="",style="solid", color="blue", weight=3]; 5169[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5169[label="",style="solid", color="blue", weight=9]; 5169 -> 2772[label="",style="solid", color="blue", weight=3]; 5170[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5170[label="",style="solid", color="blue", weight=9]; 5170 -> 2773[label="",style="solid", color="blue", weight=3]; 5171[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5171[label="",style="solid", color="blue", weight=9]; 5171 -> 2774[label="",style="solid", color="blue", weight=3]; 5172[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5172[label="",style="solid", color="blue", weight=9]; 5172 -> 2775[label="",style="solid", color="blue", weight=3]; 5173[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 2776[label="",style="solid", color="blue", weight=3]; 5174[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 2777[label="",style="solid", color="blue", weight=3]; 5175[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 2778[label="",style="solid", color="blue", weight=3]; 5176[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 2779[label="",style="solid", color="blue", weight=3]; 5177[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2677 -> 5177[label="",style="solid", color="blue", weight=9]; 5177 -> 2780[label="",style="solid", color="blue", weight=3]; 2678[label="compare1 (yvy172,yvy173) (yvy174,yvy175) (False || yvy177)",fontsize=16,color="black",shape="box"];2678 -> 2781[label="",style="solid", color="black", weight=3]; 2679[label="compare1 (yvy172,yvy173) (yvy174,yvy175) (True || yvy177)",fontsize=16,color="black",shape="box"];2679 -> 2782[label="",style="solid", color="black", weight=3]; 2051 -> 2405[label="",style="dashed", color="red", weight=0]; 2051[label="yvy23 == yvy17 && yvy24 == yvy18",fontsize=16,color="magenta"];2051 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2415[label="",style="dashed", color="magenta", weight=3]; 1079[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (yvy500,yvy501) yvy51 yvy52 yvy53 yvy54 (yvy400,yvy401) yvy41 True",fontsize=16,color="black",shape="box"];1079 -> 1393[label="",style="solid", color="black", weight=3]; 1080 -> 33[label="",style="dashed", color="red", weight=0]; 1080[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (yvy400,yvy401) yvy41",fontsize=16,color="magenta"];1080 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1081[label="(yvy500,yvy501)",fontsize=16,color="green",shape="box"];1082[label="yvy53",fontsize=16,color="green",shape="box"];1083[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1083 -> 1396[label="",style="solid", color="black", weight=3]; 1084[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1084 -> 1397[label="",style="solid", color="black", weight=3]; 1085[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1085 -> 1398[label="",style="solid", color="black", weight=3]; 1086[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1086 -> 1399[label="",style="solid", color="black", weight=3]; 1087[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1087 -> 1400[label="",style="solid", color="black", weight=3]; 1801 -> 1315[label="",style="dashed", color="red", weight=0]; 1801[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];1801 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1800[label="primCmpInt yvy139 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="triangle"];5178[label="yvy139/Pos yvy1390",fontsize=10,color="white",style="solid",shape="box"];1800 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 1806[label="",style="solid", color="burlywood", weight=3]; 5179[label="yvy139/Neg yvy1390",fontsize=10,color="white",style="solid",shape="box"];1800 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 1807[label="",style="solid", color="burlywood", weight=3]; 1089 -> 4637[label="",style="dashed", color="red", weight=0]; 1089[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 yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1089 -> 4638[label="",style="dashed", color="magenta", weight=3]; 1089 -> 4639[label="",style="dashed", color="magenta", weight=3]; 1089 -> 4640[label="",style="dashed", color="magenta", weight=3]; 1089 -> 4641[label="",style="dashed", color="magenta", weight=3]; 1089 -> 4642[label="",style="dashed", color="magenta", weight=3]; 1090[label="yvy64",fontsize=16,color="green",shape="box"];1091[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1092 -> 96[label="",style="dashed", color="red", weight=0]; 1092[label="compare (FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];1092 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1093[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 False",fontsize=16,color="black",shape="box"];1093 -> 1634[label="",style="solid", color="black", weight=3]; 1094[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 True",fontsize=16,color="black",shape="box"];1094 -> 1635[label="",style="solid", color="black", weight=3]; 1095[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1095 -> 1636[label="",style="solid", color="black", weight=3]; 1096[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1096 -> 1637[label="",style="solid", color="black", weight=3]; 1097[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1097 -> 1638[label="",style="solid", color="black", weight=3]; 1098[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1098 -> 1639[label="",style="solid", color="black", weight=3]; 1099[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1099 -> 1640[label="",style="solid", color="black", weight=3]; 1870 -> 1315[label="",style="dashed", color="red", weight=0]; 1870[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];1870 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1869[label="primCmpInt yvy143 (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="triangle"];5180[label="yvy143/Pos yvy1430",fontsize=10,color="white",style="solid",shape="box"];1869 -> 5180[label="",style="solid", color="burlywood", weight=9]; 5180 -> 1875[label="",style="solid", color="burlywood", weight=3]; 5181[label="yvy143/Neg yvy1430",fontsize=10,color="white",style="solid",shape="box"];1869 -> 5181[label="",style="solid", color="burlywood", weight=9]; 5181 -> 1876[label="",style="solid", color="burlywood", weight=3]; 1101 -> 4637[label="",style="dashed", color="red", weight=0]; 1101[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 yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1101 -> 4643[label="",style="dashed", color="magenta", weight=3]; 1101 -> 4644[label="",style="dashed", color="magenta", weight=3]; 1101 -> 4645[label="",style="dashed", color="magenta", weight=3]; 1101 -> 4646[label="",style="dashed", color="magenta", weight=3]; 1101 -> 4647[label="",style="dashed", color="magenta", weight=3]; 1102[label="yvy64",fontsize=16,color="green",shape="box"];1103[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3218[label="yvy3000",fontsize=16,color="green",shape="box"];3219[label="yvy4000",fontsize=16,color="green",shape="box"];3220[label="yvy3000",fontsize=16,color="green",shape="box"];3221[label="yvy4000",fontsize=16,color="green",shape="box"];3222[label="yvy3000",fontsize=16,color="green",shape="box"];3223[label="yvy4000",fontsize=16,color="green",shape="box"];3224[label="yvy3000",fontsize=16,color="green",shape="box"];3225[label="yvy4000",fontsize=16,color="green",shape="box"];3226[label="yvy3000",fontsize=16,color="green",shape="box"];3227[label="yvy4000",fontsize=16,color="green",shape="box"];3228[label="yvy3000",fontsize=16,color="green",shape="box"];3229[label="yvy4000",fontsize=16,color="green",shape="box"];3230[label="yvy3000",fontsize=16,color="green",shape="box"];3231[label="yvy4000",fontsize=16,color="green",shape="box"];3232[label="yvy3000",fontsize=16,color="green",shape="box"];3233[label="yvy4000",fontsize=16,color="green",shape="box"];3234[label="yvy3000",fontsize=16,color="green",shape="box"];3235[label="yvy4000",fontsize=16,color="green",shape="box"];3236[label="yvy3000",fontsize=16,color="green",shape="box"];3237[label="yvy4000",fontsize=16,color="green",shape="box"];3238[label="yvy3000",fontsize=16,color="green",shape="box"];3239[label="yvy4000",fontsize=16,color="green",shape="box"];3240[label="yvy3000",fontsize=16,color="green",shape="box"];3241[label="yvy4000",fontsize=16,color="green",shape="box"];3242[label="yvy3000",fontsize=16,color="green",shape="box"];3243[label="yvy4000",fontsize=16,color="green",shape="box"];3244[label="yvy3000",fontsize=16,color="green",shape="box"];3245[label="yvy4000",fontsize=16,color="green",shape="box"];3246[label="yvy3001",fontsize=16,color="green",shape="box"];3247[label="yvy4001",fontsize=16,color="green",shape="box"];3248[label="yvy3001",fontsize=16,color="green",shape="box"];3249[label="yvy4001",fontsize=16,color="green",shape="box"];3250[label="yvy3001",fontsize=16,color="green",shape="box"];3251[label="yvy4001",fontsize=16,color="green",shape="box"];3252[label="yvy3001",fontsize=16,color="green",shape="box"];3253[label="yvy4001",fontsize=16,color="green",shape="box"];3254[label="yvy3001",fontsize=16,color="green",shape="box"];3255[label="yvy4001",fontsize=16,color="green",shape="box"];3256[label="yvy3001",fontsize=16,color="green",shape="box"];3257[label="yvy4001",fontsize=16,color="green",shape="box"];3258[label="yvy3001",fontsize=16,color="green",shape="box"];3259[label="yvy4001",fontsize=16,color="green",shape="box"];3260[label="yvy3001",fontsize=16,color="green",shape="box"];3261[label="yvy4001",fontsize=16,color="green",shape="box"];3262[label="yvy3001",fontsize=16,color="green",shape="box"];3263[label="yvy4001",fontsize=16,color="green",shape="box"];3264[label="yvy3001",fontsize=16,color="green",shape="box"];3265[label="yvy4001",fontsize=16,color="green",shape="box"];3266[label="yvy3001",fontsize=16,color="green",shape="box"];3267[label="yvy4001",fontsize=16,color="green",shape="box"];3268[label="yvy3001",fontsize=16,color="green",shape="box"];3269[label="yvy4001",fontsize=16,color="green",shape="box"];3270[label="yvy3001",fontsize=16,color="green",shape="box"];3271[label="yvy4001",fontsize=16,color="green",shape="box"];3272[label="yvy3001",fontsize=16,color="green",shape="box"];3273[label="yvy4001",fontsize=16,color="green",shape="box"];3274[label="yvy3000",fontsize=16,color="green",shape="box"];3275[label="yvy4000",fontsize=16,color="green",shape="box"];3276[label="yvy3000",fontsize=16,color="green",shape="box"];3277[label="yvy4000",fontsize=16,color="green",shape="box"];3278[label="yvy3001",fontsize=16,color="green",shape="box"];3279[label="yvy4001",fontsize=16,color="green",shape="box"];3280[label="yvy3001",fontsize=16,color="green",shape="box"];3281[label="yvy4001",fontsize=16,color="green",shape="box"];3282[label="yvy3000",fontsize=16,color="green",shape="box"];3283[label="yvy4000",fontsize=16,color="green",shape="box"];3284[label="yvy3000",fontsize=16,color="green",shape="box"];3285[label="yvy4000",fontsize=16,color="green",shape="box"];3286[label="yvy3000",fontsize=16,color="green",shape="box"];3287[label="yvy4000",fontsize=16,color="green",shape="box"];3288[label="yvy3000",fontsize=16,color="green",shape="box"];3289[label="yvy4000",fontsize=16,color="green",shape="box"];3290[label="yvy3000",fontsize=16,color="green",shape="box"];3291[label="yvy4000",fontsize=16,color="green",shape="box"];3292[label="yvy3000",fontsize=16,color="green",shape="box"];3293[label="yvy4000",fontsize=16,color="green",shape="box"];3294[label="yvy3000",fontsize=16,color="green",shape="box"];3295[label="yvy4000",fontsize=16,color="green",shape="box"];3296[label="yvy3000",fontsize=16,color="green",shape="box"];3297[label="yvy4000",fontsize=16,color="green",shape="box"];3298[label="yvy3000",fontsize=16,color="green",shape="box"];3299[label="yvy4000",fontsize=16,color="green",shape="box"];3300[label="yvy3000",fontsize=16,color="green",shape="box"];3301[label="yvy4000",fontsize=16,color="green",shape="box"];3302[label="yvy3000",fontsize=16,color="green",shape="box"];3303[label="yvy4000",fontsize=16,color="green",shape="box"];3304[label="yvy3000",fontsize=16,color="green",shape="box"];3305[label="yvy4000",fontsize=16,color="green",shape="box"];3306[label="yvy3000",fontsize=16,color="green",shape="box"];3307[label="yvy4000",fontsize=16,color="green",shape="box"];3308[label="yvy3000",fontsize=16,color="green",shape="box"];3309[label="yvy4000",fontsize=16,color="green",shape="box"];3310 -> 2416[label="",style="dashed", color="red", weight=0]; 3310[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3310 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3311 -> 2417[label="",style="dashed", color="red", weight=0]; 3311[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3311 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3312 -> 2418[label="",style="dashed", color="red", weight=0]; 3312[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3312 -> 3459[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2419[label="",style="dashed", color="red", weight=0]; 3313[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3313 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2420[label="",style="dashed", color="red", weight=0]; 3314[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3314 -> 3463[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3464[label="",style="dashed", color="magenta", weight=3]; 3315 -> 96[label="",style="dashed", color="red", weight=0]; 3315[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3315 -> 3465[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2422[label="",style="dashed", color="red", weight=0]; 3316[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3316 -> 3467[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3317 -> 2423[label="",style="dashed", color="red", weight=0]; 3317[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3317 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2424[label="",style="dashed", color="red", weight=0]; 3318[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3318 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2425[label="",style="dashed", color="red", weight=0]; 3319[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3319 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2426[label="",style="dashed", color="red", weight=0]; 3320[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3320 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3476[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2427[label="",style="dashed", color="red", weight=0]; 3321[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3321 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3322 -> 2428[label="",style="dashed", color="red", weight=0]; 3322[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3322 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2429[label="",style="dashed", color="red", weight=0]; 3323[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3323 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3324 -> 2416[label="",style="dashed", color="red", weight=0]; 3324[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3324 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3325 -> 2417[label="",style="dashed", color="red", weight=0]; 3325[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3325 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3326 -> 2418[label="",style="dashed", color="red", weight=0]; 3326[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3326 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3327 -> 2419[label="",style="dashed", color="red", weight=0]; 3327[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3327 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3328 -> 2420[label="",style="dashed", color="red", weight=0]; 3328[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3328 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3328 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3329 -> 96[label="",style="dashed", color="red", weight=0]; 3329[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3329 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3330 -> 2422[label="",style="dashed", color="red", weight=0]; 3330[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3330 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3331 -> 2423[label="",style="dashed", color="red", weight=0]; 3331[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3331 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3332 -> 2424[label="",style="dashed", color="red", weight=0]; 3332[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3332 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3332 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3333 -> 2425[label="",style="dashed", color="red", weight=0]; 3333[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3333 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3333 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3334 -> 2426[label="",style="dashed", color="red", weight=0]; 3334[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3334 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3334 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3335 -> 2427[label="",style="dashed", color="red", weight=0]; 3335[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3335 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3335 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3336 -> 2428[label="",style="dashed", color="red", weight=0]; 3336[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3336 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3508[label="",style="dashed", color="magenta", weight=3]; 3337 -> 2429[label="",style="dashed", color="red", weight=0]; 3337[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3337 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3338 -> 2933[label="",style="dashed", color="red", weight=0]; 3338[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3338 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3338 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3339[label="False",fontsize=16,color="green",shape="box"];3340[label="False",fontsize=16,color="green",shape="box"];3341[label="True",fontsize=16,color="green",shape="box"];3342[label="False",fontsize=16,color="green",shape="box"];3343[label="True",fontsize=16,color="green",shape="box"];3344 -> 2933[label="",style="dashed", color="red", weight=0]; 3344[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3344 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3344 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3345[label="False",fontsize=16,color="green",shape="box"];3346[label="False",fontsize=16,color="green",shape="box"];3347[label="True",fontsize=16,color="green",shape="box"];3348[label="False",fontsize=16,color="green",shape="box"];3349[label="True",fontsize=16,color="green",shape="box"];3350[label="yvy3000",fontsize=16,color="green",shape="box"];3351[label="yvy4001",fontsize=16,color="green",shape="box"];1315[label="yvy4011 * yvy3010",fontsize=16,color="black",shape="triangle"];1315 -> 1593[label="",style="solid", color="black", weight=3]; 3352[label="yvy3001",fontsize=16,color="green",shape="box"];3353[label="yvy4000",fontsize=16,color="green",shape="box"];3354[label="yvy3000",fontsize=16,color="green",shape="box"];3355[label="yvy4001",fontsize=16,color="green",shape="box"];3356[label="yvy3001",fontsize=16,color="green",shape="box"];3357[label="yvy4000",fontsize=16,color="green",shape="box"];3358[label="yvy3000",fontsize=16,color="green",shape="box"];3359[label="yvy4000",fontsize=16,color="green",shape="box"];3360[label="yvy3000",fontsize=16,color="green",shape="box"];3361[label="yvy4000",fontsize=16,color="green",shape="box"];3362[label="yvy3000",fontsize=16,color="green",shape="box"];3363[label="yvy4000",fontsize=16,color="green",shape="box"];3364[label="yvy3000",fontsize=16,color="green",shape="box"];3365[label="yvy4000",fontsize=16,color="green",shape="box"];3366[label="yvy3000",fontsize=16,color="green",shape="box"];3367[label="yvy4000",fontsize=16,color="green",shape="box"];3368[label="yvy3000",fontsize=16,color="green",shape="box"];3369[label="yvy4000",fontsize=16,color="green",shape="box"];3370[label="yvy3000",fontsize=16,color="green",shape="box"];3371[label="yvy4000",fontsize=16,color="green",shape="box"];3372[label="yvy3000",fontsize=16,color="green",shape="box"];3373[label="yvy4000",fontsize=16,color="green",shape="box"];3374[label="yvy3000",fontsize=16,color="green",shape="box"];3375[label="yvy4000",fontsize=16,color="green",shape="box"];3376[label="yvy3000",fontsize=16,color="green",shape="box"];3377[label="yvy4000",fontsize=16,color="green",shape="box"];3378[label="yvy3000",fontsize=16,color="green",shape="box"];3379[label="yvy4000",fontsize=16,color="green",shape="box"];3380[label="yvy3000",fontsize=16,color="green",shape="box"];3381[label="yvy4000",fontsize=16,color="green",shape="box"];3382[label="yvy3000",fontsize=16,color="green",shape="box"];3383[label="yvy4000",fontsize=16,color="green",shape="box"];3384[label="yvy3000",fontsize=16,color="green",shape="box"];3385[label="yvy4000",fontsize=16,color="green",shape="box"];3386[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3386 -> 3515[label="",style="solid", color="black", weight=3]; 3387[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3387 -> 3516[label="",style="solid", color="black", weight=3]; 3388[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3388 -> 3517[label="",style="solid", color="black", weight=3]; 3389[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3389 -> 3518[label="",style="solid", color="black", weight=3]; 2739 -> 96[label="",style="dashed", color="red", weight=0]; 2739[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2739 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2740 -> 96[label="",style="dashed", color="red", weight=0]; 2740[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2740 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2741 -> 96[label="",style="dashed", color="red", weight=0]; 2741[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2741 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2742 -> 96[label="",style="dashed", color="red", weight=0]; 2742[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2742 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2743 -> 96[label="",style="dashed", color="red", weight=0]; 2743[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2743 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2744 -> 96[label="",style="dashed", color="red", weight=0]; 2744[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2744 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2745 -> 96[label="",style="dashed", color="red", weight=0]; 2745[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2745 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2746 -> 96[label="",style="dashed", color="red", weight=0]; 2746[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2746 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2747 -> 96[label="",style="dashed", color="red", weight=0]; 2747[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2747 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2748 -> 96[label="",style="dashed", color="red", weight=0]; 2748[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2748 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2749 -> 96[label="",style="dashed", color="red", weight=0]; 2749[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2749 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2750 -> 96[label="",style="dashed", color="red", weight=0]; 2750[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2750 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2751 -> 96[label="",style="dashed", color="red", weight=0]; 2751[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2751 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2752 -> 96[label="",style="dashed", color="red", weight=0]; 2752[label="compare yvy700 yvy720 == LT",fontsize=16,color="magenta"];2752 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2428[label="",style="dashed", color="red", weight=0]; 2753[label="yvy700 == yvy720",fontsize=16,color="magenta"];2753 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2429[label="",style="dashed", color="red", weight=0]; 2754[label="yvy700 == yvy720",fontsize=16,color="magenta"];2754 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2422[label="",style="dashed", color="red", weight=0]; 2755[label="yvy700 == yvy720",fontsize=16,color="magenta"];2755 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2423[label="",style="dashed", color="red", weight=0]; 2756[label="yvy700 == yvy720",fontsize=16,color="magenta"];2756 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2418[label="",style="dashed", color="red", weight=0]; 2757[label="yvy700 == yvy720",fontsize=16,color="magenta"];2757 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2416[label="",style="dashed", color="red", weight=0]; 2758[label="yvy700 == yvy720",fontsize=16,color="magenta"];2758 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2419[label="",style="dashed", color="red", weight=0]; 2759[label="yvy700 == yvy720",fontsize=16,color="magenta"];2759 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2420[label="",style="dashed", color="red", weight=0]; 2760[label="yvy700 == yvy720",fontsize=16,color="magenta"];2760 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2761 -> 96[label="",style="dashed", color="red", weight=0]; 2761[label="yvy700 == yvy720",fontsize=16,color="magenta"];2761 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2424[label="",style="dashed", color="red", weight=0]; 2762[label="yvy700 == yvy720",fontsize=16,color="magenta"];2762 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2426[label="",style="dashed", color="red", weight=0]; 2763[label="yvy700 == yvy720",fontsize=16,color="magenta"];2763 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2417[label="",style="dashed", color="red", weight=0]; 2764[label="yvy700 == yvy720",fontsize=16,color="magenta"];2764 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2427[label="",style="dashed", color="red", weight=0]; 2765[label="yvy700 == yvy720",fontsize=16,color="magenta"];2765 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2425[label="",style="dashed", color="red", weight=0]; 2766[label="yvy700 == yvy720",fontsize=16,color="magenta"];2766 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2767[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5182[label="yvy701/Left yvy7010",fontsize=10,color="white",style="solid",shape="box"];2767 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 2990[label="",style="solid", color="burlywood", weight=3]; 5183[label="yvy701/Right yvy7010",fontsize=10,color="white",style="solid",shape="box"];2767 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 2991[label="",style="solid", color="burlywood", weight=3]; 2768[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2768 -> 2992[label="",style="solid", color="black", weight=3]; 2769[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5184[label="yvy701/(yvy7010,yvy7011,yvy7012)",fontsize=10,color="white",style="solid",shape="box"];2769 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2770[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2770 -> 2994[label="",style="solid", color="black", weight=3]; 2771[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5185[label="yvy701/(yvy7010,yvy7011)",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 2995[label="",style="solid", color="burlywood", weight=3]; 2772[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2772 -> 2996[label="",style="solid", color="black", weight=3]; 2773[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2773 -> 2997[label="",style="solid", color="black", weight=3]; 2774[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5186[label="yvy701/False",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 2998[label="",style="solid", color="burlywood", weight=3]; 5187[label="yvy701/True",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 2999[label="",style="solid", color="burlywood", weight=3]; 2775[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5188[label="yvy701/LT",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 3000[label="",style="solid", color="burlywood", weight=3]; 5189[label="yvy701/EQ",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 3001[label="",style="solid", color="burlywood", weight=3]; 5190[label="yvy701/GT",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 3002[label="",style="solid", color="burlywood", weight=3]; 2776[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2776 -> 3003[label="",style="solid", color="black", weight=3]; 2777[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2777 -> 3004[label="",style="solid", color="black", weight=3]; 2778[label="yvy701 <= yvy721",fontsize=16,color="burlywood",shape="triangle"];5191[label="yvy701/Nothing",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 3005[label="",style="solid", color="burlywood", weight=3]; 5192[label="yvy701/Just yvy7010",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5192[label="",style="solid", color="burlywood", weight=9]; 5192 -> 3006[label="",style="solid", color="burlywood", weight=3]; 2779[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2779 -> 3007[label="",style="solid", color="black", weight=3]; 2780[label="yvy701 <= yvy721",fontsize=16,color="black",shape="triangle"];2780 -> 3008[label="",style="solid", color="black", weight=3]; 2781[label="compare1 (yvy172,yvy173) (yvy174,yvy175) yvy177",fontsize=16,color="burlywood",shape="triangle"];5193[label="yvy177/False",fontsize=10,color="white",style="solid",shape="box"];2781 -> 5193[label="",style="solid", color="burlywood", weight=9]; 5193 -> 3009[label="",style="solid", color="burlywood", weight=3]; 5194[label="yvy177/True",fontsize=10,color="white",style="solid",shape="box"];2781 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 3010[label="",style="solid", color="burlywood", weight=3]; 2782 -> 2781[label="",style="dashed", color="red", weight=0]; 2782[label="compare1 (yvy172,yvy173) (yvy174,yvy175) True",fontsize=16,color="magenta"];2782 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2414[label="yvy23 == yvy17",fontsize=16,color="blue",shape="box"];5195[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5195[label="",style="solid", color="blue", weight=9]; 5195 -> 2680[label="",style="solid", color="blue", weight=3]; 5196[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 2681[label="",style="solid", color="blue", weight=3]; 5197[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 2682[label="",style="solid", color="blue", weight=3]; 5198[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 2683[label="",style="solid", color="blue", weight=3]; 5199[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 2684[label="",style="solid", color="blue", weight=3]; 5200[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 2685[label="",style="solid", color="blue", weight=3]; 5201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 2686[label="",style="solid", color="blue", weight=3]; 5202[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 2687[label="",style="solid", color="blue", weight=3]; 5203[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 2688[label="",style="solid", color="blue", weight=3]; 5204[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 2689[label="",style="solid", color="blue", weight=3]; 5205[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 2690[label="",style="solid", color="blue", weight=3]; 5206[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 2691[label="",style="solid", color="blue", weight=3]; 5207[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5207[label="",style="solid", color="blue", weight=9]; 5207 -> 2692[label="",style="solid", color="blue", weight=3]; 5208[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 2693[label="",style="solid", color="blue", weight=3]; 2415[label="yvy24 == yvy18",fontsize=16,color="blue",shape="box"];5209[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 2694[label="",style="solid", color="blue", weight=3]; 5210[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5210[label="",style="solid", color="blue", weight=9]; 5210 -> 2695[label="",style="solid", color="blue", weight=3]; 5211[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5211[label="",style="solid", color="blue", weight=9]; 5211 -> 2696[label="",style="solid", color="blue", weight=3]; 5212[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 2697[label="",style="solid", color="blue", weight=3]; 5213[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 2698[label="",style="solid", color="blue", weight=3]; 5214[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 2699[label="",style="solid", color="blue", weight=3]; 5215[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 2700[label="",style="solid", color="blue", weight=3]; 5216[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 2701[label="",style="solid", color="blue", weight=3]; 5217[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 2702[label="",style="solid", color="blue", weight=3]; 5218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 2703[label="",style="solid", color="blue", weight=3]; 5219[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 2704[label="",style="solid", color="blue", weight=3]; 5220[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 2705[label="",style="solid", color="blue", weight=3]; 5221[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 2706[label="",style="solid", color="blue", weight=3]; 5222[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5222[label="",style="solid", color="blue", weight=9]; 5222 -> 2707[label="",style="solid", color="blue", weight=3]; 1393[label="FiniteMap.Branch (yvy400,yvy401) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1393 -> 1797[label="",style="dashed", color="green", weight=3]; 1394[label="(yvy400,yvy401)",fontsize=16,color="green",shape="box"];1395[label="yvy54",fontsize=16,color="green",shape="box"];1396[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1396 -> 1798[label="",style="solid", color="black", weight=3]; 1397[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1397 -> 1799[label="",style="solid", color="black", weight=3]; 1398[label="EQ",fontsize=16,color="green",shape="box"];1399[label="GT",fontsize=16,color="green",shape="box"];1400[label="EQ",fontsize=16,color="green",shape="box"];1804[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1804 -> 1855[label="",style="solid", color="black", weight=3]; 1805[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1805 -> 1856[label="",style="solid", color="black", weight=3]; 1806[label="primCmpInt (Pos yvy1390) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5223[label="yvy1390/Succ yvy13900",fontsize=10,color="white",style="solid",shape="box"];1806 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 1857[label="",style="solid", color="burlywood", weight=3]; 5224[label="yvy1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1806 -> 5224[label="",style="solid", color="burlywood", weight=9]; 5224 -> 1858[label="",style="solid", color="burlywood", weight=3]; 1807[label="primCmpInt (Neg yvy1390) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5225[label="yvy1390/Succ yvy13900",fontsize=10,color="white",style="solid",shape="box"];1807 -> 5225[label="",style="solid", color="burlywood", weight=9]; 5225 -> 1859[label="",style="solid", color="burlywood", weight=3]; 5226[label="yvy1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1807 -> 5226[label="",style="solid", color="burlywood", weight=9]; 5226 -> 1860[label="",style="solid", color="burlywood", weight=3]; 4638[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4639[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4640[label="yvy40",fontsize=16,color="green",shape="box"];4641[label="yvy41",fontsize=16,color="green",shape="box"];4642[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4637[label="FiniteMap.mkBranch (Pos (Succ yvy260)) yvy261 yvy262 yvy263 yvy264",fontsize=16,color="black",shape="triangle"];4637 -> 4713[label="",style="solid", color="black", weight=3]; 1632[label="LT",fontsize=16,color="green",shape="box"];1633 -> 1675[label="",style="dashed", color="red", weight=0]; 1633[label="compare (FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1633 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1634 -> 2065[label="",style="dashed", color="red", weight=0]; 1634[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 (FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];1634 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1635 -> 4637[label="",style="dashed", color="red", weight=0]; 1635[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy82 yvy54",fontsize=16,color="magenta"];1635 -> 4653[label="",style="dashed", color="magenta", weight=3]; 1635 -> 4654[label="",style="dashed", color="magenta", weight=3]; 1635 -> 4655[label="",style="dashed", color="magenta", weight=3]; 1635 -> 4656[label="",style="dashed", color="magenta", weight=3]; 1635 -> 4657[label="",style="dashed", color="magenta", weight=3]; 1636[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1636 -> 1867[label="",style="solid", color="black", weight=3]; 1637[label="LT",fontsize=16,color="green",shape="box"];1638[label="EQ",fontsize=16,color="green",shape="box"];1639[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1639 -> 1868[label="",style="solid", color="black", weight=3]; 1640[label="EQ",fontsize=16,color="green",shape="box"];1873[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1873 -> 1958[label="",style="solid", color="black", weight=3]; 1874 -> 1805[label="",style="dashed", color="red", weight=0]; 1874[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1875[label="primCmpInt (Pos yvy1430) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5227[label="yvy1430/Succ yvy14300",fontsize=10,color="white",style="solid",shape="box"];1875 -> 5227[label="",style="solid", color="burlywood", weight=9]; 5227 -> 1959[label="",style="solid", color="burlywood", weight=3]; 5228[label="yvy1430/Zero",fontsize=10,color="white",style="solid",shape="box"];1875 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 1960[label="",style="solid", color="burlywood", weight=3]; 1876[label="primCmpInt (Neg yvy1430) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5229[label="yvy1430/Succ yvy14300",fontsize=10,color="white",style="solid",shape="box"];1876 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 1961[label="",style="solid", color="burlywood", weight=3]; 5230[label="yvy1430/Zero",fontsize=10,color="white",style="solid",shape="box"];1876 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 1962[label="",style="solid", color="burlywood", weight=3]; 4643[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4644[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4645[label="yvy40",fontsize=16,color="green",shape="box"];4646[label="yvy41",fontsize=16,color="green",shape="box"];4647[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];3455[label="yvy3001",fontsize=16,color="green",shape="box"];3456[label="yvy4001",fontsize=16,color="green",shape="box"];3457[label="yvy3001",fontsize=16,color="green",shape="box"];3458[label="yvy4001",fontsize=16,color="green",shape="box"];3459[label="yvy3001",fontsize=16,color="green",shape="box"];3460[label="yvy4001",fontsize=16,color="green",shape="box"];3461[label="yvy3001",fontsize=16,color="green",shape="box"];3462[label="yvy4001",fontsize=16,color="green",shape="box"];3463[label="yvy3001",fontsize=16,color="green",shape="box"];3464[label="yvy4001",fontsize=16,color="green",shape="box"];3465[label="yvy3001",fontsize=16,color="green",shape="box"];3466[label="yvy4001",fontsize=16,color="green",shape="box"];3467[label="yvy3001",fontsize=16,color="green",shape="box"];3468[label="yvy4001",fontsize=16,color="green",shape="box"];3469[label="yvy3001",fontsize=16,color="green",shape="box"];3470[label="yvy4001",fontsize=16,color="green",shape="box"];3471[label="yvy3001",fontsize=16,color="green",shape="box"];3472[label="yvy4001",fontsize=16,color="green",shape="box"];3473[label="yvy3001",fontsize=16,color="green",shape="box"];3474[label="yvy4001",fontsize=16,color="green",shape="box"];3475[label="yvy3001",fontsize=16,color="green",shape="box"];3476[label="yvy4001",fontsize=16,color="green",shape="box"];3477[label="yvy3001",fontsize=16,color="green",shape="box"];3478[label="yvy4001",fontsize=16,color="green",shape="box"];3479[label="yvy3001",fontsize=16,color="green",shape="box"];3480[label="yvy4001",fontsize=16,color="green",shape="box"];3481[label="yvy3001",fontsize=16,color="green",shape="box"];3482[label="yvy4001",fontsize=16,color="green",shape="box"];3483[label="yvy3002",fontsize=16,color="green",shape="box"];3484[label="yvy4002",fontsize=16,color="green",shape="box"];3485[label="yvy3002",fontsize=16,color="green",shape="box"];3486[label="yvy4002",fontsize=16,color="green",shape="box"];3487[label="yvy3002",fontsize=16,color="green",shape="box"];3488[label="yvy4002",fontsize=16,color="green",shape="box"];3489[label="yvy3002",fontsize=16,color="green",shape="box"];3490[label="yvy4002",fontsize=16,color="green",shape="box"];3491[label="yvy3002",fontsize=16,color="green",shape="box"];3492[label="yvy4002",fontsize=16,color="green",shape="box"];3493[label="yvy3002",fontsize=16,color="green",shape="box"];3494[label="yvy4002",fontsize=16,color="green",shape="box"];3495[label="yvy3002",fontsize=16,color="green",shape="box"];3496[label="yvy4002",fontsize=16,color="green",shape="box"];3497[label="yvy3002",fontsize=16,color="green",shape="box"];3498[label="yvy4002",fontsize=16,color="green",shape="box"];3499[label="yvy3002",fontsize=16,color="green",shape="box"];3500[label="yvy4002",fontsize=16,color="green",shape="box"];3501[label="yvy3002",fontsize=16,color="green",shape="box"];3502[label="yvy4002",fontsize=16,color="green",shape="box"];3503[label="yvy3002",fontsize=16,color="green",shape="box"];3504[label="yvy4002",fontsize=16,color="green",shape="box"];3505[label="yvy3002",fontsize=16,color="green",shape="box"];3506[label="yvy4002",fontsize=16,color="green",shape="box"];3507[label="yvy3002",fontsize=16,color="green",shape="box"];3508[label="yvy4002",fontsize=16,color="green",shape="box"];3509[label="yvy3002",fontsize=16,color="green",shape="box"];3510[label="yvy4002",fontsize=16,color="green",shape="box"];3511[label="yvy40000",fontsize=16,color="green",shape="box"];3512[label="yvy30000",fontsize=16,color="green",shape="box"];3513[label="yvy40000",fontsize=16,color="green",shape="box"];3514[label="yvy30000",fontsize=16,color="green",shape="box"];1593[label="primMulInt yvy4011 yvy3010",fontsize=16,color="burlywood",shape="triangle"];5231[label="yvy4011/Pos yvy40110",fontsize=10,color="white",style="solid",shape="box"];1593 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 1791[label="",style="solid", color="burlywood", weight=3]; 5232[label="yvy4011/Neg yvy40110",fontsize=10,color="white",style="solid",shape="box"];1593 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 1792[label="",style="solid", color="burlywood", weight=3]; 3515 -> 2933[label="",style="dashed", color="red", weight=0]; 3515[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3515 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3516[label="False",fontsize=16,color="green",shape="box"];3517[label="False",fontsize=16,color="green",shape="box"];3518[label="True",fontsize=16,color="green",shape="box"];2934[label="LT",fontsize=16,color="green",shape="box"];2935[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2935 -> 3189[label="",style="solid", color="black", weight=3]; 2936[label="LT",fontsize=16,color="green",shape="box"];2937[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2937 -> 3190[label="",style="solid", color="black", weight=3]; 2938[label="LT",fontsize=16,color="green",shape="box"];2939[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2939 -> 3191[label="",style="solid", color="black", weight=3]; 2940[label="LT",fontsize=16,color="green",shape="box"];2941[label="compare yvy700 yvy720",fontsize=16,color="burlywood",shape="triangle"];5233[label="yvy700/Integer yvy7000",fontsize=10,color="white",style="solid",shape="box"];2941 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 3192[label="",style="solid", color="burlywood", weight=3]; 2942[label="LT",fontsize=16,color="green",shape="box"];2943[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2943 -> 3193[label="",style="solid", color="black", weight=3]; 2944[label="LT",fontsize=16,color="green",shape="box"];2945[label="compare yvy700 yvy720",fontsize=16,color="burlywood",shape="triangle"];5234[label="yvy700/()",fontsize=10,color="white",style="solid",shape="box"];2945 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 3194[label="",style="solid", color="burlywood", weight=3]; 2946[label="LT",fontsize=16,color="green",shape="box"];2947[label="compare yvy700 yvy720",fontsize=16,color="burlywood",shape="triangle"];5235[label="yvy700/yvy7000 :% yvy7001",fontsize=10,color="white",style="solid",shape="box"];2947 -> 5235[label="",style="solid", color="burlywood", weight=9]; 5235 -> 3195[label="",style="solid", color="burlywood", weight=3]; 2948[label="LT",fontsize=16,color="green",shape="box"];2949[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2949 -> 3196[label="",style="solid", color="black", weight=3]; 2950[label="LT",fontsize=16,color="green",shape="box"];2951[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2951 -> 3197[label="",style="solid", color="black", weight=3]; 2952[label="LT",fontsize=16,color="green",shape="box"];2953 -> 1675[label="",style="dashed", color="red", weight=0]; 2953[label="compare yvy700 yvy720",fontsize=16,color="magenta"];2953 -> 3198[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3199[label="",style="dashed", color="magenta", weight=3]; 2954[label="LT",fontsize=16,color="green",shape="box"];2955[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2955 -> 3200[label="",style="solid", color="black", weight=3]; 2956[label="LT",fontsize=16,color="green",shape="box"];2957[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2957 -> 3201[label="",style="solid", color="black", weight=3]; 2958[label="LT",fontsize=16,color="green",shape="box"];2959[label="compare yvy700 yvy720",fontsize=16,color="burlywood",shape="triangle"];5236[label="yvy700/yvy7000 : yvy7001",fontsize=10,color="white",style="solid",shape="box"];2959 -> 5236[label="",style="solid", color="burlywood", weight=9]; 5236 -> 3202[label="",style="solid", color="burlywood", weight=3]; 5237[label="yvy700/[]",fontsize=10,color="white",style="solid",shape="box"];2959 -> 5237[label="",style="solid", color="burlywood", weight=9]; 5237 -> 3203[label="",style="solid", color="burlywood", weight=3]; 2960[label="LT",fontsize=16,color="green",shape="box"];2961[label="compare yvy700 yvy720",fontsize=16,color="black",shape="triangle"];2961 -> 3204[label="",style="solid", color="black", weight=3]; 2962[label="yvy720",fontsize=16,color="green",shape="box"];2963[label="yvy700",fontsize=16,color="green",shape="box"];2964[label="yvy720",fontsize=16,color="green",shape="box"];2965[label="yvy700",fontsize=16,color="green",shape="box"];2966[label="yvy720",fontsize=16,color="green",shape="box"];2967[label="yvy700",fontsize=16,color="green",shape="box"];2968[label="yvy720",fontsize=16,color="green",shape="box"];2969[label="yvy700",fontsize=16,color="green",shape="box"];2970[label="yvy720",fontsize=16,color="green",shape="box"];2971[label="yvy700",fontsize=16,color="green",shape="box"];2972[label="yvy720",fontsize=16,color="green",shape="box"];2973[label="yvy700",fontsize=16,color="green",shape="box"];2974[label="yvy720",fontsize=16,color="green",shape="box"];2975[label="yvy700",fontsize=16,color="green",shape="box"];2976[label="yvy720",fontsize=16,color="green",shape="box"];2977[label="yvy700",fontsize=16,color="green",shape="box"];2978[label="yvy720",fontsize=16,color="green",shape="box"];2979[label="yvy700",fontsize=16,color="green",shape="box"];2980[label="yvy720",fontsize=16,color="green",shape="box"];2981[label="yvy700",fontsize=16,color="green",shape="box"];2982[label="yvy720",fontsize=16,color="green",shape="box"];2983[label="yvy700",fontsize=16,color="green",shape="box"];2984[label="yvy720",fontsize=16,color="green",shape="box"];2985[label="yvy700",fontsize=16,color="green",shape="box"];2986[label="yvy720",fontsize=16,color="green",shape="box"];2987[label="yvy700",fontsize=16,color="green",shape="box"];2988[label="yvy720",fontsize=16,color="green",shape="box"];2989[label="yvy700",fontsize=16,color="green",shape="box"];2990[label="Left yvy7010 <= yvy721",fontsize=16,color="burlywood",shape="box"];5238[label="yvy721/Left yvy7210",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 3205[label="",style="solid", color="burlywood", weight=3]; 5239[label="yvy721/Right yvy7210",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 3206[label="",style="solid", color="burlywood", weight=3]; 2991[label="Right yvy7010 <= yvy721",fontsize=16,color="burlywood",shape="box"];5240[label="yvy721/Left yvy7210",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 3207[label="",style="solid", color="burlywood", weight=3]; 5241[label="yvy721/Right yvy7210",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 3208[label="",style="solid", color="burlywood", weight=3]; 2992 -> 3209[label="",style="dashed", color="red", weight=0]; 2992[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];2992 -> 3210[label="",style="dashed", color="magenta", weight=3]; 2993[label="(yvy7010,yvy7011,yvy7012) <= yvy721",fontsize=16,color="burlywood",shape="box"];5242[label="yvy721/(yvy7210,yvy7211,yvy7212)",fontsize=10,color="white",style="solid",shape="box"];2993 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 3390[label="",style="solid", color="burlywood", weight=3]; 2994 -> 3209[label="",style="dashed", color="red", weight=0]; 2994[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];2994 -> 3211[label="",style="dashed", color="magenta", weight=3]; 2995[label="(yvy7010,yvy7011) <= yvy721",fontsize=16,color="burlywood",shape="box"];5243[label="yvy721/(yvy7210,yvy7211)",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 3391[label="",style="solid", color="burlywood", weight=3]; 2996 -> 3209[label="",style="dashed", color="red", weight=0]; 2996[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];2996 -> 3212[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3209[label="",style="dashed", color="red", weight=0]; 2997[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];2997 -> 3213[label="",style="dashed", color="magenta", weight=3]; 2998[label="False <= yvy721",fontsize=16,color="burlywood",shape="box"];5244[label="yvy721/False",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 3392[label="",style="solid", color="burlywood", weight=3]; 5245[label="yvy721/True",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 3393[label="",style="solid", color="burlywood", weight=3]; 2999[label="True <= yvy721",fontsize=16,color="burlywood",shape="box"];5246[label="yvy721/False",fontsize=10,color="white",style="solid",shape="box"];2999 -> 5246[label="",style="solid", color="burlywood", weight=9]; 5246 -> 3394[label="",style="solid", color="burlywood", weight=3]; 5247[label="yvy721/True",fontsize=10,color="white",style="solid",shape="box"];2999 -> 5247[label="",style="solid", color="burlywood", weight=9]; 5247 -> 3395[label="",style="solid", color="burlywood", weight=3]; 3000[label="LT <= yvy721",fontsize=16,color="burlywood",shape="box"];5248[label="yvy721/LT",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 3396[label="",style="solid", color="burlywood", weight=3]; 5249[label="yvy721/EQ",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 3397[label="",style="solid", color="burlywood", weight=3]; 5250[label="yvy721/GT",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 3398[label="",style="solid", color="burlywood", weight=3]; 3001[label="EQ <= yvy721",fontsize=16,color="burlywood",shape="box"];5251[label="yvy721/LT",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 3399[label="",style="solid", color="burlywood", weight=3]; 5252[label="yvy721/EQ",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 3400[label="",style="solid", color="burlywood", weight=3]; 5253[label="yvy721/GT",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 3401[label="",style="solid", color="burlywood", weight=3]; 3002[label="GT <= yvy721",fontsize=16,color="burlywood",shape="box"];5254[label="yvy721/LT",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 3402[label="",style="solid", color="burlywood", weight=3]; 5255[label="yvy721/EQ",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 3403[label="",style="solid", color="burlywood", weight=3]; 5256[label="yvy721/GT",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 3404[label="",style="solid", color="burlywood", weight=3]; 3003 -> 3209[label="",style="dashed", color="red", weight=0]; 3003[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];3003 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3209[label="",style="dashed", color="red", weight=0]; 3004[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];3004 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3005[label="Nothing <= yvy721",fontsize=16,color="burlywood",shape="box"];5257[label="yvy721/Nothing",fontsize=10,color="white",style="solid",shape="box"];3005 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 3405[label="",style="solid", color="burlywood", weight=3]; 5258[label="yvy721/Just yvy7210",fontsize=10,color="white",style="solid",shape="box"];3005 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 3406[label="",style="solid", color="burlywood", weight=3]; 3006[label="Just yvy7010 <= yvy721",fontsize=16,color="burlywood",shape="box"];5259[label="yvy721/Nothing",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 3407[label="",style="solid", color="burlywood", weight=3]; 5260[label="yvy721/Just yvy7210",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 3408[label="",style="solid", color="burlywood", weight=3]; 3007 -> 3209[label="",style="dashed", color="red", weight=0]; 3007[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];3007 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3209[label="",style="dashed", color="red", weight=0]; 3008[label="compare yvy701 yvy721 /= GT",fontsize=16,color="magenta"];3008 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3009[label="compare1 (yvy172,yvy173) (yvy174,yvy175) False",fontsize=16,color="black",shape="box"];3009 -> 3409[label="",style="solid", color="black", weight=3]; 3010[label="compare1 (yvy172,yvy173) (yvy174,yvy175) True",fontsize=16,color="black",shape="box"];3010 -> 3410[label="",style="solid", color="black", weight=3]; 3011[label="True",fontsize=16,color="green",shape="box"];2680 -> 2416[label="",style="dashed", color="red", weight=0]; 2680[label="yvy23 == yvy17",fontsize=16,color="magenta"];2680 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2417[label="",style="dashed", color="red", weight=0]; 2681[label="yvy23 == yvy17",fontsize=16,color="magenta"];2681 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2418[label="",style="dashed", color="red", weight=0]; 2682[label="yvy23 == yvy17",fontsize=16,color="magenta"];2682 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2419[label="",style="dashed", color="red", weight=0]; 2683[label="yvy23 == yvy17",fontsize=16,color="magenta"];2683 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2420[label="",style="dashed", color="red", weight=0]; 2684[label="yvy23 == yvy17",fontsize=16,color="magenta"];2684 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2685 -> 96[label="",style="dashed", color="red", weight=0]; 2685[label="yvy23 == yvy17",fontsize=16,color="magenta"];2685 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2422[label="",style="dashed", color="red", weight=0]; 2686[label="yvy23 == yvy17",fontsize=16,color="magenta"];2686 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2423[label="",style="dashed", color="red", weight=0]; 2687[label="yvy23 == yvy17",fontsize=16,color="magenta"];2687 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2424[label="",style="dashed", color="red", weight=0]; 2688[label="yvy23 == yvy17",fontsize=16,color="magenta"];2688 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2425[label="",style="dashed", color="red", weight=0]; 2689[label="yvy23 == yvy17",fontsize=16,color="magenta"];2689 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2426[label="",style="dashed", color="red", weight=0]; 2690[label="yvy23 == yvy17",fontsize=16,color="magenta"];2690 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2427[label="",style="dashed", color="red", weight=0]; 2691[label="yvy23 == yvy17",fontsize=16,color="magenta"];2691 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2428[label="",style="dashed", color="red", weight=0]; 2692[label="yvy23 == yvy17",fontsize=16,color="magenta"];2692 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2429[label="",style="dashed", color="red", weight=0]; 2693[label="yvy23 == yvy17",fontsize=16,color="magenta"];2693 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2416[label="",style="dashed", color="red", weight=0]; 2694[label="yvy24 == yvy18",fontsize=16,color="magenta"];2694 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2417[label="",style="dashed", color="red", weight=0]; 2695[label="yvy24 == yvy18",fontsize=16,color="magenta"];2695 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2418[label="",style="dashed", color="red", weight=0]; 2696[label="yvy24 == yvy18",fontsize=16,color="magenta"];2696 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2419[label="",style="dashed", color="red", weight=0]; 2697[label="yvy24 == yvy18",fontsize=16,color="magenta"];2697 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2420[label="",style="dashed", color="red", weight=0]; 2698[label="yvy24 == yvy18",fontsize=16,color="magenta"];2698 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2699 -> 96[label="",style="dashed", color="red", weight=0]; 2699[label="yvy24 == yvy18",fontsize=16,color="magenta"];2699 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2422[label="",style="dashed", color="red", weight=0]; 2700[label="yvy24 == yvy18",fontsize=16,color="magenta"];2700 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2423[label="",style="dashed", color="red", weight=0]; 2701[label="yvy24 == yvy18",fontsize=16,color="magenta"];2701 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2424[label="",style="dashed", color="red", weight=0]; 2702[label="yvy24 == yvy18",fontsize=16,color="magenta"];2702 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2425[label="",style="dashed", color="red", weight=0]; 2703[label="yvy24 == yvy18",fontsize=16,color="magenta"];2703 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2426[label="",style="dashed", color="red", weight=0]; 2704[label="yvy24 == yvy18",fontsize=16,color="magenta"];2704 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2427[label="",style="dashed", color="red", weight=0]; 2705[label="yvy24 == yvy18",fontsize=16,color="magenta"];2705 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2428[label="",style="dashed", color="red", weight=0]; 2706[label="yvy24 == yvy18",fontsize=16,color="magenta"];2706 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2429[label="",style="dashed", color="red", weight=0]; 2707[label="yvy24 == yvy18",fontsize=16,color="magenta"];2707 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2838[label="",style="dashed", color="magenta", weight=3]; 1797[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="box"];1797 -> 1942[label="",style="solid", color="black", weight=3]; 1798 -> 1817[label="",style="dashed", color="red", weight=0]; 1798[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1798 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1798 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1799[label="LT",fontsize=16,color="green",shape="box"];1855[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];1855 -> 1945[label="",style="solid", color="black", weight=3]; 1856[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1857[label="primCmpInt (Pos (Succ yvy13900)) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1857 -> 1946[label="",style="solid", color="black", weight=3]; 1858[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1858 -> 1947[label="",style="solid", color="black", weight=3]; 1859[label="primCmpInt (Neg (Succ yvy13900)) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1859 -> 1948[label="",style="solid", color="black", weight=3]; 1860[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1860 -> 1949[label="",style="solid", color="black", weight=3]; 4713[label="FiniteMap.mkBranchResult yvy261 yvy262 yvy263 yvy264",fontsize=16,color="black",shape="box"];4713 -> 4744[label="",style="solid", color="black", weight=3]; 1862[label="FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="box"];1862 -> 1951[label="",style="solid", color="black", weight=3]; 1863[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1675[label="compare yvy70 yvy72",fontsize=16,color="black",shape="triangle"];1675 -> 1817[label="",style="solid", color="black", weight=3]; 2066 -> 3448[label="",style="dashed", color="red", weight=0]; 2066[label="FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2066 -> 3449[label="",style="dashed", color="magenta", weight=3]; 2066 -> 3450[label="",style="dashed", color="magenta", weight=3]; 2065[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 yvy154",fontsize=16,color="burlywood",shape="triangle"];5261[label="yvy154/False",fontsize=10,color="white",style="solid",shape="box"];2065 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 2165[label="",style="solid", color="burlywood", weight=3]; 5262[label="yvy154/True",fontsize=10,color="white",style="solid",shape="box"];2065 -> 5262[label="",style="solid", color="burlywood", weight=9]; 5262 -> 2166[label="",style="solid", color="burlywood", weight=3]; 4653[label="yvy82",fontsize=16,color="green",shape="box"];4654[label="yvy54",fontsize=16,color="green",shape="box"];4655[label="yvy50",fontsize=16,color="green",shape="box"];4656[label="yvy51",fontsize=16,color="green",shape="box"];4657[label="Zero",fontsize=16,color="green",shape="box"];1867 -> 1817[label="",style="dashed", color="red", weight=0]; 1867[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];1867 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1867 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1868[label="GT",fontsize=16,color="green",shape="box"];1958 -> 1855[label="",style="dashed", color="red", weight=0]; 1958[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1959[label="primCmpInt (Pos (Succ yvy14300)) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1959 -> 1970[label="",style="solid", color="black", weight=3]; 1960[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1960 -> 1971[label="",style="solid", color="black", weight=3]; 1961[label="primCmpInt (Neg (Succ yvy14300)) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1961 -> 1972[label="",style="solid", color="black", weight=3]; 1962[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1962 -> 1973[label="",style="solid", color="black", weight=3]; 1791[label="primMulInt (Pos yvy40110) yvy3010",fontsize=16,color="burlywood",shape="box"];5263[label="yvy3010/Pos yvy30100",fontsize=10,color="white",style="solid",shape="box"];1791 -> 5263[label="",style="solid", color="burlywood", weight=9]; 5263 -> 1878[label="",style="solid", color="burlywood", weight=3]; 5264[label="yvy3010/Neg yvy30100",fontsize=10,color="white",style="solid",shape="box"];1791 -> 5264[label="",style="solid", color="burlywood", weight=9]; 5264 -> 1879[label="",style="solid", color="burlywood", weight=3]; 1792[label="primMulInt (Neg yvy40110) yvy3010",fontsize=16,color="burlywood",shape="box"];5265[label="yvy3010/Pos yvy30100",fontsize=10,color="white",style="solid",shape="box"];1792 -> 5265[label="",style="solid", color="burlywood", weight=9]; 5265 -> 1880[label="",style="solid", color="burlywood", weight=3]; 5266[label="yvy3010/Neg yvy30100",fontsize=10,color="white",style="solid",shape="box"];1792 -> 5266[label="",style="solid", color="burlywood", weight=9]; 5266 -> 1881[label="",style="solid", color="burlywood", weight=3]; 3545[label="yvy40000",fontsize=16,color="green",shape="box"];3546[label="yvy30000",fontsize=16,color="green",shape="box"];3189[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3189 -> 3411[label="",style="solid", color="black", weight=3]; 3190[label="primCmpChar yvy700 yvy720",fontsize=16,color="burlywood",shape="box"];5267[label="yvy700/Char yvy7000",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5267[label="",style="solid", color="burlywood", weight=9]; 5267 -> 3412[label="",style="solid", color="burlywood", weight=3]; 3191[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3191 -> 3413[label="",style="solid", color="black", weight=3]; 3192[label="compare (Integer yvy7000) yvy720",fontsize=16,color="burlywood",shape="box"];5268[label="yvy720/Integer yvy7200",fontsize=10,color="white",style="solid",shape="box"];3192 -> 5268[label="",style="solid", color="burlywood", weight=9]; 5268 -> 3414[label="",style="solid", color="burlywood", weight=3]; 3193[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3193 -> 3415[label="",style="solid", color="black", weight=3]; 3194[label="compare () yvy720",fontsize=16,color="burlywood",shape="box"];5269[label="yvy720/()",fontsize=10,color="white",style="solid",shape="box"];3194 -> 5269[label="",style="solid", color="burlywood", weight=9]; 5269 -> 3416[label="",style="solid", color="burlywood", weight=3]; 3195[label="compare (yvy7000 :% yvy7001) yvy720",fontsize=16,color="burlywood",shape="box"];5270[label="yvy720/yvy7200 :% yvy7201",fontsize=10,color="white",style="solid",shape="box"];3195 -> 5270[label="",style="solid", color="burlywood", weight=9]; 5270 -> 3417[label="",style="solid", color="burlywood", weight=3]; 3196[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3196 -> 3418[label="",style="solid", color="black", weight=3]; 3197[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3197 -> 3419[label="",style="solid", color="black", weight=3]; 3198[label="yvy700",fontsize=16,color="green",shape="box"];3199[label="yvy720",fontsize=16,color="green",shape="box"];3200[label="primCmpFloat yvy700 yvy720",fontsize=16,color="burlywood",shape="box"];5271[label="yvy700/Float yvy7000 yvy7001",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5271[label="",style="solid", color="burlywood", weight=9]; 5271 -> 3420[label="",style="solid", color="burlywood", weight=3]; 3201[label="compare3 yvy700 yvy720",fontsize=16,color="black",shape="box"];3201 -> 3421[label="",style="solid", color="black", weight=3]; 3202[label="compare (yvy7000 : yvy7001) yvy720",fontsize=16,color="burlywood",shape="box"];5272[label="yvy720/yvy7200 : yvy7201",fontsize=10,color="white",style="solid",shape="box"];3202 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 3422[label="",style="solid", color="burlywood", weight=3]; 5273[label="yvy720/[]",fontsize=10,color="white",style="solid",shape="box"];3202 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 3423[label="",style="solid", color="burlywood", weight=3]; 3203[label="compare [] yvy720",fontsize=16,color="burlywood",shape="box"];5274[label="yvy720/yvy7200 : yvy7201",fontsize=10,color="white",style="solid",shape="box"];3203 -> 5274[label="",style="solid", color="burlywood", weight=9]; 5274 -> 3424[label="",style="solid", color="burlywood", weight=3]; 5275[label="yvy720/[]",fontsize=10,color="white",style="solid",shape="box"];3203 -> 5275[label="",style="solid", color="burlywood", weight=9]; 5275 -> 3425[label="",style="solid", color="burlywood", weight=3]; 3204[label="primCmpDouble yvy700 yvy720",fontsize=16,color="burlywood",shape="box"];5276[label="yvy700/Double yvy7000 yvy7001",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5276[label="",style="solid", color="burlywood", weight=9]; 5276 -> 3426[label="",style="solid", color="burlywood", weight=3]; 3205[label="Left yvy7010 <= Left yvy7210",fontsize=16,color="black",shape="box"];3205 -> 3427[label="",style="solid", color="black", weight=3]; 3206[label="Left yvy7010 <= Right yvy7210",fontsize=16,color="black",shape="box"];3206 -> 3428[label="",style="solid", color="black", weight=3]; 3207[label="Right yvy7010 <= Left yvy7210",fontsize=16,color="black",shape="box"];3207 -> 3429[label="",style="solid", color="black", weight=3]; 3208[label="Right yvy7010 <= Right yvy7210",fontsize=16,color="black",shape="box"];3208 -> 3430[label="",style="solid", color="black", weight=3]; 3210 -> 2937[label="",style="dashed", color="red", weight=0]; 3210[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3210 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3209[label="yvy183 /= GT",fontsize=16,color="black",shape="triangle"];3209 -> 3433[label="",style="solid", color="black", weight=3]; 3390[label="(yvy7010,yvy7011,yvy7012) <= (yvy7210,yvy7211,yvy7212)",fontsize=16,color="black",shape="box"];3390 -> 3519[label="",style="solid", color="black", weight=3]; 3211 -> 2941[label="",style="dashed", color="red", weight=0]; 3211[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3211 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3391[label="(yvy7010,yvy7011) <= (yvy7210,yvy7211)",fontsize=16,color="black",shape="box"];3391 -> 3520[label="",style="solid", color="black", weight=3]; 3212 -> 2945[label="",style="dashed", color="red", weight=0]; 3212[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3212 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3213 -> 2947[label="",style="dashed", color="red", weight=0]; 3213[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3213 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3392[label="False <= False",fontsize=16,color="black",shape="box"];3392 -> 3521[label="",style="solid", color="black", weight=3]; 3393[label="False <= True",fontsize=16,color="black",shape="box"];3393 -> 3522[label="",style="solid", color="black", weight=3]; 3394[label="True <= False",fontsize=16,color="black",shape="box"];3394 -> 3523[label="",style="solid", color="black", weight=3]; 3395[label="True <= True",fontsize=16,color="black",shape="box"];3395 -> 3524[label="",style="solid", color="black", weight=3]; 3396[label="LT <= LT",fontsize=16,color="black",shape="box"];3396 -> 3525[label="",style="solid", color="black", weight=3]; 3397[label="LT <= EQ",fontsize=16,color="black",shape="box"];3397 -> 3526[label="",style="solid", color="black", weight=3]; 3398[label="LT <= GT",fontsize=16,color="black",shape="box"];3398 -> 3527[label="",style="solid", color="black", weight=3]; 3399[label="EQ <= LT",fontsize=16,color="black",shape="box"];3399 -> 3528[label="",style="solid", color="black", weight=3]; 3400[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3400 -> 3529[label="",style="solid", color="black", weight=3]; 3401[label="EQ <= GT",fontsize=16,color="black",shape="box"];3401 -> 3530[label="",style="solid", color="black", weight=3]; 3402[label="GT <= LT",fontsize=16,color="black",shape="box"];3402 -> 3531[label="",style="solid", color="black", weight=3]; 3403[label="GT <= EQ",fontsize=16,color="black",shape="box"];3403 -> 3532[label="",style="solid", color="black", weight=3]; 3404[label="GT <= GT",fontsize=16,color="black",shape="box"];3404 -> 3533[label="",style="solid", color="black", weight=3]; 3214 -> 1675[label="",style="dashed", color="red", weight=0]; 3214[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3214 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3215 -> 2955[label="",style="dashed", color="red", weight=0]; 3215[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3215 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3405[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3405 -> 3534[label="",style="solid", color="black", weight=3]; 3406[label="Nothing <= Just yvy7210",fontsize=16,color="black",shape="box"];3406 -> 3535[label="",style="solid", color="black", weight=3]; 3407[label="Just yvy7010 <= Nothing",fontsize=16,color="black",shape="box"];3407 -> 3536[label="",style="solid", color="black", weight=3]; 3408[label="Just yvy7010 <= Just yvy7210",fontsize=16,color="black",shape="box"];3408 -> 3537[label="",style="solid", color="black", weight=3]; 3216 -> 2959[label="",style="dashed", color="red", weight=0]; 3216[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3216 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3217 -> 2961[label="",style="dashed", color="red", weight=0]; 3217[label="compare yvy701 yvy721",fontsize=16,color="magenta"];3217 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3409[label="compare0 (yvy172,yvy173) (yvy174,yvy175) otherwise",fontsize=16,color="black",shape="box"];3409 -> 3538[label="",style="solid", color="black", weight=3]; 3410[label="LT",fontsize=16,color="green",shape="box"];2783[label="yvy17",fontsize=16,color="green",shape="box"];2784[label="yvy23",fontsize=16,color="green",shape="box"];2785[label="yvy17",fontsize=16,color="green",shape="box"];2786[label="yvy23",fontsize=16,color="green",shape="box"];2787[label="yvy17",fontsize=16,color="green",shape="box"];2788[label="yvy23",fontsize=16,color="green",shape="box"];2789[label="yvy17",fontsize=16,color="green",shape="box"];2790[label="yvy23",fontsize=16,color="green",shape="box"];2791[label="yvy17",fontsize=16,color="green",shape="box"];2792[label="yvy23",fontsize=16,color="green",shape="box"];2793[label="yvy17",fontsize=16,color="green",shape="box"];2794[label="yvy23",fontsize=16,color="green",shape="box"];2795[label="yvy17",fontsize=16,color="green",shape="box"];2796[label="yvy23",fontsize=16,color="green",shape="box"];2797[label="yvy17",fontsize=16,color="green",shape="box"];2798[label="yvy23",fontsize=16,color="green",shape="box"];2799[label="yvy17",fontsize=16,color="green",shape="box"];2800[label="yvy23",fontsize=16,color="green",shape="box"];2801[label="yvy17",fontsize=16,color="green",shape="box"];2802[label="yvy23",fontsize=16,color="green",shape="box"];2803[label="yvy17",fontsize=16,color="green",shape="box"];2804[label="yvy23",fontsize=16,color="green",shape="box"];2805[label="yvy17",fontsize=16,color="green",shape="box"];2806[label="yvy23",fontsize=16,color="green",shape="box"];2807[label="yvy17",fontsize=16,color="green",shape="box"];2808[label="yvy23",fontsize=16,color="green",shape="box"];2809[label="yvy17",fontsize=16,color="green",shape="box"];2810[label="yvy23",fontsize=16,color="green",shape="box"];2811[label="yvy18",fontsize=16,color="green",shape="box"];2812[label="yvy24",fontsize=16,color="green",shape="box"];2813[label="yvy18",fontsize=16,color="green",shape="box"];2814[label="yvy24",fontsize=16,color="green",shape="box"];2815[label="yvy18",fontsize=16,color="green",shape="box"];2816[label="yvy24",fontsize=16,color="green",shape="box"];2817[label="yvy18",fontsize=16,color="green",shape="box"];2818[label="yvy24",fontsize=16,color="green",shape="box"];2819[label="yvy18",fontsize=16,color="green",shape="box"];2820[label="yvy24",fontsize=16,color="green",shape="box"];2821[label="yvy18",fontsize=16,color="green",shape="box"];2822[label="yvy24",fontsize=16,color="green",shape="box"];2823[label="yvy18",fontsize=16,color="green",shape="box"];2824[label="yvy24",fontsize=16,color="green",shape="box"];2825[label="yvy18",fontsize=16,color="green",shape="box"];2826[label="yvy24",fontsize=16,color="green",shape="box"];2827[label="yvy18",fontsize=16,color="green",shape="box"];2828[label="yvy24",fontsize=16,color="green",shape="box"];2829[label="yvy18",fontsize=16,color="green",shape="box"];2830[label="yvy24",fontsize=16,color="green",shape="box"];2831[label="yvy18",fontsize=16,color="green",shape="box"];2832[label="yvy24",fontsize=16,color="green",shape="box"];2833[label="yvy18",fontsize=16,color="green",shape="box"];2834[label="yvy24",fontsize=16,color="green",shape="box"];2835[label="yvy18",fontsize=16,color="green",shape="box"];2836[label="yvy24",fontsize=16,color="green",shape="box"];2837[label="yvy18",fontsize=16,color="green",shape="box"];2838[label="yvy24",fontsize=16,color="green",shape="box"];1942[label="yvy41",fontsize=16,color="green",shape="box"];1943[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1943 -> 2052[label="",style="dashed", color="green", weight=3]; 1944 -> 1804[label="",style="dashed", color="red", weight=0]; 1944[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1944 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1817[label="primCmpInt yvy70 yvy72",fontsize=16,color="burlywood",shape="triangle"];5277[label="yvy70/Pos yvy700",fontsize=10,color="white",style="solid",shape="box"];1817 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 1893[label="",style="solid", color="burlywood", weight=3]; 5278[label="yvy70/Neg yvy700",fontsize=10,color="white",style="solid",shape="box"];1817 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 1894[label="",style="solid", color="burlywood", weight=3]; 1945[label="yvy52",fontsize=16,color="green",shape="box"];1946 -> 1817[label="",style="dashed", color="red", weight=0]; 1946[label="primCmpInt (Pos (Succ yvy13900)) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1946 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1817[label="",style="dashed", color="red", weight=0]; 1947[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1947 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1948 -> 1817[label="",style="dashed", color="red", weight=0]; 1948[label="primCmpInt (Neg (Succ yvy13900)) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1948 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1949 -> 1817[label="",style="dashed", color="red", weight=0]; 1949[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1949 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2061[label="",style="dashed", color="magenta", weight=3]; 4744[label="FiniteMap.Branch yvy261 yvy262 (FiniteMap.mkBranchUnbox yvy263 yvy264 yvy261 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261 + FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)) yvy263 yvy264",fontsize=16,color="green",shape="box"];4744 -> 4745[label="",style="dashed", color="green", weight=3]; 1951[label="primPlusInt (FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54) (FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54)",fontsize=16,color="black",shape="box"];1951 -> 2063[label="",style="solid", color="black", weight=3]; 3449[label="FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];3449 -> 3539[label="",style="solid", color="black", weight=3]; 3450 -> 1315[label="",style="dashed", color="red", weight=0]; 3450[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3450 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3448[label="yvy185 > yvy184",fontsize=16,color="black",shape="triangle"];3448 -> 3542[label="",style="solid", color="black", weight=3]; 2165[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 False",fontsize=16,color="black",shape="box"];2165 -> 2298[label="",style="solid", color="black", weight=3]; 2166[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 True",fontsize=16,color="black",shape="box"];2166 -> 2299[label="",style="solid", color="black", weight=3]; 1956[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1956 -> 2171[label="",style="dashed", color="green", weight=3]; 1957 -> 1873[label="",style="dashed", color="red", weight=0]; 1957[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1957 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1817[label="",style="dashed", color="red", weight=0]; 1970[label="primCmpInt (Pos (Succ yvy14300)) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1970 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1817[label="",style="dashed", color="red", weight=0]; 1971[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1971 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1817[label="",style="dashed", color="red", weight=0]; 1972[label="primCmpInt (Neg (Succ yvy14300)) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1972 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1817[label="",style="dashed", color="red", weight=0]; 1973[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64))",fontsize=16,color="magenta"];1973 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1878[label="primMulInt (Pos yvy40110) (Pos yvy30100)",fontsize=16,color="black",shape="box"];1878 -> 1964[label="",style="solid", color="black", weight=3]; 1879[label="primMulInt (Pos yvy40110) (Neg yvy30100)",fontsize=16,color="black",shape="box"];1879 -> 1965[label="",style="solid", color="black", weight=3]; 1880[label="primMulInt (Neg yvy40110) (Pos yvy30100)",fontsize=16,color="black",shape="box"];1880 -> 1966[label="",style="solid", color="black", weight=3]; 1881[label="primMulInt (Neg yvy40110) (Neg yvy30100)",fontsize=16,color="black",shape="box"];1881 -> 1967[label="",style="solid", color="black", weight=3]; 3411 -> 3543[label="",style="dashed", color="red", weight=0]; 3411[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3411 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3412[label="primCmpChar (Char yvy7000) yvy720",fontsize=16,color="burlywood",shape="box"];5279[label="yvy720/Char yvy7200",fontsize=10,color="white",style="solid",shape="box"];3412 -> 5279[label="",style="solid", color="burlywood", weight=9]; 5279 -> 3547[label="",style="solid", color="burlywood", weight=3]; 3413 -> 3548[label="",style="dashed", color="red", weight=0]; 3413[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3413 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3414[label="compare (Integer yvy7000) (Integer yvy7200)",fontsize=16,color="black",shape="box"];3414 -> 3550[label="",style="solid", color="black", weight=3]; 3415 -> 1978[label="",style="dashed", color="red", weight=0]; 3415[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3415 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3416[label="compare () ()",fontsize=16,color="black",shape="box"];3416 -> 3554[label="",style="solid", color="black", weight=3]; 3417[label="compare (yvy7000 :% yvy7001) (yvy7200 :% yvy7201)",fontsize=16,color="black",shape="box"];3417 -> 3555[label="",style="solid", color="black", weight=3]; 3418 -> 3556[label="",style="dashed", color="red", weight=0]; 3418[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3418 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3558[label="",style="dashed", color="red", weight=0]; 3419[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3419 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3420[label="primCmpFloat (Float yvy7000 yvy7001) yvy720",fontsize=16,color="burlywood",shape="box"];5280[label="yvy7001/Pos yvy70010",fontsize=10,color="white",style="solid",shape="box"];3420 -> 5280[label="",style="solid", color="burlywood", weight=9]; 5280 -> 3560[label="",style="solid", color="burlywood", weight=3]; 5281[label="yvy7001/Neg yvy70010",fontsize=10,color="white",style="solid",shape="box"];3420 -> 5281[label="",style="solid", color="burlywood", weight=9]; 5281 -> 3561[label="",style="solid", color="burlywood", weight=3]; 3421 -> 3562[label="",style="dashed", color="red", weight=0]; 3421[label="compare2 yvy700 yvy720 (yvy700 == yvy720)",fontsize=16,color="magenta"];3421 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3422[label="compare (yvy7000 : yvy7001) (yvy7200 : yvy7201)",fontsize=16,color="black",shape="box"];3422 -> 3564[label="",style="solid", color="black", weight=3]; 3423[label="compare (yvy7000 : yvy7001) []",fontsize=16,color="black",shape="box"];3423 -> 3565[label="",style="solid", color="black", weight=3]; 3424[label="compare [] (yvy7200 : yvy7201)",fontsize=16,color="black",shape="box"];3424 -> 3566[label="",style="solid", color="black", weight=3]; 3425[label="compare [] []",fontsize=16,color="black",shape="box"];3425 -> 3567[label="",style="solid", color="black", weight=3]; 3426[label="primCmpDouble (Double yvy7000 yvy7001) yvy720",fontsize=16,color="burlywood",shape="box"];5282[label="yvy7001/Pos yvy70010",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 3568[label="",style="solid", color="burlywood", weight=3]; 5283[label="yvy7001/Neg yvy70010",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 3569[label="",style="solid", color="burlywood", weight=3]; 3427[label="yvy7010 <= yvy7210",fontsize=16,color="blue",shape="box"];5284[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5284[label="",style="solid", color="blue", weight=9]; 5284 -> 3570[label="",style="solid", color="blue", weight=3]; 5285[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5285[label="",style="solid", color="blue", weight=9]; 5285 -> 3571[label="",style="solid", color="blue", weight=3]; 5286[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5286[label="",style="solid", color="blue", weight=9]; 5286 -> 3572[label="",style="solid", color="blue", weight=3]; 5287[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5287[label="",style="solid", color="blue", weight=9]; 5287 -> 3573[label="",style="solid", color="blue", weight=3]; 5288[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5288[label="",style="solid", color="blue", weight=9]; 5288 -> 3574[label="",style="solid", color="blue", weight=3]; 5289[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5289[label="",style="solid", color="blue", weight=9]; 5289 -> 3575[label="",style="solid", color="blue", weight=3]; 5290[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5290[label="",style="solid", color="blue", weight=9]; 5290 -> 3576[label="",style="solid", color="blue", weight=3]; 5291[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5291[label="",style="solid", color="blue", weight=9]; 5291 -> 3577[label="",style="solid", color="blue", weight=3]; 5292[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5292[label="",style="solid", color="blue", weight=9]; 5292 -> 3578[label="",style="solid", color="blue", weight=3]; 5293[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5293[label="",style="solid", color="blue", weight=9]; 5293 -> 3579[label="",style="solid", color="blue", weight=3]; 5294[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5294[label="",style="solid", color="blue", weight=9]; 5294 -> 3580[label="",style="solid", color="blue", weight=3]; 5295[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5295[label="",style="solid", color="blue", weight=9]; 5295 -> 3581[label="",style="solid", color="blue", weight=3]; 5296[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5296[label="",style="solid", color="blue", weight=9]; 5296 -> 3582[label="",style="solid", color="blue", weight=3]; 5297[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5297[label="",style="solid", color="blue", weight=9]; 5297 -> 3583[label="",style="solid", color="blue", weight=3]; 3428[label="True",fontsize=16,color="green",shape="box"];3429[label="False",fontsize=16,color="green",shape="box"];3430[label="yvy7010 <= yvy7210",fontsize=16,color="blue",shape="box"];5298[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 3584[label="",style="solid", color="blue", weight=3]; 5299[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 3585[label="",style="solid", color="blue", weight=3]; 5300[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 3586[label="",style="solid", color="blue", weight=3]; 5301[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 3587[label="",style="solid", color="blue", weight=3]; 5302[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 3588[label="",style="solid", color="blue", weight=3]; 5303[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 3589[label="",style="solid", color="blue", weight=3]; 5304[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 3590[label="",style="solid", color="blue", weight=3]; 5305[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 3591[label="",style="solid", color="blue", weight=3]; 5306[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 3592[label="",style="solid", color="blue", weight=3]; 5307[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5307[label="",style="solid", color="blue", weight=9]; 5307 -> 3593[label="",style="solid", color="blue", weight=3]; 5308[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5308[label="",style="solid", color="blue", weight=9]; 5308 -> 3594[label="",style="solid", color="blue", weight=3]; 5309[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5309[label="",style="solid", color="blue", weight=9]; 5309 -> 3595[label="",style="solid", color="blue", weight=3]; 5310[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5310[label="",style="solid", color="blue", weight=9]; 5310 -> 3596[label="",style="solid", color="blue", weight=3]; 5311[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5311[label="",style="solid", color="blue", weight=9]; 5311 -> 3597[label="",style="solid", color="blue", weight=3]; 3431[label="yvy701",fontsize=16,color="green",shape="box"];3432[label="yvy721",fontsize=16,color="green",shape="box"];3433 -> 3598[label="",style="dashed", color="red", weight=0]; 3433[label="not (yvy183 == GT)",fontsize=16,color="magenta"];3433 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3720[label="",style="dashed", color="red", weight=0]; 3519[label="yvy7010 < yvy7210 || yvy7010 == yvy7210 && (yvy7011 < yvy7211 || yvy7011 == yvy7211 && yvy7012 <= yvy7212)",fontsize=16,color="magenta"];3519 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3434[label="yvy701",fontsize=16,color="green",shape="box"];3435[label="yvy721",fontsize=16,color="green",shape="box"];3520 -> 3720[label="",style="dashed", color="red", weight=0]; 3520[label="yvy7010 < yvy7210 || yvy7010 == yvy7210 && yvy7011 <= yvy7211",fontsize=16,color="magenta"];3520 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3436[label="yvy701",fontsize=16,color="green",shape="box"];3437[label="yvy721",fontsize=16,color="green",shape="box"];3438[label="yvy701",fontsize=16,color="green",shape="box"];3439[label="yvy721",fontsize=16,color="green",shape="box"];3521[label="True",fontsize=16,color="green",shape="box"];3522[label="True",fontsize=16,color="green",shape="box"];3523[label="False",fontsize=16,color="green",shape="box"];3524[label="True",fontsize=16,color="green",shape="box"];3525[label="True",fontsize=16,color="green",shape="box"];3526[label="True",fontsize=16,color="green",shape="box"];3527[label="True",fontsize=16,color="green",shape="box"];3528[label="False",fontsize=16,color="green",shape="box"];3529[label="True",fontsize=16,color="green",shape="box"];3530[label="True",fontsize=16,color="green",shape="box"];3531[label="False",fontsize=16,color="green",shape="box"];3532[label="False",fontsize=16,color="green",shape="box"];3533[label="True",fontsize=16,color="green",shape="box"];3440[label="yvy701",fontsize=16,color="green",shape="box"];3441[label="yvy721",fontsize=16,color="green",shape="box"];3442[label="yvy701",fontsize=16,color="green",shape="box"];3443[label="yvy721",fontsize=16,color="green",shape="box"];3534[label="True",fontsize=16,color="green",shape="box"];3535[label="True",fontsize=16,color="green",shape="box"];3536[label="False",fontsize=16,color="green",shape="box"];3537[label="yvy7010 <= yvy7210",fontsize=16,color="blue",shape="box"];5312[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5312[label="",style="solid", color="blue", weight=9]; 5312 -> 3605[label="",style="solid", color="blue", weight=3]; 5313[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5313[label="",style="solid", color="blue", weight=9]; 5313 -> 3606[label="",style="solid", color="blue", weight=3]; 5314[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5314[label="",style="solid", color="blue", weight=9]; 5314 -> 3607[label="",style="solid", color="blue", weight=3]; 5315[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5315[label="",style="solid", color="blue", weight=9]; 5315 -> 3608[label="",style="solid", color="blue", weight=3]; 5316[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5316[label="",style="solid", color="blue", weight=9]; 5316 -> 3609[label="",style="solid", color="blue", weight=3]; 5317[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5317[label="",style="solid", color="blue", weight=9]; 5317 -> 3610[label="",style="solid", color="blue", weight=3]; 5318[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5318[label="",style="solid", color="blue", weight=9]; 5318 -> 3611[label="",style="solid", color="blue", weight=3]; 5319[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5319[label="",style="solid", color="blue", weight=9]; 5319 -> 3612[label="",style="solid", color="blue", weight=3]; 5320[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5320[label="",style="solid", color="blue", weight=9]; 5320 -> 3613[label="",style="solid", color="blue", weight=3]; 5321[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5321[label="",style="solid", color="blue", weight=9]; 5321 -> 3614[label="",style="solid", color="blue", weight=3]; 5322[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 3615[label="",style="solid", color="blue", weight=3]; 5323[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 3616[label="",style="solid", color="blue", weight=3]; 5324[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 3617[label="",style="solid", color="blue", weight=3]; 5325[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3537 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 3618[label="",style="solid", color="blue", weight=3]; 3444[label="yvy701",fontsize=16,color="green",shape="box"];3445[label="yvy721",fontsize=16,color="green",shape="box"];3446[label="yvy701",fontsize=16,color="green",shape="box"];3447[label="yvy721",fontsize=16,color="green",shape="box"];3538[label="compare0 (yvy172,yvy173) (yvy174,yvy175) True",fontsize=16,color="black",shape="box"];3538 -> 3619[label="",style="solid", color="black", weight=3]; 2052 -> 4261[label="",style="dashed", color="red", weight=0]; 2052[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2052 -> 4262[label="",style="dashed", color="magenta", weight=3]; 2052 -> 4263[label="",style="dashed", color="magenta", weight=3]; 2053[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1893[label="primCmpInt (Pos yvy700) yvy72",fontsize=16,color="burlywood",shape="box"];5326[label="yvy700/Succ yvy7000",fontsize=10,color="white",style="solid",shape="box"];1893 -> 5326[label="",style="solid", color="burlywood", weight=9]; 5326 -> 2183[label="",style="solid", color="burlywood", weight=3]; 5327[label="yvy700/Zero",fontsize=10,color="white",style="solid",shape="box"];1893 -> 5327[label="",style="solid", color="burlywood", weight=9]; 5327 -> 2184[label="",style="solid", color="burlywood", weight=3]; 1894[label="primCmpInt (Neg yvy700) yvy72",fontsize=16,color="burlywood",shape="box"];5328[label="yvy700/Succ yvy7000",fontsize=10,color="white",style="solid",shape="box"];1894 -> 5328[label="",style="solid", color="burlywood", weight=9]; 5328 -> 2185[label="",style="solid", color="burlywood", weight=3]; 5329[label="yvy700/Zero",fontsize=10,color="white",style="solid",shape="box"];1894 -> 5329[label="",style="solid", color="burlywood", weight=9]; 5329 -> 2186[label="",style="solid", color="burlywood", weight=3]; 2054[label="Pos (Succ yvy13900)",fontsize=16,color="green",shape="box"];2055 -> 1855[label="",style="dashed", color="red", weight=0]; 2055[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2055 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2056[label="Pos Zero",fontsize=16,color="green",shape="box"];2057 -> 1855[label="",style="dashed", color="red", weight=0]; 2057[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2057 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2058[label="Neg (Succ yvy13900)",fontsize=16,color="green",shape="box"];2059 -> 1855[label="",style="dashed", color="red", weight=0]; 2059[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2059 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2060[label="Neg Zero",fontsize=16,color="green",shape="box"];2061 -> 1855[label="",style="dashed", color="red", weight=0]; 2061[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2061 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2206[label="",style="dashed", color="magenta", weight=3]; 4745[label="FiniteMap.mkBranchUnbox yvy263 yvy264 yvy261 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261 + FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)",fontsize=16,color="black",shape="box"];4745 -> 4746[label="",style="solid", color="black", weight=3]; 2063[label="primPlusInt (FiniteMap.sizeFM yvy82) (FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54)",fontsize=16,color="burlywood",shape="box"];5330[label="yvy82/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2063 -> 5330[label="",style="solid", color="burlywood", weight=9]; 5330 -> 2208[label="",style="solid", color="burlywood", weight=3]; 5331[label="yvy82/FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824",fontsize=10,color="white",style="solid",shape="box"];2063 -> 5331[label="",style="solid", color="burlywood", weight=9]; 5331 -> 2209[label="",style="solid", color="burlywood", weight=3]; 3539[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];5332[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3539 -> 5332[label="",style="solid", color="burlywood", weight=9]; 5332 -> 3620[label="",style="solid", color="burlywood", weight=3]; 5333[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];3539 -> 5333[label="",style="solid", color="burlywood", weight=9]; 5333 -> 3621[label="",style="solid", color="burlywood", weight=3]; 3540[label="FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];3540 -> 3622[label="",style="solid", color="black", weight=3]; 3541 -> 1805[label="",style="dashed", color="red", weight=0]; 3541[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3542 -> 96[label="",style="dashed", color="red", weight=0]; 3542[label="compare yvy185 yvy184 == GT",fontsize=16,color="magenta"];3542 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3624[label="",style="dashed", color="magenta", weight=3]; 2298 -> 3017[label="",style="dashed", color="red", weight=0]; 2298[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 (FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];2298 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2299[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy82 yvy50 yvy51 yvy54 yvy82 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5334[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2299 -> 5334[label="",style="solid", color="burlywood", weight=9]; 5334 -> 2839[label="",style="solid", color="burlywood", weight=3]; 5335[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2299 -> 5335[label="",style="solid", color="burlywood", weight=9]; 5335 -> 2840[label="",style="solid", color="burlywood", weight=3]; 2171 -> 4261[label="",style="dashed", color="red", weight=0]; 2171[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2171 -> 4264[label="",style="dashed", color="magenta", weight=3]; 2171 -> 4265[label="",style="dashed", color="magenta", weight=3]; 2172[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2173[label="Pos (Succ yvy14300)",fontsize=16,color="green",shape="box"];2174 -> 1855[label="",style="dashed", color="red", weight=0]; 2174[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2174 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2175[label="Pos Zero",fontsize=16,color="green",shape="box"];2176 -> 1855[label="",style="dashed", color="red", weight=0]; 2176[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2176 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2177[label="Neg (Succ yvy14300)",fontsize=16,color="green",shape="box"];2178 -> 1855[label="",style="dashed", color="red", weight=0]; 2178[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2178 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2179[label="Neg Zero",fontsize=16,color="green",shape="box"];2180 -> 1855[label="",style="dashed", color="red", weight=0]; 2180[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];2180 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2324[label="",style="dashed", color="magenta", weight=3]; 1964[label="Pos (primMulNat yvy40110 yvy30100)",fontsize=16,color="green",shape="box"];1964 -> 2210[label="",style="dashed", color="green", weight=3]; 1965[label="Neg (primMulNat yvy40110 yvy30100)",fontsize=16,color="green",shape="box"];1965 -> 2211[label="",style="dashed", color="green", weight=3]; 1966[label="Neg (primMulNat yvy40110 yvy30100)",fontsize=16,color="green",shape="box"];1966 -> 2212[label="",style="dashed", color="green", weight=3]; 1967[label="Pos (primMulNat yvy40110 yvy30100)",fontsize=16,color="green",shape="box"];1967 -> 2213[label="",style="dashed", color="green", weight=3]; 3544 -> 2428[label="",style="dashed", color="red", weight=0]; 3544[label="yvy700 == yvy720",fontsize=16,color="magenta"];3544 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3543[label="compare2 yvy700 yvy720 yvy188",fontsize=16,color="burlywood",shape="triangle"];5336[label="yvy188/False",fontsize=10,color="white",style="solid",shape="box"];3543 -> 5336[label="",style="solid", color="burlywood", weight=9]; 5336 -> 3627[label="",style="solid", color="burlywood", weight=3]; 5337[label="yvy188/True",fontsize=10,color="white",style="solid",shape="box"];3543 -> 5337[label="",style="solid", color="burlywood", weight=9]; 5337 -> 3628[label="",style="solid", color="burlywood", weight=3]; 3547[label="primCmpChar (Char yvy7000) (Char yvy7200)",fontsize=16,color="black",shape="box"];3547 -> 3629[label="",style="solid", color="black", weight=3]; 3549 -> 2422[label="",style="dashed", color="red", weight=0]; 3549[label="yvy700 == yvy720",fontsize=16,color="magenta"];3549 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3548[label="compare2 yvy700 yvy720 yvy189",fontsize=16,color="burlywood",shape="triangle"];5338[label="yvy189/False",fontsize=10,color="white",style="solid",shape="box"];3548 -> 5338[label="",style="solid", color="burlywood", weight=9]; 5338 -> 3632[label="",style="solid", color="burlywood", weight=3]; 5339[label="yvy189/True",fontsize=10,color="white",style="solid",shape="box"];3548 -> 5339[label="",style="solid", color="burlywood", weight=9]; 5339 -> 3633[label="",style="solid", color="burlywood", weight=3]; 3550 -> 1817[label="",style="dashed", color="red", weight=0]; 3550[label="primCmpInt yvy7000 yvy7200",fontsize=16,color="magenta"];3550 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3551 -> 2418[label="",style="dashed", color="red", weight=0]; 3551[label="yvy700 == yvy720",fontsize=16,color="magenta"];3551 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3552[label="yvy700",fontsize=16,color="green",shape="box"];3553[label="yvy720",fontsize=16,color="green",shape="box"];3554[label="EQ",fontsize=16,color="green",shape="box"];3555[label="compare (yvy7000 * yvy7201) (yvy7200 * yvy7001)",fontsize=16,color="blue",shape="box"];5340[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3555 -> 5340[label="",style="solid", color="blue", weight=9]; 5340 -> 3638[label="",style="solid", color="blue", weight=3]; 5341[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3555 -> 5341[label="",style="solid", color="blue", weight=9]; 5341 -> 3639[label="",style="solid", color="blue", weight=3]; 3557 -> 2420[label="",style="dashed", color="red", weight=0]; 3557[label="yvy700 == yvy720",fontsize=16,color="magenta"];3557 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3556[label="compare2 yvy700 yvy720 yvy190",fontsize=16,color="burlywood",shape="triangle"];5342[label="yvy190/False",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5342[label="",style="solid", color="burlywood", weight=9]; 5342 -> 3642[label="",style="solid", color="burlywood", weight=3]; 5343[label="yvy190/True",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5343[label="",style="solid", color="burlywood", weight=9]; 5343 -> 3643[label="",style="solid", color="burlywood", weight=3]; 3559 -> 96[label="",style="dashed", color="red", weight=0]; 3559[label="yvy700 == yvy720",fontsize=16,color="magenta"];3559 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3558[label="compare2 yvy700 yvy720 yvy191",fontsize=16,color="burlywood",shape="triangle"];5344[label="yvy191/False",fontsize=10,color="white",style="solid",shape="box"];3558 -> 5344[label="",style="solid", color="burlywood", weight=9]; 5344 -> 3646[label="",style="solid", color="burlywood", weight=3]; 5345[label="yvy191/True",fontsize=10,color="white",style="solid",shape="box"];3558 -> 5345[label="",style="solid", color="burlywood", weight=9]; 5345 -> 3647[label="",style="solid", color="burlywood", weight=3]; 3560[label="primCmpFloat (Float yvy7000 (Pos yvy70010)) yvy720",fontsize=16,color="burlywood",shape="box"];5346[label="yvy720/Float yvy7200 yvy7201",fontsize=10,color="white",style="solid",shape="box"];3560 -> 5346[label="",style="solid", color="burlywood", weight=9]; 5346 -> 3648[label="",style="solid", color="burlywood", weight=3]; 3561[label="primCmpFloat (Float yvy7000 (Neg yvy70010)) yvy720",fontsize=16,color="burlywood",shape="box"];5347[label="yvy720/Float yvy7200 yvy7201",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5347[label="",style="solid", color="burlywood", weight=9]; 5347 -> 3649[label="",style="solid", color="burlywood", weight=3]; 3563 -> 2417[label="",style="dashed", color="red", weight=0]; 3563[label="yvy700 == yvy720",fontsize=16,color="magenta"];3563 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3562[label="compare2 yvy700 yvy720 yvy192",fontsize=16,color="burlywood",shape="triangle"];5348[label="yvy192/False",fontsize=10,color="white",style="solid",shape="box"];3562 -> 5348[label="",style="solid", color="burlywood", weight=9]; 5348 -> 3652[label="",style="solid", color="burlywood", weight=3]; 5349[label="yvy192/True",fontsize=10,color="white",style="solid",shape="box"];3562 -> 5349[label="",style="solid", color="burlywood", weight=9]; 5349 -> 3653[label="",style="solid", color="burlywood", weight=3]; 3564 -> 3654[label="",style="dashed", color="red", weight=0]; 3564[label="primCompAux yvy7000 yvy7200 (compare yvy7001 yvy7201)",fontsize=16,color="magenta"];3564 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3565[label="GT",fontsize=16,color="green",shape="box"];3566[label="LT",fontsize=16,color="green",shape="box"];3567[label="EQ",fontsize=16,color="green",shape="box"];3568[label="primCmpDouble (Double yvy7000 (Pos yvy70010)) yvy720",fontsize=16,color="burlywood",shape="box"];5350[label="yvy720/Double yvy7200 yvy7201",fontsize=10,color="white",style="solid",shape="box"];3568 -> 5350[label="",style="solid", color="burlywood", weight=9]; 5350 -> 3656[label="",style="solid", color="burlywood", weight=3]; 3569[label="primCmpDouble (Double yvy7000 (Neg yvy70010)) yvy720",fontsize=16,color="burlywood",shape="box"];5351[label="yvy720/Double yvy7200 yvy7201",fontsize=10,color="white",style="solid",shape="box"];3569 -> 5351[label="",style="solid", color="burlywood", weight=9]; 5351 -> 3657[label="",style="solid", color="burlywood", weight=3]; 3570 -> 2767[label="",style="dashed", color="red", weight=0]; 3570[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3570 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3571 -> 2768[label="",style="dashed", color="red", weight=0]; 3571[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3571 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3572 -> 2769[label="",style="dashed", color="red", weight=0]; 3572[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3572 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3573 -> 2770[label="",style="dashed", color="red", weight=0]; 3573[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3573 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3574 -> 2771[label="",style="dashed", color="red", weight=0]; 3574[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3574 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3575 -> 2772[label="",style="dashed", color="red", weight=0]; 3575[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3575 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3576 -> 2773[label="",style="dashed", color="red", weight=0]; 3576[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3576 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3577 -> 2774[label="",style="dashed", color="red", weight=0]; 3577[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3577 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3578 -> 2775[label="",style="dashed", color="red", weight=0]; 3578[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3578 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3579 -> 2776[label="",style="dashed", color="red", weight=0]; 3579[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3579 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3580 -> 2777[label="",style="dashed", color="red", weight=0]; 3580[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3580 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3581 -> 2778[label="",style="dashed", color="red", weight=0]; 3581[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3581 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3582 -> 2779[label="",style="dashed", color="red", weight=0]; 3582[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3582 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3582 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3583 -> 2780[label="",style="dashed", color="red", weight=0]; 3583[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3583 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3584 -> 2767[label="",style="dashed", color="red", weight=0]; 3584[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3584 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3585 -> 2768[label="",style="dashed", color="red", weight=0]; 3585[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3585 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3586 -> 2769[label="",style="dashed", color="red", weight=0]; 3586[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3586 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3586 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3587 -> 2770[label="",style="dashed", color="red", weight=0]; 3587[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3587 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3587 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3588 -> 2771[label="",style="dashed", color="red", weight=0]; 3588[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3588 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3588 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3589 -> 2772[label="",style="dashed", color="red", weight=0]; 3589[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3589 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3589 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3590 -> 2773[label="",style="dashed", color="red", weight=0]; 3590[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3590 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3590 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3591 -> 2774[label="",style="dashed", color="red", weight=0]; 3591[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3591 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3591 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3592 -> 2775[label="",style="dashed", color="red", weight=0]; 3592[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3592 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3592 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3593 -> 2776[label="",style="dashed", color="red", weight=0]; 3593[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3593 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3593 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3594 -> 2777[label="",style="dashed", color="red", weight=0]; 3594[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3594 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3595 -> 2778[label="",style="dashed", color="red", weight=0]; 3595[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3595 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3596 -> 2779[label="",style="dashed", color="red", weight=0]; 3596[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3596 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3596 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3597 -> 2780[label="",style="dashed", color="red", weight=0]; 3597[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3597 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3597 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3599 -> 96[label="",style="dashed", color="red", weight=0]; 3599[label="yvy183 == GT",fontsize=16,color="magenta"];3599 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3599 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3598[label="not yvy193",fontsize=16,color="burlywood",shape="triangle"];5352[label="yvy193/False",fontsize=10,color="white",style="solid",shape="box"];3598 -> 5352[label="",style="solid", color="burlywood", weight=9]; 5352 -> 3716[label="",style="solid", color="burlywood", weight=3]; 5353[label="yvy193/True",fontsize=10,color="white",style="solid",shape="box"];3598 -> 5353[label="",style="solid", color="burlywood", weight=9]; 5353 -> 3717[label="",style="solid", color="burlywood", weight=3]; 3721 -> 2405[label="",style="dashed", color="red", weight=0]; 3721[label="yvy7010 == yvy7210 && (yvy7011 < yvy7211 || yvy7011 == yvy7211 && yvy7012 <= yvy7212)",fontsize=16,color="magenta"];3721 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3721 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3722[label="yvy7010 < yvy7210",fontsize=16,color="blue",shape="box"];5354[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 3731[label="",style="solid", color="blue", weight=3]; 5355[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 3732[label="",style="solid", color="blue", weight=3]; 5356[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 3733[label="",style="solid", color="blue", weight=3]; 5357[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 3734[label="",style="solid", color="blue", weight=3]; 5358[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 3735[label="",style="solid", color="blue", weight=3]; 5359[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 3736[label="",style="solid", color="blue", weight=3]; 5360[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 3737[label="",style="solid", color="blue", weight=3]; 5361[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5361[label="",style="solid", color="blue", weight=9]; 5361 -> 3738[label="",style="solid", color="blue", weight=3]; 5362[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5362[label="",style="solid", color="blue", weight=9]; 5362 -> 3739[label="",style="solid", color="blue", weight=3]; 5363[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5363[label="",style="solid", color="blue", weight=9]; 5363 -> 3740[label="",style="solid", color="blue", weight=3]; 5364[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5364[label="",style="solid", color="blue", weight=9]; 5364 -> 3741[label="",style="solid", color="blue", weight=3]; 5365[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5365[label="",style="solid", color="blue", weight=9]; 5365 -> 3742[label="",style="solid", color="blue", weight=3]; 5366[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5366[label="",style="solid", color="blue", weight=9]; 5366 -> 3743[label="",style="solid", color="blue", weight=3]; 5367[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3722 -> 5367[label="",style="solid", color="blue", weight=9]; 5367 -> 3744[label="",style="solid", color="blue", weight=3]; 3720[label="yvy200 || yvy201",fontsize=16,color="burlywood",shape="triangle"];5368[label="yvy200/False",fontsize=10,color="white",style="solid",shape="box"];3720 -> 5368[label="",style="solid", color="burlywood", weight=9]; 5368 -> 3745[label="",style="solid", color="burlywood", weight=3]; 5369[label="yvy200/True",fontsize=10,color="white",style="solid",shape="box"];3720 -> 5369[label="",style="solid", color="burlywood", weight=9]; 5369 -> 3746[label="",style="solid", color="burlywood", weight=3]; 3723 -> 2405[label="",style="dashed", color="red", weight=0]; 3723[label="yvy7010 == yvy7210 && yvy7011 <= yvy7211",fontsize=16,color="magenta"];3723 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3723 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3724[label="yvy7010 < yvy7210",fontsize=16,color="blue",shape="box"];5370[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5370[label="",style="solid", color="blue", weight=9]; 5370 -> 3749[label="",style="solid", color="blue", weight=3]; 5371[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5371[label="",style="solid", color="blue", weight=9]; 5371 -> 3750[label="",style="solid", color="blue", weight=3]; 5372[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5372[label="",style="solid", color="blue", weight=9]; 5372 -> 3751[label="",style="solid", color="blue", weight=3]; 5373[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5373[label="",style="solid", color="blue", weight=9]; 5373 -> 3752[label="",style="solid", color="blue", weight=3]; 5374[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5374[label="",style="solid", color="blue", weight=9]; 5374 -> 3753[label="",style="solid", color="blue", weight=3]; 5375[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5375[label="",style="solid", color="blue", weight=9]; 5375 -> 3754[label="",style="solid", color="blue", weight=3]; 5376[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5376[label="",style="solid", color="blue", weight=9]; 5376 -> 3755[label="",style="solid", color="blue", weight=3]; 5377[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 3756[label="",style="solid", color="blue", weight=3]; 5378[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 3757[label="",style="solid", color="blue", weight=3]; 5379[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 3758[label="",style="solid", color="blue", weight=3]; 5380[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 3759[label="",style="solid", color="blue", weight=3]; 5381[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 3760[label="",style="solid", color="blue", weight=3]; 5382[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5382[label="",style="solid", color="blue", weight=9]; 5382 -> 3761[label="",style="solid", color="blue", weight=3]; 5383[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3724 -> 5383[label="",style="solid", color="blue", weight=9]; 5383 -> 3762[label="",style="solid", color="blue", weight=3]; 3605 -> 2767[label="",style="dashed", color="red", weight=0]; 3605[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3605 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3605 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3606 -> 2768[label="",style="dashed", color="red", weight=0]; 3606[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3606 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3607 -> 2769[label="",style="dashed", color="red", weight=0]; 3607[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3607 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3608 -> 2770[label="",style="dashed", color="red", weight=0]; 3608[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3608 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3609 -> 2771[label="",style="dashed", color="red", weight=0]; 3609[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3609 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3610 -> 2772[label="",style="dashed", color="red", weight=0]; 3610[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3610 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3611 -> 2773[label="",style="dashed", color="red", weight=0]; 3611[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3611 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3612 -> 2774[label="",style="dashed", color="red", weight=0]; 3612[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3612 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3613 -> 2775[label="",style="dashed", color="red", weight=0]; 3613[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3613 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3614 -> 2776[label="",style="dashed", color="red", weight=0]; 3614[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3614 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3615 -> 2777[label="",style="dashed", color="red", weight=0]; 3615[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3615 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3615 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3616 -> 2778[label="",style="dashed", color="red", weight=0]; 3616[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3616 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3616 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3617 -> 2779[label="",style="dashed", color="red", weight=0]; 3617[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3617 -> 3787[label="",style="dashed", color="magenta", weight=3]; 3617 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3618 -> 2780[label="",style="dashed", color="red", weight=0]; 3618[label="yvy7010 <= yvy7210",fontsize=16,color="magenta"];3618 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3618 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3619[label="GT",fontsize=16,color="green",shape="box"];4262 -> 4261[label="",style="dashed", color="red", weight=0]; 4262[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];4262 -> 4273[label="",style="dashed", color="magenta", weight=3]; 4262 -> 4274[label="",style="dashed", color="magenta", weight=3]; 4263[label="yvy6200",fontsize=16,color="green",shape="box"];4261[label="primPlusNat yvy222 (Succ yvy301000)",fontsize=16,color="burlywood",shape="triangle"];5384[label="yvy222/Succ yvy2220",fontsize=10,color="white",style="solid",shape="box"];4261 -> 5384[label="",style="solid", color="burlywood", weight=9]; 5384 -> 4275[label="",style="solid", color="burlywood", weight=3]; 5385[label="yvy222/Zero",fontsize=10,color="white",style="solid",shape="box"];4261 -> 5385[label="",style="solid", color="burlywood", weight=9]; 5385 -> 4276[label="",style="solid", color="burlywood", weight=3]; 2183[label="primCmpInt (Pos (Succ yvy7000)) yvy72",fontsize=16,color="burlywood",shape="box"];5386[label="yvy72/Pos yvy720",fontsize=10,color="white",style="solid",shape="box"];2183 -> 5386[label="",style="solid", color="burlywood", weight=9]; 5386 -> 2327[label="",style="solid", color="burlywood", weight=3]; 5387[label="yvy72/Neg yvy720",fontsize=10,color="white",style="solid",shape="box"];2183 -> 5387[label="",style="solid", color="burlywood", weight=9]; 5387 -> 2328[label="",style="solid", color="burlywood", weight=3]; 2184[label="primCmpInt (Pos Zero) yvy72",fontsize=16,color="burlywood",shape="box"];5388[label="yvy72/Pos yvy720",fontsize=10,color="white",style="solid",shape="box"];2184 -> 5388[label="",style="solid", color="burlywood", weight=9]; 5388 -> 2329[label="",style="solid", color="burlywood", weight=3]; 5389[label="yvy72/Neg yvy720",fontsize=10,color="white",style="solid",shape="box"];2184 -> 5389[label="",style="solid", color="burlywood", weight=9]; 5389 -> 2330[label="",style="solid", color="burlywood", weight=3]; 2185[label="primCmpInt (Neg (Succ yvy7000)) yvy72",fontsize=16,color="burlywood",shape="box"];5390[label="yvy72/Pos yvy720",fontsize=10,color="white",style="solid",shape="box"];2185 -> 5390[label="",style="solid", color="burlywood", weight=9]; 5390 -> 2331[label="",style="solid", color="burlywood", weight=3]; 5391[label="yvy72/Neg yvy720",fontsize=10,color="white",style="solid",shape="box"];2185 -> 5391[label="",style="solid", color="burlywood", weight=9]; 5391 -> 2332[label="",style="solid", color="burlywood", weight=3]; 2186[label="primCmpInt (Neg Zero) yvy72",fontsize=16,color="burlywood",shape="box"];5392[label="yvy72/Pos yvy720",fontsize=10,color="white",style="solid",shape="box"];2186 -> 5392[label="",style="solid", color="burlywood", weight=9]; 5392 -> 2333[label="",style="solid", color="burlywood", weight=3]; 5393[label="yvy72/Neg yvy720",fontsize=10,color="white",style="solid",shape="box"];2186 -> 5393[label="",style="solid", color="burlywood", weight=9]; 5393 -> 2334[label="",style="solid", color="burlywood", weight=3]; 2187[label="Pos yvy620",fontsize=16,color="green",shape="box"];2188[label="yvy61",fontsize=16,color="green",shape="box"];2189[label="yvy63",fontsize=16,color="green",shape="box"];2190[label="yvy64",fontsize=16,color="green",shape="box"];2191[label="yvy60",fontsize=16,color="green",shape="box"];2192[label="Pos yvy620",fontsize=16,color="green",shape="box"];2193[label="yvy61",fontsize=16,color="green",shape="box"];2194[label="yvy63",fontsize=16,color="green",shape="box"];2195[label="yvy64",fontsize=16,color="green",shape="box"];2196[label="yvy60",fontsize=16,color="green",shape="box"];2197[label="Pos yvy620",fontsize=16,color="green",shape="box"];2198[label="yvy61",fontsize=16,color="green",shape="box"];2199[label="yvy63",fontsize=16,color="green",shape="box"];2200[label="yvy64",fontsize=16,color="green",shape="box"];2201[label="yvy60",fontsize=16,color="green",shape="box"];2202[label="Pos yvy620",fontsize=16,color="green",shape="box"];2203[label="yvy61",fontsize=16,color="green",shape="box"];2204[label="yvy63",fontsize=16,color="green",shape="box"];2205[label="yvy64",fontsize=16,color="green",shape="box"];2206[label="yvy60",fontsize=16,color="green",shape="box"];4746[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261 + FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261",fontsize=16,color="black",shape="box"];4746 -> 4747[label="",style="solid", color="black", weight=3]; 2208[label="primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM yvy50 yvy51 yvy54)",fontsize=16,color="black",shape="box"];2208 -> 2336[label="",style="solid", color="black", weight=3]; 2209[label="primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824)) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54)",fontsize=16,color="black",shape="box"];2209 -> 2337[label="",style="solid", color="black", weight=3]; 3620[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3620 -> 3791[label="",style="solid", color="black", weight=3]; 3621[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3621 -> 3792[label="",style="solid", color="black", weight=3]; 3622 -> 3539[label="",style="dashed", color="red", weight=0]; 3622[label="FiniteMap.sizeFM yvy82",fontsize=16,color="magenta"];3622 -> 3793[label="",style="dashed", color="magenta", weight=3]; 3623[label="GT",fontsize=16,color="green",shape="box"];3624 -> 1675[label="",style="dashed", color="red", weight=0]; 3624[label="compare yvy185 yvy184",fontsize=16,color="magenta"];3624 -> 3794[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3448[label="",style="dashed", color="red", weight=0]; 3018[label="FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3018 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3017[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 yvy181",fontsize=16,color="burlywood",shape="triangle"];5394[label="yvy181/False",fontsize=10,color="white",style="solid",shape="box"];3017 -> 5394[label="",style="solid", color="burlywood", weight=9]; 5394 -> 3796[label="",style="solid", color="burlywood", weight=3]; 5395[label="yvy181/True",fontsize=10,color="white",style="solid",shape="box"];3017 -> 5395[label="",style="solid", color="burlywood", weight=9]; 5395 -> 3797[label="",style="solid", color="burlywood", weight=3]; 2839[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy82 yvy50 yvy51 FiniteMap.EmptyFM yvy82 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2839 -> 3012[label="",style="solid", color="black", weight=3]; 2840[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2840 -> 3013[label="",style="solid", color="black", weight=3]; 4264 -> 4261[label="",style="dashed", color="red", weight=0]; 4264[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];4264 -> 4277[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4278[label="",style="dashed", color="magenta", weight=3]; 4265[label="yvy6200",fontsize=16,color="green",shape="box"];2305[label="Neg yvy620",fontsize=16,color="green",shape="box"];2306[label="yvy61",fontsize=16,color="green",shape="box"];2307[label="yvy63",fontsize=16,color="green",shape="box"];2308[label="yvy64",fontsize=16,color="green",shape="box"];2309[label="yvy60",fontsize=16,color="green",shape="box"];2310[label="Neg yvy620",fontsize=16,color="green",shape="box"];2311[label="yvy61",fontsize=16,color="green",shape="box"];2312[label="yvy63",fontsize=16,color="green",shape="box"];2313[label="yvy64",fontsize=16,color="green",shape="box"];2314[label="yvy60",fontsize=16,color="green",shape="box"];2315[label="Neg yvy620",fontsize=16,color="green",shape="box"];2316[label="yvy61",fontsize=16,color="green",shape="box"];2317[label="yvy63",fontsize=16,color="green",shape="box"];2318[label="yvy64",fontsize=16,color="green",shape="box"];2319[label="yvy60",fontsize=16,color="green",shape="box"];2320[label="Neg yvy620",fontsize=16,color="green",shape="box"];2321[label="yvy61",fontsize=16,color="green",shape="box"];2322[label="yvy63",fontsize=16,color="green",shape="box"];2323[label="yvy64",fontsize=16,color="green",shape="box"];2324[label="yvy60",fontsize=16,color="green",shape="box"];2210[label="primMulNat yvy40110 yvy30100",fontsize=16,color="burlywood",shape="triangle"];5396[label="yvy40110/Succ yvy401100",fontsize=10,color="white",style="solid",shape="box"];2210 -> 5396[label="",style="solid", color="burlywood", weight=9]; 5396 -> 2338[label="",style="solid", color="burlywood", weight=3]; 5397[label="yvy40110/Zero",fontsize=10,color="white",style="solid",shape="box"];2210 -> 5397[label="",style="solid", color="burlywood", weight=9]; 5397 -> 2339[label="",style="solid", color="burlywood", weight=3]; 2211 -> 2210[label="",style="dashed", color="red", weight=0]; 2211[label="primMulNat yvy40110 yvy30100",fontsize=16,color="magenta"];2211 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2210[label="",style="dashed", color="red", weight=0]; 2212[label="primMulNat yvy40110 yvy30100",fontsize=16,color="magenta"];2212 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2210[label="",style="dashed", color="red", weight=0]; 2213[label="primMulNat yvy40110 yvy30100",fontsize=16,color="magenta"];2213 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2343[label="",style="dashed", color="magenta", weight=3]; 3625[label="yvy720",fontsize=16,color="green",shape="box"];3626[label="yvy700",fontsize=16,color="green",shape="box"];3627[label="compare2 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];3627 -> 3798[label="",style="solid", color="black", weight=3]; 3628[label="compare2 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];3628 -> 3799[label="",style="solid", color="black", weight=3]; 3629[label="primCmpNat yvy7000 yvy7200",fontsize=16,color="burlywood",shape="triangle"];5398[label="yvy7000/Succ yvy70000",fontsize=10,color="white",style="solid",shape="box"];3629 -> 5398[label="",style="solid", color="burlywood", weight=9]; 5398 -> 3800[label="",style="solid", color="burlywood", weight=3]; 5399[label="yvy7000/Zero",fontsize=10,color="white",style="solid",shape="box"];3629 -> 5399[label="",style="solid", color="burlywood", weight=9]; 5399 -> 3801[label="",style="solid", color="burlywood", weight=3]; 3630[label="yvy720",fontsize=16,color="green",shape="box"];3631[label="yvy700",fontsize=16,color="green",shape="box"];3632[label="compare2 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];3632 -> 3802[label="",style="solid", color="black", weight=3]; 3633[label="compare2 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];3633 -> 3803[label="",style="solid", color="black", weight=3]; 3634[label="yvy7000",fontsize=16,color="green",shape="box"];3635[label="yvy7200",fontsize=16,color="green",shape="box"];3636[label="yvy720",fontsize=16,color="green",shape="box"];3637[label="yvy700",fontsize=16,color="green",shape="box"];3638 -> 2941[label="",style="dashed", color="red", weight=0]; 3638[label="compare (yvy7000 * yvy7201) (yvy7200 * yvy7001)",fontsize=16,color="magenta"];3638 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3638 -> 3805[label="",style="dashed", color="magenta", weight=3]; 3639 -> 1675[label="",style="dashed", color="red", weight=0]; 3639[label="compare (yvy7000 * yvy7201) (yvy7200 * yvy7001)",fontsize=16,color="magenta"];3639 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3807[label="",style="dashed", color="magenta", weight=3]; 3640[label="yvy720",fontsize=16,color="green",shape="box"];3641[label="yvy700",fontsize=16,color="green",shape="box"];3642[label="compare2 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];3642 -> 3808[label="",style="solid", color="black", weight=3]; 3643[label="compare2 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];3643 -> 3809[label="",style="solid", color="black", weight=3]; 3644[label="yvy720",fontsize=16,color="green",shape="box"];3645[label="yvy700",fontsize=16,color="green",shape="box"];3646[label="compare2 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];3646 -> 3810[label="",style="solid", color="black", weight=3]; 3647[label="compare2 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];3647 -> 3811[label="",style="solid", color="black", weight=3]; 3648[label="primCmpFloat (Float yvy7000 (Pos yvy70010)) (Float yvy7200 yvy7201)",fontsize=16,color="burlywood",shape="box"];5400[label="yvy7201/Pos yvy72010",fontsize=10,color="white",style="solid",shape="box"];3648 -> 5400[label="",style="solid", color="burlywood", weight=9]; 5400 -> 3812[label="",style="solid", color="burlywood", weight=3]; 5401[label="yvy7201/Neg yvy72010",fontsize=10,color="white",style="solid",shape="box"];3648 -> 5401[label="",style="solid", color="burlywood", weight=9]; 5401 -> 3813[label="",style="solid", color="burlywood", weight=3]; 3649[label="primCmpFloat (Float yvy7000 (Neg yvy70010)) (Float yvy7200 yvy7201)",fontsize=16,color="burlywood",shape="box"];5402[label="yvy7201/Pos yvy72010",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5402[label="",style="solid", color="burlywood", weight=9]; 5402 -> 3814[label="",style="solid", color="burlywood", weight=3]; 5403[label="yvy7201/Neg yvy72010",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5403[label="",style="solid", color="burlywood", weight=9]; 5403 -> 3815[label="",style="solid", color="burlywood", weight=3]; 3650[label="yvy720",fontsize=16,color="green",shape="box"];3651[label="yvy700",fontsize=16,color="green",shape="box"];3652[label="compare2 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];3652 -> 3816[label="",style="solid", color="black", weight=3]; 3653[label="compare2 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];3653 -> 3817[label="",style="solid", color="black", weight=3]; 3655 -> 2959[label="",style="dashed", color="red", weight=0]; 3655[label="compare yvy7001 yvy7201",fontsize=16,color="magenta"];3655 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3655 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3654[label="primCompAux yvy7000 yvy7200 yvy196",fontsize=16,color="black",shape="triangle"];3654 -> 3820[label="",style="solid", color="black", weight=3]; 3656[label="primCmpDouble (Double yvy7000 (Pos yvy70010)) (Double yvy7200 yvy7201)",fontsize=16,color="burlywood",shape="box"];5404[label="yvy7201/Pos yvy72010",fontsize=10,color="white",style="solid",shape="box"];3656 -> 5404[label="",style="solid", color="burlywood", weight=9]; 5404 -> 3821[label="",style="solid", color="burlywood", weight=3]; 5405[label="yvy7201/Neg yvy72010",fontsize=10,color="white",style="solid",shape="box"];3656 -> 5405[label="",style="solid", color="burlywood", weight=9]; 5405 -> 3822[label="",style="solid", color="burlywood", weight=3]; 3657[label="primCmpDouble (Double yvy7000 (Neg yvy70010)) (Double yvy7200 yvy7201)",fontsize=16,color="burlywood",shape="box"];5406[label="yvy7201/Pos yvy72010",fontsize=10,color="white",style="solid",shape="box"];3657 -> 5406[label="",style="solid", color="burlywood", weight=9]; 5406 -> 3823[label="",style="solid", color="burlywood", weight=3]; 5407[label="yvy7201/Neg yvy72010",fontsize=10,color="white",style="solid",shape="box"];3657 -> 5407[label="",style="solid", color="burlywood", weight=9]; 5407 -> 3824[label="",style="solid", color="burlywood", weight=3]; 3658[label="yvy7210",fontsize=16,color="green",shape="box"];3659[label="yvy7010",fontsize=16,color="green",shape="box"];3660[label="yvy7210",fontsize=16,color="green",shape="box"];3661[label="yvy7010",fontsize=16,color="green",shape="box"];3662[label="yvy7210",fontsize=16,color="green",shape="box"];3663[label="yvy7010",fontsize=16,color="green",shape="box"];3664[label="yvy7210",fontsize=16,color="green",shape="box"];3665[label="yvy7010",fontsize=16,color="green",shape="box"];3666[label="yvy7210",fontsize=16,color="green",shape="box"];3667[label="yvy7010",fontsize=16,color="green",shape="box"];3668[label="yvy7210",fontsize=16,color="green",shape="box"];3669[label="yvy7010",fontsize=16,color="green",shape="box"];3670[label="yvy7210",fontsize=16,color="green",shape="box"];3671[label="yvy7010",fontsize=16,color="green",shape="box"];3672[label="yvy7210",fontsize=16,color="green",shape="box"];3673[label="yvy7010",fontsize=16,color="green",shape="box"];3674[label="yvy7210",fontsize=16,color="green",shape="box"];3675[label="yvy7010",fontsize=16,color="green",shape="box"];3676[label="yvy7210",fontsize=16,color="green",shape="box"];3677[label="yvy7010",fontsize=16,color="green",shape="box"];3678[label="yvy7210",fontsize=16,color="green",shape="box"];3679[label="yvy7010",fontsize=16,color="green",shape="box"];3680[label="yvy7210",fontsize=16,color="green",shape="box"];3681[label="yvy7010",fontsize=16,color="green",shape="box"];3682[label="yvy7210",fontsize=16,color="green",shape="box"];3683[label="yvy7010",fontsize=16,color="green",shape="box"];3684[label="yvy7210",fontsize=16,color="green",shape="box"];3685[label="yvy7010",fontsize=16,color="green",shape="box"];3686[label="yvy7210",fontsize=16,color="green",shape="box"];3687[label="yvy7010",fontsize=16,color="green",shape="box"];3688[label="yvy7210",fontsize=16,color="green",shape="box"];3689[label="yvy7010",fontsize=16,color="green",shape="box"];3690[label="yvy7210",fontsize=16,color="green",shape="box"];3691[label="yvy7010",fontsize=16,color="green",shape="box"];3692[label="yvy7210",fontsize=16,color="green",shape="box"];3693[label="yvy7010",fontsize=16,color="green",shape="box"];3694[label="yvy7210",fontsize=16,color="green",shape="box"];3695[label="yvy7010",fontsize=16,color="green",shape="box"];3696[label="yvy7210",fontsize=16,color="green",shape="box"];3697[label="yvy7010",fontsize=16,color="green",shape="box"];3698[label="yvy7210",fontsize=16,color="green",shape="box"];3699[label="yvy7010",fontsize=16,color="green",shape="box"];3700[label="yvy7210",fontsize=16,color="green",shape="box"];3701[label="yvy7010",fontsize=16,color="green",shape="box"];3702[label="yvy7210",fontsize=16,color="green",shape="box"];3703[label="yvy7010",fontsize=16,color="green",shape="box"];3704[label="yvy7210",fontsize=16,color="green",shape="box"];3705[label="yvy7010",fontsize=16,color="green",shape="box"];3706[label="yvy7210",fontsize=16,color="green",shape="box"];3707[label="yvy7010",fontsize=16,color="green",shape="box"];3708[label="yvy7210",fontsize=16,color="green",shape="box"];3709[label="yvy7010",fontsize=16,color="green",shape="box"];3710[label="yvy7210",fontsize=16,color="green",shape="box"];3711[label="yvy7010",fontsize=16,color="green",shape="box"];3712[label="yvy7210",fontsize=16,color="green",shape="box"];3713[label="yvy7010",fontsize=16,color="green",shape="box"];3714[label="GT",fontsize=16,color="green",shape="box"];3715[label="yvy183",fontsize=16,color="green",shape="box"];3716[label="not False",fontsize=16,color="black",shape="box"];3716 -> 3825[label="",style="solid", color="black", weight=3]; 3717[label="not True",fontsize=16,color="black",shape="box"];3717 -> 3826[label="",style="solid", color="black", weight=3]; 3729[label="yvy7010 == yvy7210",fontsize=16,color="blue",shape="box"];5408[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5408[label="",style="solid", color="blue", weight=9]; 5408 -> 3849[label="",style="solid", color="blue", weight=3]; 5409[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5409[label="",style="solid", color="blue", weight=9]; 5409 -> 3850[label="",style="solid", color="blue", weight=3]; 5410[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5410[label="",style="solid", color="blue", weight=9]; 5410 -> 3851[label="",style="solid", color="blue", weight=3]; 5411[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5411[label="",style="solid", color="blue", weight=9]; 5411 -> 3852[label="",style="solid", color="blue", weight=3]; 5412[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5412[label="",style="solid", color="blue", weight=9]; 5412 -> 3853[label="",style="solid", color="blue", weight=3]; 5413[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5413[label="",style="solid", color="blue", weight=9]; 5413 -> 3854[label="",style="solid", color="blue", weight=3]; 5414[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5414[label="",style="solid", color="blue", weight=9]; 5414 -> 3855[label="",style="solid", color="blue", weight=3]; 5415[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5415[label="",style="solid", color="blue", weight=9]; 5415 -> 3856[label="",style="solid", color="blue", weight=3]; 5416[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5416[label="",style="solid", color="blue", weight=9]; 5416 -> 3857[label="",style="solid", color="blue", weight=3]; 5417[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5417[label="",style="solid", color="blue", weight=9]; 5417 -> 3858[label="",style="solid", color="blue", weight=3]; 5418[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5418[label="",style="solid", color="blue", weight=9]; 5418 -> 3859[label="",style="solid", color="blue", weight=3]; 5419[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5419[label="",style="solid", color="blue", weight=9]; 5419 -> 3860[label="",style="solid", color="blue", weight=3]; 5420[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5420[label="",style="solid", color="blue", weight=9]; 5420 -> 3861[label="",style="solid", color="blue", weight=3]; 5421[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5421[label="",style="solid", color="blue", weight=9]; 5421 -> 3862[label="",style="solid", color="blue", weight=3]; 3730 -> 3720[label="",style="dashed", color="red", weight=0]; 3730[label="yvy7011 < yvy7211 || yvy7011 == yvy7211 && yvy7012 <= yvy7212",fontsize=16,color="magenta"];3730 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3730 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3731 -> 2662[label="",style="dashed", color="red", weight=0]; 3731[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3731 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3732 -> 2663[label="",style="dashed", color="red", weight=0]; 3732[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3732 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3732 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3733 -> 2664[label="",style="dashed", color="red", weight=0]; 3733[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3733 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3734 -> 2665[label="",style="dashed", color="red", weight=0]; 3734[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3734 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3735 -> 2666[label="",style="dashed", color="red", weight=0]; 3735[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3735 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3735 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3736 -> 2667[label="",style="dashed", color="red", weight=0]; 3736[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3736 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3736 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3737 -> 2668[label="",style="dashed", color="red", weight=0]; 3737[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3737 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3737 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3738 -> 2669[label="",style="dashed", color="red", weight=0]; 3738[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3738 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3738 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3739 -> 2670[label="",style="dashed", color="red", weight=0]; 3739[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3739 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3739 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3740 -> 2671[label="",style="dashed", color="red", weight=0]; 3740[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3740 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3740 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3741 -> 2672[label="",style="dashed", color="red", weight=0]; 3741[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3741 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3741 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3742 -> 2673[label="",style="dashed", color="red", weight=0]; 3742[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3742 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3742 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3743 -> 2674[label="",style="dashed", color="red", weight=0]; 3743[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3743 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3743 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3744 -> 2675[label="",style="dashed", color="red", weight=0]; 3744[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3744 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3744 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3745[label="False || yvy201",fontsize=16,color="black",shape="box"];3745 -> 3893[label="",style="solid", color="black", weight=3]; 3746[label="True || yvy201",fontsize=16,color="black",shape="box"];3746 -> 3894[label="",style="solid", color="black", weight=3]; 3747[label="yvy7010 == yvy7210",fontsize=16,color="blue",shape="box"];5422[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5422[label="",style="solid", color="blue", weight=9]; 5422 -> 3895[label="",style="solid", color="blue", weight=3]; 5423[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 3896[label="",style="solid", color="blue", weight=3]; 5424[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 3897[label="",style="solid", color="blue", weight=3]; 5425[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 3898[label="",style="solid", color="blue", weight=3]; 5426[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 3899[label="",style="solid", color="blue", weight=3]; 5427[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 3900[label="",style="solid", color="blue", weight=3]; 5428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 3901[label="",style="solid", color="blue", weight=3]; 5429[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 3902[label="",style="solid", color="blue", weight=3]; 5430[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 3903[label="",style="solid", color="blue", weight=3]; 5431[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 3904[label="",style="solid", color="blue", weight=3]; 5432[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 3905[label="",style="solid", color="blue", weight=3]; 5433[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 3906[label="",style="solid", color="blue", weight=3]; 5434[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 3907[label="",style="solid", color="blue", weight=3]; 5435[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 3908[label="",style="solid", color="blue", weight=3]; 3748[label="yvy7011 <= yvy7211",fontsize=16,color="blue",shape="box"];5436[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 3909[label="",style="solid", color="blue", weight=3]; 5437[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 3910[label="",style="solid", color="blue", weight=3]; 5438[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 3911[label="",style="solid", color="blue", weight=3]; 5439[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 3912[label="",style="solid", color="blue", weight=3]; 5440[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5440[label="",style="solid", color="blue", weight=9]; 5440 -> 3913[label="",style="solid", color="blue", weight=3]; 5441[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5441[label="",style="solid", color="blue", weight=9]; 5441 -> 3914[label="",style="solid", color="blue", weight=3]; 5442[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5442[label="",style="solid", color="blue", weight=9]; 5442 -> 3915[label="",style="solid", color="blue", weight=3]; 5443[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5443[label="",style="solid", color="blue", weight=9]; 5443 -> 3916[label="",style="solid", color="blue", weight=3]; 5444[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5444[label="",style="solid", color="blue", weight=9]; 5444 -> 3917[label="",style="solid", color="blue", weight=3]; 5445[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5445[label="",style="solid", color="blue", weight=9]; 5445 -> 3918[label="",style="solid", color="blue", weight=3]; 5446[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5446[label="",style="solid", color="blue", weight=9]; 5446 -> 3919[label="",style="solid", color="blue", weight=3]; 5447[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5447[label="",style="solid", color="blue", weight=9]; 5447 -> 3920[label="",style="solid", color="blue", weight=3]; 5448[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5448[label="",style="solid", color="blue", weight=9]; 5448 -> 3921[label="",style="solid", color="blue", weight=3]; 5449[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3748 -> 5449[label="",style="solid", color="blue", weight=9]; 5449 -> 3922[label="",style="solid", color="blue", weight=3]; 3749 -> 2662[label="",style="dashed", color="red", weight=0]; 3749[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3749 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3749 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3750 -> 2663[label="",style="dashed", color="red", weight=0]; 3750[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3750 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3751 -> 2664[label="",style="dashed", color="red", weight=0]; 3751[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3751 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3751 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3752 -> 2665[label="",style="dashed", color="red", weight=0]; 3752[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3752 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3752 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3753 -> 2666[label="",style="dashed", color="red", weight=0]; 3753[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3753 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3754 -> 2667[label="",style="dashed", color="red", weight=0]; 3754[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3754 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3754 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3755 -> 2668[label="",style="dashed", color="red", weight=0]; 3755[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3755 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3756 -> 2669[label="",style="dashed", color="red", weight=0]; 3756[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3756 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3757 -> 2670[label="",style="dashed", color="red", weight=0]; 3757[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3757 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3758 -> 2671[label="",style="dashed", color="red", weight=0]; 3758[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3758 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3758 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3759 -> 2672[label="",style="dashed", color="red", weight=0]; 3759[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3759 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3760 -> 2673[label="",style="dashed", color="red", weight=0]; 3760[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3760 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3760 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3761 -> 2674[label="",style="dashed", color="red", weight=0]; 3761[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3761 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3762 -> 2675[label="",style="dashed", color="red", weight=0]; 3762[label="yvy7010 < yvy7210",fontsize=16,color="magenta"];3762 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3762 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3763[label="yvy7210",fontsize=16,color="green",shape="box"];3764[label="yvy7010",fontsize=16,color="green",shape="box"];3765[label="yvy7210",fontsize=16,color="green",shape="box"];3766[label="yvy7010",fontsize=16,color="green",shape="box"];3767[label="yvy7210",fontsize=16,color="green",shape="box"];3768[label="yvy7010",fontsize=16,color="green",shape="box"];3769[label="yvy7210",fontsize=16,color="green",shape="box"];3770[label="yvy7010",fontsize=16,color="green",shape="box"];3771[label="yvy7210",fontsize=16,color="green",shape="box"];3772[label="yvy7010",fontsize=16,color="green",shape="box"];3773[label="yvy7210",fontsize=16,color="green",shape="box"];3774[label="yvy7010",fontsize=16,color="green",shape="box"];3775[label="yvy7210",fontsize=16,color="green",shape="box"];3776[label="yvy7010",fontsize=16,color="green",shape="box"];3777[label="yvy7210",fontsize=16,color="green",shape="box"];3778[label="yvy7010",fontsize=16,color="green",shape="box"];3779[label="yvy7210",fontsize=16,color="green",shape="box"];3780[label="yvy7010",fontsize=16,color="green",shape="box"];3781[label="yvy7210",fontsize=16,color="green",shape="box"];3782[label="yvy7010",fontsize=16,color="green",shape="box"];3783[label="yvy7210",fontsize=16,color="green",shape="box"];3784[label="yvy7010",fontsize=16,color="green",shape="box"];3785[label="yvy7210",fontsize=16,color="green",shape="box"];3786[label="yvy7010",fontsize=16,color="green",shape="box"];3787[label="yvy7210",fontsize=16,color="green",shape="box"];3788[label="yvy7010",fontsize=16,color="green",shape="box"];3789[label="yvy7210",fontsize=16,color="green",shape="box"];3790[label="yvy7010",fontsize=16,color="green",shape="box"];4273 -> 4261[label="",style="dashed", color="red", weight=0]; 4273[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];4273 -> 4420[label="",style="dashed", color="magenta", weight=3]; 4273 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4274[label="yvy6200",fontsize=16,color="green",shape="box"];4275[label="primPlusNat (Succ yvy2220) (Succ yvy301000)",fontsize=16,color="black",shape="box"];4275 -> 4422[label="",style="solid", color="black", weight=3]; 4276[label="primPlusNat Zero (Succ yvy301000)",fontsize=16,color="black",shape="box"];4276 -> 4423[label="",style="solid", color="black", weight=3]; 2327[label="primCmpInt (Pos (Succ yvy7000)) (Pos yvy720)",fontsize=16,color="black",shape="box"];2327 -> 2851[label="",style="solid", color="black", weight=3]; 2328[label="primCmpInt (Pos (Succ yvy7000)) (Neg yvy720)",fontsize=16,color="black",shape="box"];2328 -> 2852[label="",style="solid", color="black", weight=3]; 2329[label="primCmpInt (Pos Zero) (Pos yvy720)",fontsize=16,color="burlywood",shape="box"];5450[label="yvy720/Succ yvy7200",fontsize=10,color="white",style="solid",shape="box"];2329 -> 5450[label="",style="solid", color="burlywood", weight=9]; 5450 -> 2853[label="",style="solid", color="burlywood", weight=3]; 5451[label="yvy720/Zero",fontsize=10,color="white",style="solid",shape="box"];2329 -> 5451[label="",style="solid", color="burlywood", weight=9]; 5451 -> 2854[label="",style="solid", color="burlywood", weight=3]; 2330[label="primCmpInt (Pos Zero) (Neg yvy720)",fontsize=16,color="burlywood",shape="box"];5452[label="yvy720/Succ yvy7200",fontsize=10,color="white",style="solid",shape="box"];2330 -> 5452[label="",style="solid", color="burlywood", weight=9]; 5452 -> 2855[label="",style="solid", color="burlywood", weight=3]; 5453[label="yvy720/Zero",fontsize=10,color="white",style="solid",shape="box"];2330 -> 5453[label="",style="solid", color="burlywood", weight=9]; 5453 -> 2856[label="",style="solid", color="burlywood", weight=3]; 2331[label="primCmpInt (Neg (Succ yvy7000)) (Pos yvy720)",fontsize=16,color="black",shape="box"];2331 -> 2857[label="",style="solid", color="black", weight=3]; 2332[label="primCmpInt (Neg (Succ yvy7000)) (Neg yvy720)",fontsize=16,color="black",shape="box"];2332 -> 2858[label="",style="solid", color="black", weight=3]; 2333[label="primCmpInt (Neg Zero) (Pos yvy720)",fontsize=16,color="burlywood",shape="box"];5454[label="yvy720/Succ yvy7200",fontsize=10,color="white",style="solid",shape="box"];2333 -> 5454[label="",style="solid", color="burlywood", weight=9]; 5454 -> 2859[label="",style="solid", color="burlywood", weight=3]; 5455[label="yvy720/Zero",fontsize=10,color="white",style="solid",shape="box"];2333 -> 5455[label="",style="solid", color="burlywood", weight=9]; 5455 -> 2860[label="",style="solid", color="burlywood", weight=3]; 2334[label="primCmpInt (Neg Zero) (Neg yvy720)",fontsize=16,color="burlywood",shape="box"];5456[label="yvy720/Succ yvy7200",fontsize=10,color="white",style="solid",shape="box"];2334 -> 5456[label="",style="solid", color="burlywood", weight=9]; 5456 -> 2861[label="",style="solid", color="burlywood", weight=3]; 5457[label="yvy720/Zero",fontsize=10,color="white",style="solid",shape="box"];2334 -> 5457[label="",style="solid", color="burlywood", weight=9]; 5457 -> 2862[label="",style="solid", color="burlywood", weight=3]; 4747 -> 4749[label="",style="dashed", color="red", weight=0]; 4747[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261) (FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)",fontsize=16,color="magenta"];4747 -> 4750[label="",style="dashed", color="magenta", weight=3]; 2336 -> 4223[label="",style="dashed", color="red", weight=0]; 2336[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];2336 -> 4224[label="",style="dashed", color="magenta", weight=3]; 2336 -> 4225[label="",style="dashed", color="magenta", weight=3]; 2337[label="primPlusInt yvy822 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54)",fontsize=16,color="burlywood",shape="box"];5458[label="yvy822/Pos yvy8220",fontsize=10,color="white",style="solid",shape="box"];2337 -> 5458[label="",style="solid", color="burlywood", weight=9]; 5458 -> 2865[label="",style="solid", color="burlywood", weight=3]; 5459[label="yvy822/Neg yvy8220",fontsize=10,color="white",style="solid",shape="box"];2337 -> 5459[label="",style="solid", color="burlywood", weight=9]; 5459 -> 2866[label="",style="solid", color="burlywood", weight=3]; 3791[label="Pos Zero",fontsize=16,color="green",shape="box"];3792[label="yvy542",fontsize=16,color="green",shape="box"];3793[label="yvy82",fontsize=16,color="green",shape="box"];3794[label="yvy185",fontsize=16,color="green",shape="box"];3795[label="yvy184",fontsize=16,color="green",shape="box"];3453 -> 3540[label="",style="dashed", color="red", weight=0]; 3453[label="FiniteMap.mkBalBranch6Size_l yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3454 -> 1315[label="",style="dashed", color="red", weight=0]; 3454[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3454 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3796[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 False",fontsize=16,color="black",shape="box"];3796 -> 3951[label="",style="solid", color="black", weight=3]; 3797[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 True",fontsize=16,color="black",shape="box"];3797 -> 3952[label="",style="solid", color="black", weight=3]; 3012[label="error []",fontsize=16,color="red",shape="box"];3013[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3013 -> 3829[label="",style="solid", color="black", weight=3]; 4277 -> 4261[label="",style="dashed", color="red", weight=0]; 4277[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];4277 -> 4424[label="",style="dashed", color="magenta", weight=3]; 4277 -> 4425[label="",style="dashed", color="magenta", weight=3]; 4278[label="yvy6200",fontsize=16,color="green",shape="box"];2338[label="primMulNat (Succ yvy401100) yvy30100",fontsize=16,color="burlywood",shape="box"];5460[label="yvy30100/Succ yvy301000",fontsize=10,color="white",style="solid",shape="box"];2338 -> 5460[label="",style="solid", color="burlywood", weight=9]; 5460 -> 2867[label="",style="solid", color="burlywood", weight=3]; 5461[label="yvy30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2338 -> 5461[label="",style="solid", color="burlywood", weight=9]; 5461 -> 2868[label="",style="solid", color="burlywood", weight=3]; 2339[label="primMulNat Zero yvy30100",fontsize=16,color="burlywood",shape="box"];5462[label="yvy30100/Succ yvy301000",fontsize=10,color="white",style="solid",shape="box"];2339 -> 5462[label="",style="solid", color="burlywood", weight=9]; 5462 -> 2869[label="",style="solid", color="burlywood", weight=3]; 5463[label="yvy30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2339 -> 5463[label="",style="solid", color="burlywood", weight=9]; 5463 -> 2870[label="",style="solid", color="burlywood", weight=3]; 2340[label="yvy30100",fontsize=16,color="green",shape="box"];2341[label="yvy40110",fontsize=16,color="green",shape="box"];2342[label="yvy40110",fontsize=16,color="green",shape="box"];2343[label="yvy30100",fontsize=16,color="green",shape="box"];3798 -> 3953[label="",style="dashed", color="red", weight=0]; 3798[label="compare1 yvy700 yvy720 (yvy700 <= yvy720)",fontsize=16,color="magenta"];3798 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3799[label="EQ",fontsize=16,color="green",shape="box"];3800[label="primCmpNat (Succ yvy70000) yvy7200",fontsize=16,color="burlywood",shape="box"];5464[label="yvy7200/Succ yvy72000",fontsize=10,color="white",style="solid",shape="box"];3800 -> 5464[label="",style="solid", color="burlywood", weight=9]; 5464 -> 3955[label="",style="solid", color="burlywood", weight=3]; 5465[label="yvy7200/Zero",fontsize=10,color="white",style="solid",shape="box"];3800 -> 5465[label="",style="solid", color="burlywood", weight=9]; 5465 -> 3956[label="",style="solid", color="burlywood", weight=3]; 3801[label="primCmpNat Zero yvy7200",fontsize=16,color="burlywood",shape="box"];5466[label="yvy7200/Succ yvy72000",fontsize=10,color="white",style="solid",shape="box"];3801 -> 5466[label="",style="solid", color="burlywood", weight=9]; 5466 -> 3957[label="",style="solid", color="burlywood", weight=3]; 5467[label="yvy7200/Zero",fontsize=10,color="white",style="solid",shape="box"];3801 -> 5467[label="",style="solid", color="burlywood", weight=9]; 5467 -> 3958[label="",style="solid", color="burlywood", weight=3]; 3802 -> 3959[label="",style="dashed", color="red", weight=0]; 3802[label="compare1 yvy700 yvy720 (yvy700 <= yvy720)",fontsize=16,color="magenta"];3802 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3803[label="EQ",fontsize=16,color="green",shape="box"];3804[label="yvy7000 * yvy7201",fontsize=16,color="burlywood",shape="triangle"];5468[label="yvy7000/Integer yvy70000",fontsize=10,color="white",style="solid",shape="box"];3804 -> 5468[label="",style="solid", color="burlywood", weight=9]; 5468 -> 3961[label="",style="solid", color="burlywood", weight=3]; 3805 -> 3804[label="",style="dashed", color="red", weight=0]; 3805[label="yvy7200 * yvy7001",fontsize=16,color="magenta"];3805 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3805 -> 3963[label="",style="dashed", color="magenta", weight=3]; 3806 -> 1315[label="",style="dashed", color="red", weight=0]; 3806[label="yvy7000 * yvy7201",fontsize=16,color="magenta"];3806 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3807 -> 1315[label="",style="dashed", color="red", weight=0]; 3807[label="yvy7200 * yvy7001",fontsize=16,color="magenta"];3807 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3807 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3808 -> 3968[label="",style="dashed", color="red", weight=0]; 3808[label="compare1 yvy700 yvy720 (yvy700 <= yvy720)",fontsize=16,color="magenta"];3808 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3809[label="EQ",fontsize=16,color="green",shape="box"];3810 -> 3970[label="",style="dashed", color="red", weight=0]; 3810[label="compare1 yvy700 yvy720 (yvy700 <= yvy720)",fontsize=16,color="magenta"];3810 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3811[label="EQ",fontsize=16,color="green",shape="box"];3812[label="primCmpFloat (Float yvy7000 (Pos yvy70010)) (Float yvy7200 (Pos yvy72010))",fontsize=16,color="black",shape="box"];3812 -> 3972[label="",style="solid", color="black", weight=3]; 3813[label="primCmpFloat (Float yvy7000 (Pos yvy70010)) (Float yvy7200 (Neg yvy72010))",fontsize=16,color="black",shape="box"];3813 -> 3973[label="",style="solid", color="black", weight=3]; 3814[label="primCmpFloat (Float yvy7000 (Neg yvy70010)) (Float yvy7200 (Pos yvy72010))",fontsize=16,color="black",shape="box"];3814 -> 3974[label="",style="solid", color="black", weight=3]; 3815[label="primCmpFloat (Float yvy7000 (Neg yvy70010)) (Float yvy7200 (Neg yvy72010))",fontsize=16,color="black",shape="box"];3815 -> 3975[label="",style="solid", color="black", weight=3]; 3816 -> 3976[label="",style="dashed", color="red", weight=0]; 3816[label="compare1 yvy700 yvy720 (yvy700 <= yvy720)",fontsize=16,color="magenta"];3816 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3817[label="EQ",fontsize=16,color="green",shape="box"];3818[label="yvy7001",fontsize=16,color="green",shape="box"];3819[label="yvy7201",fontsize=16,color="green",shape="box"];3820 -> 3978[label="",style="dashed", color="red", weight=0]; 3820[label="primCompAux0 yvy196 (compare yvy7000 yvy7200)",fontsize=16,color="magenta"];3820 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3820 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3821[label="primCmpDouble (Double yvy7000 (Pos yvy70010)) (Double yvy7200 (Pos yvy72010))",fontsize=16,color="black",shape="box"];3821 -> 3981[label="",style="solid", color="black", weight=3]; 3822[label="primCmpDouble (Double yvy7000 (Pos yvy70010)) (Double yvy7200 (Neg yvy72010))",fontsize=16,color="black",shape="box"];3822 -> 3982[label="",style="solid", color="black", weight=3]; 3823[label="primCmpDouble (Double yvy7000 (Neg yvy70010)) (Double yvy7200 (Pos yvy72010))",fontsize=16,color="black",shape="box"];3823 -> 3983[label="",style="solid", color="black", weight=3]; 3824[label="primCmpDouble (Double yvy7000 (Neg yvy70010)) (Double yvy7200 (Neg yvy72010))",fontsize=16,color="black",shape="box"];3824 -> 3984[label="",style="solid", color="black", weight=3]; 3825[label="True",fontsize=16,color="green",shape="box"];3826[label="False",fontsize=16,color="green",shape="box"];3849 -> 2428[label="",style="dashed", color="red", weight=0]; 3849[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3849 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3849 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3850 -> 2429[label="",style="dashed", color="red", weight=0]; 3850[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3850 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3850 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3851 -> 2422[label="",style="dashed", color="red", weight=0]; 3851[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3851 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3851 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3852 -> 2423[label="",style="dashed", color="red", weight=0]; 3852[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3852 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3852 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3853 -> 2418[label="",style="dashed", color="red", weight=0]; 3853[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3853 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3853 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3854 -> 2416[label="",style="dashed", color="red", weight=0]; 3854[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3854 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3854 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3855 -> 2419[label="",style="dashed", color="red", weight=0]; 3855[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3855 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3855 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3856 -> 2420[label="",style="dashed", color="red", weight=0]; 3856[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3856 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3856 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3857 -> 96[label="",style="dashed", color="red", weight=0]; 3857[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3857 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3858 -> 2424[label="",style="dashed", color="red", weight=0]; 3858[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3858 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3858 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3859 -> 2426[label="",style="dashed", color="red", weight=0]; 3859[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3859 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3859 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3860 -> 2417[label="",style="dashed", color="red", weight=0]; 3860[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3860 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3860 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3861 -> 2427[label="",style="dashed", color="red", weight=0]; 3861[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3861 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3861 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3862 -> 2425[label="",style="dashed", color="red", weight=0]; 3862[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3862 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3862 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3863 -> 2405[label="",style="dashed", color="red", weight=0]; 3863[label="yvy7011 == yvy7211 && yvy7012 <= yvy7212",fontsize=16,color="magenta"];3863 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3863 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3864[label="yvy7011 < yvy7211",fontsize=16,color="blue",shape="box"];5469[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5469[label="",style="solid", color="blue", weight=9]; 5469 -> 4015[label="",style="solid", color="blue", weight=3]; 5470[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5470[label="",style="solid", color="blue", weight=9]; 5470 -> 4016[label="",style="solid", color="blue", weight=3]; 5471[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5471[label="",style="solid", color="blue", weight=9]; 5471 -> 4017[label="",style="solid", color="blue", weight=3]; 5472[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 4018[label="",style="solid", color="blue", weight=3]; 5473[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 4019[label="",style="solid", color="blue", weight=3]; 5474[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 4020[label="",style="solid", color="blue", weight=3]; 5475[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 4021[label="",style="solid", color="blue", weight=3]; 5476[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 4022[label="",style="solid", color="blue", weight=3]; 5477[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 4023[label="",style="solid", color="blue", weight=3]; 5478[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5478[label="",style="solid", color="blue", weight=9]; 5478 -> 4024[label="",style="solid", color="blue", weight=3]; 5479[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5479[label="",style="solid", color="blue", weight=9]; 5479 -> 4025[label="",style="solid", color="blue", weight=3]; 5480[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5480[label="",style="solid", color="blue", weight=9]; 5480 -> 4026[label="",style="solid", color="blue", weight=3]; 5481[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5481[label="",style="solid", color="blue", weight=9]; 5481 -> 4027[label="",style="solid", color="blue", weight=3]; 5482[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3864 -> 5482[label="",style="solid", color="blue", weight=9]; 5482 -> 4028[label="",style="solid", color="blue", weight=3]; 3865[label="yvy7010",fontsize=16,color="green",shape="box"];3866[label="yvy7210",fontsize=16,color="green",shape="box"];3867[label="yvy7010",fontsize=16,color="green",shape="box"];3868[label="yvy7210",fontsize=16,color="green",shape="box"];3869[label="yvy7010",fontsize=16,color="green",shape="box"];3870[label="yvy7210",fontsize=16,color="green",shape="box"];3871[label="yvy7010",fontsize=16,color="green",shape="box"];3872[label="yvy7210",fontsize=16,color="green",shape="box"];3873[label="yvy7010",fontsize=16,color="green",shape="box"];3874[label="yvy7210",fontsize=16,color="green",shape="box"];3875[label="yvy7010",fontsize=16,color="green",shape="box"];3876[label="yvy7210",fontsize=16,color="green",shape="box"];3877[label="yvy7010",fontsize=16,color="green",shape="box"];3878[label="yvy7210",fontsize=16,color="green",shape="box"];3879[label="yvy7010",fontsize=16,color="green",shape="box"];3880[label="yvy7210",fontsize=16,color="green",shape="box"];3881[label="yvy7010",fontsize=16,color="green",shape="box"];3882[label="yvy7210",fontsize=16,color="green",shape="box"];3883[label="yvy7010",fontsize=16,color="green",shape="box"];3884[label="yvy7210",fontsize=16,color="green",shape="box"];3885[label="yvy7010",fontsize=16,color="green",shape="box"];3886[label="yvy7210",fontsize=16,color="green",shape="box"];3887[label="yvy7010",fontsize=16,color="green",shape="box"];3888[label="yvy7210",fontsize=16,color="green",shape="box"];3889[label="yvy7010",fontsize=16,color="green",shape="box"];3890[label="yvy7210",fontsize=16,color="green",shape="box"];3891[label="yvy7010",fontsize=16,color="green",shape="box"];3892[label="yvy7210",fontsize=16,color="green",shape="box"];3893[label="yvy201",fontsize=16,color="green",shape="box"];3894[label="True",fontsize=16,color="green",shape="box"];3895 -> 2428[label="",style="dashed", color="red", weight=0]; 3895[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3895 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3895 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3896 -> 2429[label="",style="dashed", color="red", weight=0]; 3896[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3896 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3896 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3897 -> 2422[label="",style="dashed", color="red", weight=0]; 3897[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3897 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3897 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3898 -> 2423[label="",style="dashed", color="red", weight=0]; 3898[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3898 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3898 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3899 -> 2418[label="",style="dashed", color="red", weight=0]; 3899[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3899 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3899 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3900 -> 2416[label="",style="dashed", color="red", weight=0]; 3900[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3900 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3900 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3901 -> 2419[label="",style="dashed", color="red", weight=0]; 3901[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3901 -> 4041[label="",style="dashed", color="magenta", weight=3]; 3901 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3902 -> 2420[label="",style="dashed", color="red", weight=0]; 3902[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3902 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3902 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3903 -> 96[label="",style="dashed", color="red", weight=0]; 3903[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3903 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3903 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3904 -> 2424[label="",style="dashed", color="red", weight=0]; 3904[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3904 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3904 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3905 -> 2426[label="",style="dashed", color="red", weight=0]; 3905[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3905 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3905 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3906 -> 2417[label="",style="dashed", color="red", weight=0]; 3906[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3906 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3906 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3907 -> 2427[label="",style="dashed", color="red", weight=0]; 3907[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3907 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3907 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3908 -> 2425[label="",style="dashed", color="red", weight=0]; 3908[label="yvy7010 == yvy7210",fontsize=16,color="magenta"];3908 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4056[label="",style="dashed", color="magenta", weight=3]; 3909 -> 2767[label="",style="dashed", color="red", weight=0]; 3909[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3909 -> 4057[label="",style="dashed", color="magenta", weight=3]; 3909 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3910 -> 2768[label="",style="dashed", color="red", weight=0]; 3910[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3910 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3910 -> 4060[label="",style="dashed", color="magenta", weight=3]; 3911 -> 2769[label="",style="dashed", color="red", weight=0]; 3911[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3911 -> 4061[label="",style="dashed", color="magenta", weight=3]; 3911 -> 4062[label="",style="dashed", color="magenta", weight=3]; 3912 -> 2770[label="",style="dashed", color="red", weight=0]; 3912[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3912 -> 4063[label="",style="dashed", color="magenta", weight=3]; 3912 -> 4064[label="",style="dashed", color="magenta", weight=3]; 3913 -> 2771[label="",style="dashed", color="red", weight=0]; 3913[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3913 -> 4065[label="",style="dashed", color="magenta", weight=3]; 3913 -> 4066[label="",style="dashed", color="magenta", weight=3]; 3914 -> 2772[label="",style="dashed", color="red", weight=0]; 3914[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3914 -> 4067[label="",style="dashed", color="magenta", weight=3]; 3914 -> 4068[label="",style="dashed", color="magenta", weight=3]; 3915 -> 2773[label="",style="dashed", color="red", weight=0]; 3915[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3915 -> 4069[label="",style="dashed", color="magenta", weight=3]; 3915 -> 4070[label="",style="dashed", color="magenta", weight=3]; 3916 -> 2774[label="",style="dashed", color="red", weight=0]; 3916[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3916 -> 4071[label="",style="dashed", color="magenta", weight=3]; 3916 -> 4072[label="",style="dashed", color="magenta", weight=3]; 3917 -> 2775[label="",style="dashed", color="red", weight=0]; 3917[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3917 -> 4073[label="",style="dashed", color="magenta", weight=3]; 3917 -> 4074[label="",style="dashed", color="magenta", weight=3]; 3918 -> 2776[label="",style="dashed", color="red", weight=0]; 3918[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3918 -> 4075[label="",style="dashed", color="magenta", weight=3]; 3918 -> 4076[label="",style="dashed", color="magenta", weight=3]; 3919 -> 2777[label="",style="dashed", color="red", weight=0]; 3919[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3919 -> 4077[label="",style="dashed", color="magenta", weight=3]; 3919 -> 4078[label="",style="dashed", color="magenta", weight=3]; 3920 -> 2778[label="",style="dashed", color="red", weight=0]; 3920[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3920 -> 4079[label="",style="dashed", color="magenta", weight=3]; 3920 -> 4080[label="",style="dashed", color="magenta", weight=3]; 3921 -> 2779[label="",style="dashed", color="red", weight=0]; 3921[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3921 -> 4081[label="",style="dashed", color="magenta", weight=3]; 3921 -> 4082[label="",style="dashed", color="magenta", weight=3]; 3922 -> 2780[label="",style="dashed", color="red", weight=0]; 3922[label="yvy7011 <= yvy7211",fontsize=16,color="magenta"];3922 -> 4083[label="",style="dashed", color="magenta", weight=3]; 3922 -> 4084[label="",style="dashed", color="magenta", weight=3]; 3923[label="yvy7010",fontsize=16,color="green",shape="box"];3924[label="yvy7210",fontsize=16,color="green",shape="box"];3925[label="yvy7010",fontsize=16,color="green",shape="box"];3926[label="yvy7210",fontsize=16,color="green",shape="box"];3927[label="yvy7010",fontsize=16,color="green",shape="box"];3928[label="yvy7210",fontsize=16,color="green",shape="box"];3929[label="yvy7010",fontsize=16,color="green",shape="box"];3930[label="yvy7210",fontsize=16,color="green",shape="box"];3931[label="yvy7010",fontsize=16,color="green",shape="box"];3932[label="yvy7210",fontsize=16,color="green",shape="box"];3933[label="yvy7010",fontsize=16,color="green",shape="box"];3934[label="yvy7210",fontsize=16,color="green",shape="box"];3935[label="yvy7010",fontsize=16,color="green",shape="box"];3936[label="yvy7210",fontsize=16,color="green",shape="box"];3937[label="yvy7010",fontsize=16,color="green",shape="box"];3938[label="yvy7210",fontsize=16,color="green",shape="box"];3939[label="yvy7010",fontsize=16,color="green",shape="box"];3940[label="yvy7210",fontsize=16,color="green",shape="box"];3941[label="yvy7010",fontsize=16,color="green",shape="box"];3942[label="yvy7210",fontsize=16,color="green",shape="box"];3943[label="yvy7010",fontsize=16,color="green",shape="box"];3944[label="yvy7210",fontsize=16,color="green",shape="box"];3945[label="yvy7010",fontsize=16,color="green",shape="box"];3946[label="yvy7210",fontsize=16,color="green",shape="box"];3947[label="yvy7010",fontsize=16,color="green",shape="box"];3948[label="yvy7210",fontsize=16,color="green",shape="box"];3949[label="yvy7010",fontsize=16,color="green",shape="box"];3950[label="yvy7210",fontsize=16,color="green",shape="box"];4420 -> 4261[label="",style="dashed", color="red", weight=0]; 4420[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];4420 -> 4459[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4460[label="",style="dashed", color="magenta", weight=3]; 4421[label="yvy6200",fontsize=16,color="green",shape="box"];4422[label="Succ (Succ (primPlusNat yvy2220 yvy301000))",fontsize=16,color="green",shape="box"];4422 -> 4461[label="",style="dashed", color="green", weight=3]; 4423[label="Succ yvy301000",fontsize=16,color="green",shape="box"];2851 -> 3629[label="",style="dashed", color="red", weight=0]; 2851[label="primCmpNat (Succ yvy7000) yvy720",fontsize=16,color="magenta"];2851 -> 3833[label="",style="dashed", color="magenta", weight=3]; 2851 -> 3834[label="",style="dashed", color="magenta", weight=3]; 2852[label="GT",fontsize=16,color="green",shape="box"];2853[label="primCmpInt (Pos Zero) (Pos (Succ yvy7200))",fontsize=16,color="black",shape="box"];2853 -> 3835[label="",style="solid", color="black", weight=3]; 2854[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2854 -> 3836[label="",style="solid", color="black", weight=3]; 2855[label="primCmpInt (Pos Zero) (Neg (Succ yvy7200))",fontsize=16,color="black",shape="box"];2855 -> 3837[label="",style="solid", color="black", weight=3]; 2856[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2856 -> 3838[label="",style="solid", color="black", weight=3]; 2857[label="LT",fontsize=16,color="green",shape="box"];2858 -> 3629[label="",style="dashed", color="red", weight=0]; 2858[label="primCmpNat yvy720 (Succ yvy7000)",fontsize=16,color="magenta"];2858 -> 3839[label="",style="dashed", color="magenta", weight=3]; 2858 -> 3840[label="",style="dashed", color="magenta", weight=3]; 2859[label="primCmpInt (Neg Zero) (Pos (Succ yvy7200))",fontsize=16,color="black",shape="box"];2859 -> 3841[label="",style="solid", color="black", weight=3]; 2860[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2860 -> 3842[label="",style="solid", color="black", weight=3]; 2861[label="primCmpInt (Neg Zero) (Neg (Succ yvy7200))",fontsize=16,color="black",shape="box"];2861 -> 3843[label="",style="solid", color="black", weight=3]; 2862[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2862 -> 3844[label="",style="solid", color="black", weight=3]; 4750[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261",fontsize=16,color="black",shape="box"];4750 -> 4752[label="",style="solid", color="black", weight=3]; 4749[label="primPlusInt yvy265 (FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)",fontsize=16,color="burlywood",shape="triangle"];5483[label="yvy265/Pos yvy2650",fontsize=10,color="white",style="solid",shape="box"];4749 -> 5483[label="",style="solid", color="burlywood", weight=9]; 5483 -> 4753[label="",style="solid", color="burlywood", weight=3]; 5484[label="yvy265/Neg yvy2650",fontsize=10,color="white",style="solid",shape="box"];4749 -> 5484[label="",style="solid", color="burlywood", weight=9]; 5484 -> 4754[label="",style="solid", color="burlywood", weight=3]; 4224[label="Zero",fontsize=16,color="green",shape="box"];4225 -> 3449[label="",style="dashed", color="red", weight=0]; 4225[label="FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM yvy50 yvy51 yvy54",fontsize=16,color="magenta"];4225 -> 4229[label="",style="dashed", color="magenta", weight=3]; 4223[label="primPlusInt (Pos yvy8220) yvy217",fontsize=16,color="burlywood",shape="triangle"];5485[label="yvy217/Pos yvy2170",fontsize=10,color="white",style="solid",shape="box"];4223 -> 5485[label="",style="solid", color="burlywood", weight=9]; 5485 -> 4230[label="",style="solid", color="burlywood", weight=3]; 5486[label="yvy217/Neg yvy2170",fontsize=10,color="white",style="solid",shape="box"];4223 -> 5486[label="",style="solid", color="burlywood", weight=9]; 5486 -> 4231[label="",style="solid", color="burlywood", weight=3]; 2865[label="primPlusInt (Pos yvy8220) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch yvy820 yvy821 (Pos yvy8220) yvy823 yvy824) yvy50 yvy51 yvy54)",fontsize=16,color="black",shape="box"];2865 -> 4088[label="",style="solid", color="black", weight=3]; 2866[label="primPlusInt (Neg yvy8220) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch yvy820 yvy821 (Neg yvy8220) yvy823 yvy824) yvy50 yvy51 yvy54)",fontsize=16,color="black",shape="box"];2866 -> 4089[label="",style="solid", color="black", weight=3]; 3827 -> 3449[label="",style="dashed", color="red", weight=0]; 3827[label="FiniteMap.mkBalBranch6Size_r yvy82 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3828 -> 1805[label="",style="dashed", color="red", weight=0]; 3828[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3951[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 otherwise",fontsize=16,color="black",shape="box"];3951 -> 4090[label="",style="solid", color="black", weight=3]; 3952[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy82 yvy50 yvy51 yvy54 yvy82 yvy54 yvy82",fontsize=16,color="burlywood",shape="box"];5487[label="yvy82/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3952 -> 5487[label="",style="solid", color="burlywood", weight=9]; 5487 -> 4091[label="",style="solid", color="burlywood", weight=3]; 5488[label="yvy82/FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824",fontsize=10,color="white",style="solid",shape="box"];3952 -> 5488[label="",style="solid", color="burlywood", weight=9]; 5488 -> 4092[label="",style="solid", color="burlywood", weight=3]; 3829 -> 4093[label="",style="dashed", color="red", weight=0]; 3829[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (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"];3829 -> 4094[label="",style="dashed", color="magenta", weight=3]; 4424 -> 4261[label="",style="dashed", color="red", weight=0]; 4424[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];4424 -> 4462[label="",style="dashed", color="magenta", weight=3]; 4424 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4425[label="yvy6200",fontsize=16,color="green",shape="box"];2867[label="primMulNat (Succ yvy401100) (Succ yvy301000)",fontsize=16,color="black",shape="box"];2867 -> 4097[label="",style="solid", color="black", weight=3]; 2868[label="primMulNat (Succ yvy401100) Zero",fontsize=16,color="black",shape="box"];2868 -> 4098[label="",style="solid", color="black", weight=3]; 2869[label="primMulNat Zero (Succ yvy301000)",fontsize=16,color="black",shape="box"];2869 -> 4099[label="",style="solid", color="black", weight=3]; 2870[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2870 -> 4100[label="",style="solid", color="black", weight=3]; 3954 -> 2767[label="",style="dashed", color="red", weight=0]; 3954[label="yvy700 <= yvy720",fontsize=16,color="magenta"];3954 -> 4101[label="",style="dashed", color="magenta", weight=3]; 3954 -> 4102[label="",style="dashed", color="magenta", weight=3]; 3953[label="compare1 yvy700 yvy720 yvy203",fontsize=16,color="burlywood",shape="triangle"];5489[label="yvy203/False",fontsize=10,color="white",style="solid",shape="box"];3953 -> 5489[label="",style="solid", color="burlywood", weight=9]; 5489 -> 4103[label="",style="solid", color="burlywood", weight=3]; 5490[label="yvy203/True",fontsize=10,color="white",style="solid",shape="box"];3953 -> 5490[label="",style="solid", color="burlywood", weight=9]; 5490 -> 4104[label="",style="solid", color="burlywood", weight=3]; 3955[label="primCmpNat (Succ yvy70000) (Succ yvy72000)",fontsize=16,color="black",shape="box"];3955 -> 4105[label="",style="solid", color="black", weight=3]; 3956[label="primCmpNat (Succ yvy70000) Zero",fontsize=16,color="black",shape="box"];3956 -> 4106[label="",style="solid", color="black", weight=3]; 3957[label="primCmpNat Zero (Succ yvy72000)",fontsize=16,color="black",shape="box"];3957 -> 4107[label="",style="solid", color="black", weight=3]; 3958[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3958 -> 4108[label="",style="solid", color="black", weight=3]; 3960 -> 2769[label="",style="dashed", color="red", weight=0]; 3960[label="yvy700 <= yvy720",fontsize=16,color="magenta"];3960 -> 4109[label="",style="dashed", color="magenta", weight=3]; 3960 -> 4110[label="",style="dashed", color="magenta", weight=3]; 3959[label="compare1 yvy700 yvy720 yvy204",fontsize=16,color="burlywood",shape="triangle"];5491[label="yvy204/False",fontsize=10,color="white",style="solid",shape="box"];3959 -> 5491[label="",style="solid", color="burlywood", weight=9]; 5491 -> 4111[label="",style="solid", color="burlywood", weight=3]; 5492[label="yvy204/True",fontsize=10,color="white",style="solid",shape="box"];3959 -> 5492[label="",style="solid", color="burlywood", weight=9]; 5492 -> 4112[label="",style="solid", color="burlywood", weight=3]; 3961[label="Integer yvy70000 * yvy7201",fontsize=16,color="burlywood",shape="box"];5493[label="yvy7201/Integer yvy72010",fontsize=10,color="white",style="solid",shape="box"];3961 -> 5493[label="",style="solid", color="burlywood", weight=9]; 5493 -> 4113[label="",style="solid", color="burlywood", weight=3]; 3962[label="yvy7200",fontsize=16,color="green",shape="box"];3963[label="yvy7001",fontsize=16,color="green",shape="box"];3964[label="yvy7201",fontsize=16,color="green",shape="box"];3965[label="yvy7000",fontsize=16,color="green",shape="box"];3966[label="yvy7001",fontsize=16,color="green",shape="box"];3967[label="yvy7200",fontsize=16,color="green",shape="box"];3969 -> 2774[label="",style="dashed", color="red", weight=0]; 3969[label="yvy700 <= yvy720",fontsize=16,color="magenta"];3969 -> 4114[label="",style="dashed", color="magenta", weight=3]; 3969 -> 4115[label="",style="dashed", color="magenta", weight=3]; 3968[label="compare1 yvy700 yvy720 yvy205",fontsize=16,color="burlywood",shape="triangle"];5494[label="yvy205/False",fontsize=10,color="white",style="solid",shape="box"];3968 -> 5494[label="",style="solid", color="burlywood", weight=9]; 5494 -> 4116[label="",style="solid", color="burlywood", weight=3]; 5495[label="yvy205/True",fontsize=10,color="white",style="solid",shape="box"];3968 -> 5495[label="",style="solid", color="burlywood", weight=9]; 5495 -> 4117[label="",style="solid", color="burlywood", weight=3]; 3971 -> 2775[label="",style="dashed", color="red", weight=0]; 3971[label="yvy700 <= yvy720",fontsize=16,color="magenta"];3971 -> 4118[label="",style="dashed", color="magenta", weight=3]; 3971 -> 4119[label="",style="dashed", color="magenta", weight=3]; 3970[label="compare1 yvy700 yvy720 yvy206",fontsize=16,color="burlywood",shape="triangle"];5496[label="yvy206/False",fontsize=10,color="white",style="solid",shape="box"];3970 -> 5496[label="",style="solid", color="burlywood", weight=9]; 5496 -> 4120[label="",style="solid", color="burlywood", weight=3]; 5497[label="yvy206/True",fontsize=10,color="white",style="solid",shape="box"];3970 -> 5497[label="",style="solid", color="burlywood", weight=9]; 5497 -> 4121[label="",style="solid", color="burlywood", weight=3]; 3972 -> 1675[label="",style="dashed", color="red", weight=0]; 3972[label="compare (yvy7000 * Pos yvy72010) (Pos yvy70010 * yvy7200)",fontsize=16,color="magenta"];3972 -> 4122[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4123[label="",style="dashed", color="magenta", weight=3]; 3973 -> 1675[label="",style="dashed", color="red", weight=0]; 3973[label="compare (yvy7000 * Pos yvy72010) (Neg yvy70010 * yvy7200)",fontsize=16,color="magenta"];3973 -> 4124[label="",style="dashed", color="magenta", weight=3]; 3973 -> 4125[label="",style="dashed", color="magenta", weight=3]; 3974 -> 1675[label="",style="dashed", color="red", weight=0]; 3974[label="compare (yvy7000 * Neg yvy72010) (Pos yvy70010 * yvy7200)",fontsize=16,color="magenta"];3974 -> 4126[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4127[label="",style="dashed", color="magenta", weight=3]; 3975 -> 1675[label="",style="dashed", color="red", weight=0]; 3975[label="compare (yvy7000 * Neg yvy72010) (Neg yvy70010 * yvy7200)",fontsize=16,color="magenta"];3975 -> 4128[label="",style="dashed", color="magenta", weight=3]; 3975 -> 4129[label="",style="dashed", color="magenta", weight=3]; 3977 -> 2778[label="",style="dashed", color="red", weight=0]; 3977[label="yvy700 <= yvy720",fontsize=16,color="magenta"];3977 -> 4130[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4131[label="",style="dashed", color="magenta", weight=3]; 3976[label="compare1 yvy700 yvy720 yvy207",fontsize=16,color="burlywood",shape="triangle"];5498[label="yvy207/False",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5498[label="",style="solid", color="burlywood", weight=9]; 5498 -> 4132[label="",style="solid", color="burlywood", weight=3]; 5499[label="yvy207/True",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5499[label="",style="solid", color="burlywood", weight=9]; 5499 -> 4133[label="",style="solid", color="burlywood", weight=3]; 3979[label="yvy196",fontsize=16,color="green",shape="box"];3980[label="compare yvy7000 yvy7200",fontsize=16,color="blue",shape="box"];5500[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 4134[label="",style="solid", color="blue", weight=3]; 5501[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 4135[label="",style="solid", color="blue", weight=3]; 5502[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 4136[label="",style="solid", color="blue", weight=3]; 5503[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 4137[label="",style="solid", color="blue", weight=3]; 5504[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 4138[label="",style="solid", color="blue", weight=3]; 5505[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 4139[label="",style="solid", color="blue", weight=3]; 5506[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 4140[label="",style="solid", color="blue", weight=3]; 5507[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 4141[label="",style="solid", color="blue", weight=3]; 5508[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 4142[label="",style="solid", color="blue", weight=3]; 5509[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5509[label="",style="solid", color="blue", weight=9]; 5509 -> 4143[label="",style="solid", color="blue", weight=3]; 5510[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5510[label="",style="solid", color="blue", weight=9]; 5510 -> 4144[label="",style="solid", color="blue", weight=3]; 5511[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5511[label="",style="solid", color="blue", weight=9]; 5511 -> 4145[label="",style="solid", color="blue", weight=3]; 5512[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5512[label="",style="solid", color="blue", weight=9]; 5512 -> 4146[label="",style="solid", color="blue", weight=3]; 5513[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3980 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 4147[label="",style="solid", color="blue", weight=3]; 3978[label="primCompAux0 yvy211 yvy212",fontsize=16,color="burlywood",shape="triangle"];5514[label="yvy212/LT",fontsize=10,color="white",style="solid",shape="box"];3978 -> 5514[label="",style="solid", color="burlywood", weight=9]; 5514 -> 4148[label="",style="solid", color="burlywood", weight=3]; 5515[label="yvy212/EQ",fontsize=10,color="white",style="solid",shape="box"];3978 -> 5515[label="",style="solid", color="burlywood", weight=9]; 5515 -> 4149[label="",style="solid", color="burlywood", weight=3]; 5516[label="yvy212/GT",fontsize=10,color="white",style="solid",shape="box"];3978 -> 5516[label="",style="solid", color="burlywood", weight=9]; 5516 -> 4150[label="",style="solid", color="burlywood", weight=3]; 3981 -> 1675[label="",style="dashed", color="red", weight=0]; 3981[label="compare (yvy7000 * Pos yvy72010) (Pos yvy70010 * yvy7200)",fontsize=16,color="magenta"];3981 -> 4151[label="",style="dashed", color="magenta", weight=3]; 3981 -> 4152[label="",style="dashed", color="magenta", weight=3]; 3982 -> 1675[label="",style="dashed", color="red", weight=0]; 3982[label="compare (yvy7000 * Pos yvy72010) (Neg yvy70010 * yvy7200)",fontsize=16,color="magenta"];3982 -> 4153[label="",style="dashed", color="magenta", weight=3]; 3982 -> 4154[label="",style="dashed", color="magenta", weight=3]; 3983 -> 1675[label="",style="dashed", color="red", weight=0]; 3983[label="compare (yvy7000 * Neg yvy72010) (Pos yvy70010 * yvy7200)",fontsize=16,color="magenta"];3983 -> 4155[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4156[label="",style="dashed", color="magenta", weight=3]; 3984 -> 1675[label="",style="dashed", color="red", weight=0]; 3984[label="compare (yvy7000 * Neg yvy72010) (Neg yvy70010 * yvy7200)",fontsize=16,color="magenta"];3984 -> 4157[label="",style="dashed", color="magenta", weight=3]; 3984 -> 4158[label="",style="dashed", color="magenta", weight=3]; 3985[label="yvy7210",fontsize=16,color="green",shape="box"];3986[label="yvy7010",fontsize=16,color="green",shape="box"];3987[label="yvy7210",fontsize=16,color="green",shape="box"];3988[label="yvy7010",fontsize=16,color="green",shape="box"];3989[label="yvy7210",fontsize=16,color="green",shape="box"];3990[label="yvy7010",fontsize=16,color="green",shape="box"];3991[label="yvy7210",fontsize=16,color="green",shape="box"];3992[label="yvy7010",fontsize=16,color="green",shape="box"];3993[label="yvy7210",fontsize=16,color="green",shape="box"];3994[label="yvy7010",fontsize=16,color="green",shape="box"];3995[label="yvy7210",fontsize=16,color="green",shape="box"];3996[label="yvy7010",fontsize=16,color="green",shape="box"];3997[label="yvy7210",fontsize=16,color="green",shape="box"];3998[label="yvy7010",fontsize=16,color="green",shape="box"];3999[label="yvy7210",fontsize=16,color="green",shape="box"];4000[label="yvy7010",fontsize=16,color="green",shape="box"];4001[label="yvy7210",fontsize=16,color="green",shape="box"];4002[label="yvy7010",fontsize=16,color="green",shape="box"];4003[label="yvy7210",fontsize=16,color="green",shape="box"];4004[label="yvy7010",fontsize=16,color="green",shape="box"];4005[label="yvy7210",fontsize=16,color="green",shape="box"];4006[label="yvy7010",fontsize=16,color="green",shape="box"];4007[label="yvy7210",fontsize=16,color="green",shape="box"];4008[label="yvy7010",fontsize=16,color="green",shape="box"];4009[label="yvy7210",fontsize=16,color="green",shape="box"];4010[label="yvy7010",fontsize=16,color="green",shape="box"];4011[label="yvy7210",fontsize=16,color="green",shape="box"];4012[label="yvy7010",fontsize=16,color="green",shape="box"];4013[label="yvy7011 == yvy7211",fontsize=16,color="blue",shape="box"];5517[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 4159[label="",style="solid", color="blue", weight=3]; 5518[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 4160[label="",style="solid", color="blue", weight=3]; 5519[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 4161[label="",style="solid", color="blue", weight=3]; 5520[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5520[label="",style="solid", color="blue", weight=9]; 5520 -> 4162[label="",style="solid", color="blue", weight=3]; 5521[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5521[label="",style="solid", color="blue", weight=9]; 5521 -> 4163[label="",style="solid", color="blue", weight=3]; 5522[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5522[label="",style="solid", color="blue", weight=9]; 5522 -> 4164[label="",style="solid", color="blue", weight=3]; 5523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5523[label="",style="solid", color="blue", weight=9]; 5523 -> 4165[label="",style="solid", color="blue", weight=3]; 5524[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 4166[label="",style="solid", color="blue", weight=3]; 5525[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 4167[label="",style="solid", color="blue", weight=3]; 5526[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5526[label="",style="solid", color="blue", weight=9]; 5526 -> 4168[label="",style="solid", color="blue", weight=3]; 5527[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5527[label="",style="solid", color="blue", weight=9]; 5527 -> 4169[label="",style="solid", color="blue", weight=3]; 5528[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5528[label="",style="solid", color="blue", weight=9]; 5528 -> 4170[label="",style="solid", color="blue", weight=3]; 5529[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5529[label="",style="solid", color="blue", weight=9]; 5529 -> 4171[label="",style="solid", color="blue", weight=3]; 5530[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5530[label="",style="solid", color="blue", weight=9]; 5530 -> 4172[label="",style="solid", color="blue", weight=3]; 4014[label="yvy7012 <= yvy7212",fontsize=16,color="blue",shape="box"];5531[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5531[label="",style="solid", color="blue", weight=9]; 5531 -> 4173[label="",style="solid", color="blue", weight=3]; 5532[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5532[label="",style="solid", color="blue", weight=9]; 5532 -> 4174[label="",style="solid", color="blue", weight=3]; 5533[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5533[label="",style="solid", color="blue", weight=9]; 5533 -> 4175[label="",style="solid", color="blue", weight=3]; 5534[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 4176[label="",style="solid", color="blue", weight=3]; 5535[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 4177[label="",style="solid", color="blue", weight=3]; 5536[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 4178[label="",style="solid", color="blue", weight=3]; 5537[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 4179[label="",style="solid", color="blue", weight=3]; 5538[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5538[label="",style="solid", color="blue", weight=9]; 5538 -> 4180[label="",style="solid", color="blue", weight=3]; 5539[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5539[label="",style="solid", color="blue", weight=9]; 5539 -> 4181[label="",style="solid", color="blue", weight=3]; 5540[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 4182[label="",style="solid", color="blue", weight=3]; 5541[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 4183[label="",style="solid", color="blue", weight=3]; 5542[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5542[label="",style="solid", color="blue", weight=9]; 5542 -> 4184[label="",style="solid", color="blue", weight=3]; 5543[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5543[label="",style="solid", color="blue", weight=9]; 5543 -> 4185[label="",style="solid", color="blue", weight=3]; 5544[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 4186[label="",style="solid", color="blue", weight=3]; 4015 -> 2662[label="",style="dashed", color="red", weight=0]; 4015[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4015 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4015 -> 4188[label="",style="dashed", color="magenta", weight=3]; 4016 -> 2663[label="",style="dashed", color="red", weight=0]; 4016[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4016 -> 4189[label="",style="dashed", color="magenta", weight=3]; 4016 -> 4190[label="",style="dashed", color="magenta", weight=3]; 4017 -> 2664[label="",style="dashed", color="red", weight=0]; 4017[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4017 -> 4191[label="",style="dashed", color="magenta", weight=3]; 4017 -> 4192[label="",style="dashed", color="magenta", weight=3]; 4018 -> 2665[label="",style="dashed", color="red", weight=0]; 4018[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4018 -> 4193[label="",style="dashed", color="magenta", weight=3]; 4018 -> 4194[label="",style="dashed", color="magenta", weight=3]; 4019 -> 2666[label="",style="dashed", color="red", weight=0]; 4019[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4019 -> 4195[label="",style="dashed", color="magenta", weight=3]; 4019 -> 4196[label="",style="dashed", color="magenta", weight=3]; 4020 -> 2667[label="",style="dashed", color="red", weight=0]; 4020[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4020 -> 4197[label="",style="dashed", color="magenta", weight=3]; 4020 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4021 -> 2668[label="",style="dashed", color="red", weight=0]; 4021[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4021 -> 4199[label="",style="dashed", color="magenta", weight=3]; 4021 -> 4200[label="",style="dashed", color="magenta", weight=3]; 4022 -> 2669[label="",style="dashed", color="red", weight=0]; 4022[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4022 -> 4201[label="",style="dashed", color="magenta", weight=3]; 4022 -> 4202[label="",style="dashed", color="magenta", weight=3]; 4023 -> 2670[label="",style="dashed", color="red", weight=0]; 4023[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4023 -> 4203[label="",style="dashed", color="magenta", weight=3]; 4023 -> 4204[label="",style="dashed", color="magenta", weight=3]; 4024 -> 2671[label="",style="dashed", color="red", weight=0]; 4024[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4024 -> 4205[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4206[label="",style="dashed", color="magenta", weight=3]; 4025 -> 2672[label="",style="dashed", color="red", weight=0]; 4025[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4025 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4208[label="",style="dashed", color="magenta", weight=3]; 4026 -> 2673[label="",style="dashed", color="red", weight=0]; 4026[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4026 -> 4209[label="",style="dashed", color="magenta", weight=3]; 4026 -> 4210[label="",style="dashed", color="magenta", weight=3]; 4027 -> 2674[label="",style="dashed", color="red", weight=0]; 4027[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4027 -> 4211[label="",style="dashed", color="magenta", weight=3]; 4027 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4028 -> 2675[label="",style="dashed", color="red", weight=0]; 4028[label="yvy7011 < yvy7211",fontsize=16,color="magenta"];4028 -> 4213[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4029[label="yvy7210",fontsize=16,color="green",shape="box"];4030[label="yvy7010",fontsize=16,color="green",shape="box"];4031[label="yvy7210",fontsize=16,color="green",shape="box"];4032[label="yvy7010",fontsize=16,color="green",shape="box"];4033[label="yvy7210",fontsize=16,color="green",shape="box"];4034[label="yvy7010",fontsize=16,color="green",shape="box"];4035[label="yvy7210",fontsize=16,color="green",shape="box"];4036[label="yvy7010",fontsize=16,color="green",shape="box"];4037[label="yvy7210",fontsize=16,color="green",shape="box"];4038[label="yvy7010",fontsize=16,color="green",shape="box"];4039[label="yvy7210",fontsize=16,color="green",shape="box"];4040[label="yvy7010",fontsize=16,color="green",shape="box"];4041[label="yvy7210",fontsize=16,color="green",shape="box"];4042[label="yvy7010",fontsize=16,color="green",shape="box"];4043[label="yvy7210",fontsize=16,color="green",shape="box"];4044[label="yvy7010",fontsize=16,color="green",shape="box"];4045[label="yvy7210",fontsize=16,color="green",shape="box"];4046[label="yvy7010",fontsize=16,color="green",shape="box"];4047[label="yvy7210",fontsize=16,color="green",shape="box"];4048[label="yvy7010",fontsize=16,color="green",shape="box"];4049[label="yvy7210",fontsize=16,color="green",shape="box"];4050[label="yvy7010",fontsize=16,color="green",shape="box"];4051[label="yvy7210",fontsize=16,color="green",shape="box"];4052[label="yvy7010",fontsize=16,color="green",shape="box"];4053[label="yvy7210",fontsize=16,color="green",shape="box"];4054[label="yvy7010",fontsize=16,color="green",shape="box"];4055[label="yvy7210",fontsize=16,color="green",shape="box"];4056[label="yvy7010",fontsize=16,color="green",shape="box"];4057[label="yvy7211",fontsize=16,color="green",shape="box"];4058[label="yvy7011",fontsize=16,color="green",shape="box"];4059[label="yvy7211",fontsize=16,color="green",shape="box"];4060[label="yvy7011",fontsize=16,color="green",shape="box"];4061[label="yvy7211",fontsize=16,color="green",shape="box"];4062[label="yvy7011",fontsize=16,color="green",shape="box"];4063[label="yvy7211",fontsize=16,color="green",shape="box"];4064[label="yvy7011",fontsize=16,color="green",shape="box"];4065[label="yvy7211",fontsize=16,color="green",shape="box"];4066[label="yvy7011",fontsize=16,color="green",shape="box"];4067[label="yvy7211",fontsize=16,color="green",shape="box"];4068[label="yvy7011",fontsize=16,color="green",shape="box"];4069[label="yvy7211",fontsize=16,color="green",shape="box"];4070[label="yvy7011",fontsize=16,color="green",shape="box"];4071[label="yvy7211",fontsize=16,color="green",shape="box"];4072[label="yvy7011",fontsize=16,color="green",shape="box"];4073[label="yvy7211",fontsize=16,color="green",shape="box"];4074[label="yvy7011",fontsize=16,color="green",shape="box"];4075[label="yvy7211",fontsize=16,color="green",shape="box"];4076[label="yvy7011",fontsize=16,color="green",shape="box"];4077[label="yvy7211",fontsize=16,color="green",shape="box"];4078[label="yvy7011",fontsize=16,color="green",shape="box"];4079[label="yvy7211",fontsize=16,color="green",shape="box"];4080[label="yvy7011",fontsize=16,color="green",shape="box"];4081[label="yvy7211",fontsize=16,color="green",shape="box"];4082[label="yvy7011",fontsize=16,color="green",shape="box"];4083[label="yvy7211",fontsize=16,color="green",shape="box"];4084[label="yvy7011",fontsize=16,color="green",shape="box"];4459[label="Succ yvy6200",fontsize=16,color="green",shape="box"];4460[label="yvy6200",fontsize=16,color="green",shape="box"];4461 -> 4429[label="",style="dashed", color="red", weight=0]; 4461[label="primPlusNat yvy2220 yvy301000",fontsize=16,color="magenta"];4461 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4461 -> 4479[label="",style="dashed", color="magenta", weight=3]; 3833[label="Succ yvy7000",fontsize=16,color="green",shape="box"];3834[label="yvy720",fontsize=16,color="green",shape="box"];3835 -> 3629[label="",style="dashed", color="red", weight=0]; 3835[label="primCmpNat Zero (Succ yvy7200)",fontsize=16,color="magenta"];3835 -> 4216[label="",style="dashed", color="magenta", weight=3]; 3835 -> 4217[label="",style="dashed", color="magenta", weight=3]; 3836[label="EQ",fontsize=16,color="green",shape="box"];3837[label="GT",fontsize=16,color="green",shape="box"];3838[label="EQ",fontsize=16,color="green",shape="box"];3839[label="yvy720",fontsize=16,color="green",shape="box"];3840[label="Succ yvy7000",fontsize=16,color="green",shape="box"];3841[label="LT",fontsize=16,color="green",shape="box"];3842[label="EQ",fontsize=16,color="green",shape="box"];3843 -> 3629[label="",style="dashed", color="red", weight=0]; 3843[label="primCmpNat (Succ yvy7200) Zero",fontsize=16,color="magenta"];3843 -> 4218[label="",style="dashed", color="magenta", weight=3]; 3843 -> 4219[label="",style="dashed", color="magenta", weight=3]; 3844[label="EQ",fontsize=16,color="green",shape="box"];4752 -> 4223[label="",style="dashed", color="red", weight=0]; 4752[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261)",fontsize=16,color="magenta"];4752 -> 4755[label="",style="dashed", color="magenta", weight=3]; 4752 -> 4756[label="",style="dashed", color="magenta", weight=3]; 4753[label="primPlusInt (Pos yvy2650) (FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)",fontsize=16,color="black",shape="box"];4753 -> 4757[label="",style="solid", color="black", weight=3]; 4754[label="primPlusInt (Neg yvy2650) (FiniteMap.mkBranchRight_size yvy263 yvy264 yvy261)",fontsize=16,color="black",shape="box"];4754 -> 4758[label="",style="solid", color="black", weight=3]; 4229[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];4230[label="primPlusInt (Pos yvy8220) (Pos yvy2170)",fontsize=16,color="black",shape="box"];4230 -> 4234[label="",style="solid", color="black", weight=3]; 4231[label="primPlusInt (Pos yvy8220) (Neg yvy2170)",fontsize=16,color="black",shape="box"];4231 -> 4235[label="",style="solid", color="black", weight=3]; 4088 -> 4223[label="",style="dashed", color="red", weight=0]; 4088[label="primPlusInt (Pos yvy8220) (FiniteMap.sizeFM yvy54)",fontsize=16,color="magenta"];4088 -> 4228[label="",style="dashed", color="magenta", weight=3]; 4089 -> 4232[label="",style="dashed", color="red", weight=0]; 4089[label="primPlusInt (Neg yvy8220) (FiniteMap.sizeFM yvy54)",fontsize=16,color="magenta"];4089 -> 4233[label="",style="dashed", color="magenta", weight=3]; 4090[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy82 yvy50 yvy51 yvy54 yvy50 yvy51 yvy82 yvy54 True",fontsize=16,color="black",shape="box"];4090 -> 4236[label="",style="solid", color="black", weight=3]; 4091[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM yvy50 yvy51 yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4091 -> 4237[label="",style="solid", color="black", weight=3]; 4092[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824)",fontsize=16,color="black",shape="box"];4092 -> 4238[label="",style="solid", color="black", weight=3]; 4094 -> 2671[label="",style="dashed", color="red", weight=0]; 4094[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];4094 -> 4239[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4240[label="",style="dashed", color="magenta", weight=3]; 4093[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy213",fontsize=16,color="burlywood",shape="triangle"];5545[label="yvy213/False",fontsize=10,color="white",style="solid",shape="box"];4093 -> 5545[label="",style="solid", color="burlywood", weight=9]; 5545 -> 4241[label="",style="solid", color="burlywood", weight=3]; 5546[label="yvy213/True",fontsize=10,color="white",style="solid",shape="box"];4093 -> 5546[label="",style="solid", color="burlywood", weight=9]; 5546 -> 4242[label="",style="solid", color="burlywood", weight=3]; 4462[label="Succ yvy6200",fontsize=16,color="green",shape="box"];4463[label="yvy6200",fontsize=16,color="green",shape="box"];4097 -> 4261[label="",style="dashed", color="red", weight=0]; 4097[label="primPlusNat (primMulNat yvy401100 (Succ yvy301000)) (Succ yvy301000)",fontsize=16,color="magenta"];4097 -> 4272[label="",style="dashed", color="magenta", weight=3]; 4098[label="Zero",fontsize=16,color="green",shape="box"];4099[label="Zero",fontsize=16,color="green",shape="box"];4100[label="Zero",fontsize=16,color="green",shape="box"];4101[label="yvy720",fontsize=16,color="green",shape="box"];4102[label="yvy700",fontsize=16,color="green",shape="box"];4103[label="compare1 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];4103 -> 4283[label="",style="solid", color="black", weight=3]; 4104[label="compare1 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4104 -> 4284[label="",style="solid", color="black", weight=3]; 4105 -> 3629[label="",style="dashed", color="red", weight=0]; 4105[label="primCmpNat yvy70000 yvy72000",fontsize=16,color="magenta"];4105 -> 4285[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4286[label="",style="dashed", color="magenta", weight=3]; 4106[label="GT",fontsize=16,color="green",shape="box"];4107[label="LT",fontsize=16,color="green",shape="box"];4108[label="EQ",fontsize=16,color="green",shape="box"];4109[label="yvy720",fontsize=16,color="green",shape="box"];4110[label="yvy700",fontsize=16,color="green",shape="box"];4111[label="compare1 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];4111 -> 4287[label="",style="solid", color="black", weight=3]; 4112[label="compare1 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4112 -> 4288[label="",style="solid", color="black", weight=3]; 4113[label="Integer yvy70000 * Integer yvy72010",fontsize=16,color="black",shape="box"];4113 -> 4289[label="",style="solid", color="black", weight=3]; 4114[label="yvy720",fontsize=16,color="green",shape="box"];4115[label="yvy700",fontsize=16,color="green",shape="box"];4116[label="compare1 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];4116 -> 4290[label="",style="solid", color="black", weight=3]; 4117[label="compare1 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4117 -> 4291[label="",style="solid", color="black", weight=3]; 4118[label="yvy720",fontsize=16,color="green",shape="box"];4119[label="yvy700",fontsize=16,color="green",shape="box"];4120[label="compare1 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];4120 -> 4292[label="",style="solid", color="black", weight=3]; 4121[label="compare1 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4121 -> 4293[label="",style="solid", color="black", weight=3]; 4122 -> 1315[label="",style="dashed", color="red", weight=0]; 4122[label="yvy7000 * Pos yvy72010",fontsize=16,color="magenta"];4122 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4122 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4123 -> 1315[label="",style="dashed", color="red", weight=0]; 4123[label="Pos yvy70010 * yvy7200",fontsize=16,color="magenta"];4123 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4124 -> 1315[label="",style="dashed", color="red", weight=0]; 4124[label="yvy7000 * Pos yvy72010",fontsize=16,color="magenta"];4124 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4124 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4125 -> 1315[label="",style="dashed", color="red", weight=0]; 4125[label="Neg yvy70010 * yvy7200",fontsize=16,color="magenta"];4125 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4125 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4126 -> 1315[label="",style="dashed", color="red", weight=0]; 4126[label="yvy7000 * Neg yvy72010",fontsize=16,color="magenta"];4126 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4126 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4127 -> 1315[label="",style="dashed", color="red", weight=0]; 4127[label="Pos yvy70010 * yvy7200",fontsize=16,color="magenta"];4127 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4127 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4128 -> 1315[label="",style="dashed", color="red", weight=0]; 4128[label="yvy7000 * Neg yvy72010",fontsize=16,color="magenta"];4128 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4128 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4129 -> 1315[label="",style="dashed", color="red", weight=0]; 4129[label="Neg yvy70010 * yvy7200",fontsize=16,color="magenta"];4129 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4130[label="yvy720",fontsize=16,color="green",shape="box"];4131[label="yvy700",fontsize=16,color="green",shape="box"];4132[label="compare1 yvy700 yvy720 False",fontsize=16,color="black",shape="box"];4132 -> 4310[label="",style="solid", color="black", weight=3]; 4133[label="compare1 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4133 -> 4311[label="",style="solid", color="black", weight=3]; 4134 -> 2935[label="",style="dashed", color="red", weight=0]; 4134[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4134 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4134 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4135 -> 2937[label="",style="dashed", color="red", weight=0]; 4135[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4135 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4136 -> 2939[label="",style="dashed", color="red", weight=0]; 4136[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4136 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4136 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4137 -> 2941[label="",style="dashed", color="red", weight=0]; 4137[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4137 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4137 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4138 -> 2943[label="",style="dashed", color="red", weight=0]; 4138[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4138 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4138 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4139 -> 2945[label="",style="dashed", color="red", weight=0]; 4139[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4139 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4139 -> 4323[label="",style="dashed", color="magenta", weight=3]; 4140 -> 2947[label="",style="dashed", color="red", weight=0]; 4140[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4140 -> 4324[label="",style="dashed", color="magenta", weight=3]; 4140 -> 4325[label="",style="dashed", color="magenta", weight=3]; 4141 -> 2949[label="",style="dashed", color="red", weight=0]; 4141[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4141 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4141 -> 4327[label="",style="dashed", color="magenta", weight=3]; 4142 -> 2951[label="",style="dashed", color="red", weight=0]; 4142[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4142 -> 4328[label="",style="dashed", color="magenta", weight=3]; 4142 -> 4329[label="",style="dashed", color="magenta", weight=3]; 4143 -> 1675[label="",style="dashed", color="red", weight=0]; 4143[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4143 -> 4330[label="",style="dashed", color="magenta", weight=3]; 4143 -> 4331[label="",style="dashed", color="magenta", weight=3]; 4144 -> 2955[label="",style="dashed", color="red", weight=0]; 4144[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4144 -> 4332[label="",style="dashed", color="magenta", weight=3]; 4144 -> 4333[label="",style="dashed", color="magenta", weight=3]; 4145 -> 2957[label="",style="dashed", color="red", weight=0]; 4145[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4145 -> 4334[label="",style="dashed", color="magenta", weight=3]; 4145 -> 4335[label="",style="dashed", color="magenta", weight=3]; 4146 -> 2959[label="",style="dashed", color="red", weight=0]; 4146[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4146 -> 4336[label="",style="dashed", color="magenta", weight=3]; 4146 -> 4337[label="",style="dashed", color="magenta", weight=3]; 4147 -> 2961[label="",style="dashed", color="red", weight=0]; 4147[label="compare yvy7000 yvy7200",fontsize=16,color="magenta"];4147 -> 4338[label="",style="dashed", color="magenta", weight=3]; 4147 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4148[label="primCompAux0 yvy211 LT",fontsize=16,color="black",shape="box"];4148 -> 4340[label="",style="solid", color="black", weight=3]; 4149[label="primCompAux0 yvy211 EQ",fontsize=16,color="black",shape="box"];4149 -> 4341[label="",style="solid", color="black", weight=3]; 4150[label="primCompAux0 yvy211 GT",fontsize=16,color="black",shape="box"];4150 -> 4342[label="",style="solid", color="black", weight=3]; 4151 -> 1315[label="",style="dashed", color="red", weight=0]; 4151[label="yvy7000 * Pos yvy72010",fontsize=16,color="magenta"];4151 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4151 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4152 -> 1315[label="",style="dashed", color="red", weight=0]; 4152[label="Pos yvy70010 * yvy7200",fontsize=16,color="magenta"];4152 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4152 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4153 -> 1315[label="",style="dashed", color="red", weight=0]; 4153[label="yvy7000 * Pos yvy72010",fontsize=16,color="magenta"];4153 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4153 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4154 -> 1315[label="",style="dashed", color="red", weight=0]; 4154[label="Neg yvy70010 * yvy7200",fontsize=16,color="magenta"];4154 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4154 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4155 -> 1315[label="",style="dashed", color="red", weight=0]; 4155[label="yvy7000 * Neg yvy72010",fontsize=16,color="magenta"];4155 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4155 -> 4352[label="",style="dashed", color="magenta", weight=3]; 4156 -> 1315[label="",style="dashed", color="red", weight=0]; 4156[label="Pos yvy70010 * yvy7200",fontsize=16,color="magenta"];4156 -> 4353[label="",style="dashed", color="magenta", weight=3]; 4156 -> 4354[label="",style="dashed", color="magenta", weight=3]; 4157 -> 1315[label="",style="dashed", color="red", weight=0]; 4157[label="yvy7000 * Neg yvy72010",fontsize=16,color="magenta"];4157 -> 4355[label="",style="dashed", color="magenta", weight=3]; 4157 -> 4356[label="",style="dashed", color="magenta", weight=3]; 4158 -> 1315[label="",style="dashed", color="red", weight=0]; 4158[label="Neg yvy70010 * yvy7200",fontsize=16,color="magenta"];4158 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4159 -> 2428[label="",style="dashed", color="red", weight=0]; 4159[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4159 -> 4359[label="",style="dashed", color="magenta", weight=3]; 4159 -> 4360[label="",style="dashed", color="magenta", weight=3]; 4160 -> 2429[label="",style="dashed", color="red", weight=0]; 4160[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4160 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4160 -> 4362[label="",style="dashed", color="magenta", weight=3]; 4161 -> 2422[label="",style="dashed", color="red", weight=0]; 4161[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4161 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4161 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4162 -> 2423[label="",style="dashed", color="red", weight=0]; 4162[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4162 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4162 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4163 -> 2418[label="",style="dashed", color="red", weight=0]; 4163[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4163 -> 4367[label="",style="dashed", color="magenta", weight=3]; 4163 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4164 -> 2416[label="",style="dashed", color="red", weight=0]; 4164[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4164 -> 4369[label="",style="dashed", color="magenta", weight=3]; 4164 -> 4370[label="",style="dashed", color="magenta", weight=3]; 4165 -> 2419[label="",style="dashed", color="red", weight=0]; 4165[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4165 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4165 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4166 -> 2420[label="",style="dashed", color="red", weight=0]; 4166[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4166 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4166 -> 4374[label="",style="dashed", color="magenta", weight=3]; 4167 -> 96[label="",style="dashed", color="red", weight=0]; 4167[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4167 -> 4375[label="",style="dashed", color="magenta", weight=3]; 4167 -> 4376[label="",style="dashed", color="magenta", weight=3]; 4168 -> 2424[label="",style="dashed", color="red", weight=0]; 4168[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4168 -> 4377[label="",style="dashed", color="magenta", weight=3]; 4168 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4169 -> 2426[label="",style="dashed", color="red", weight=0]; 4169[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4169 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4169 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4170 -> 2417[label="",style="dashed", color="red", weight=0]; 4170[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4170 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4170 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4171 -> 2427[label="",style="dashed", color="red", weight=0]; 4171[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4171 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4171 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4172 -> 2425[label="",style="dashed", color="red", weight=0]; 4172[label="yvy7011 == yvy7211",fontsize=16,color="magenta"];4172 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4172 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4173 -> 2767[label="",style="dashed", color="red", weight=0]; 4173[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4173 -> 4387[label="",style="dashed", color="magenta", weight=3]; 4173 -> 4388[label="",style="dashed", color="magenta", weight=3]; 4174 -> 2768[label="",style="dashed", color="red", weight=0]; 4174[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4174 -> 4389[label="",style="dashed", color="magenta", weight=3]; 4174 -> 4390[label="",style="dashed", color="magenta", weight=3]; 4175 -> 2769[label="",style="dashed", color="red", weight=0]; 4175[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4175 -> 4391[label="",style="dashed", color="magenta", weight=3]; 4175 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4176 -> 2770[label="",style="dashed", color="red", weight=0]; 4176[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4176 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4176 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4177 -> 2771[label="",style="dashed", color="red", weight=0]; 4177[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4177 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4177 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4178 -> 2772[label="",style="dashed", color="red", weight=0]; 4178[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4178 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4178 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4179 -> 2773[label="",style="dashed", color="red", weight=0]; 4179[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4179 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4179 -> 4400[label="",style="dashed", color="magenta", weight=3]; 4180 -> 2774[label="",style="dashed", color="red", weight=0]; 4180[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4180 -> 4401[label="",style="dashed", color="magenta", weight=3]; 4180 -> 4402[label="",style="dashed", color="magenta", weight=3]; 4181 -> 2775[label="",style="dashed", color="red", weight=0]; 4181[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4181 -> 4403[label="",style="dashed", color="magenta", weight=3]; 4181 -> 4404[label="",style="dashed", color="magenta", weight=3]; 4182 -> 2776[label="",style="dashed", color="red", weight=0]; 4182[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4182 -> 4405[label="",style="dashed", color="magenta", weight=3]; 4182 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4183 -> 2777[label="",style="dashed", color="red", weight=0]; 4183[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4183 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4183 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4184 -> 2778[label="",style="dashed", color="red", weight=0]; 4184[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4184 -> 4409[label="",style="dashed", color="magenta", weight=3]; 4184 -> 4410[label="",style="dashed", color="magenta", weight=3]; 4185 -> 2779[label="",style="dashed", color="red", weight=0]; 4185[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4185 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4185 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4186 -> 2780[label="",style="dashed", color="red", weight=0]; 4186[label="yvy7012 <= yvy7212",fontsize=16,color="magenta"];4186 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4186 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4187[label="yvy7011",fontsize=16,color="green",shape="box"];4188[label="yvy7211",fontsize=16,color="green",shape="box"];4189[label="yvy7011",fontsize=16,color="green",shape="box"];4190[label="yvy7211",fontsize=16,color="green",shape="box"];4191[label="yvy7011",fontsize=16,color="green",shape="box"];4192[label="yvy7211",fontsize=16,color="green",shape="box"];4193[label="yvy7011",fontsize=16,color="green",shape="box"];4194[label="yvy7211",fontsize=16,color="green",shape="box"];4195[label="yvy7011",fontsize=16,color="green",shape="box"];4196[label="yvy7211",fontsize=16,color="green",shape="box"];4197[label="yvy7011",fontsize=16,color="green",shape="box"];4198[label="yvy7211",fontsize=16,color="green",shape="box"];4199[label="yvy7011",fontsize=16,color="green",shape="box"];4200[label="yvy7211",fontsize=16,color="green",shape="box"];4201[label="yvy7011",fontsize=16,color="green",shape="box"];4202[label="yvy7211",fontsize=16,color="green",shape="box"];4203[label="yvy7011",fontsize=16,color="green",shape="box"];4204[label="yvy7211",fontsize=16,color="green",shape="box"];4205[label="yvy7011",fontsize=16,color="green",shape="box"];4206[label="yvy7211",fontsize=16,color="green",shape="box"];4207[label="yvy7011",fontsize=16,color="green",shape="box"];4208[label="yvy7211",fontsize=16,color="green",shape="box"];4209[label="yvy7011",fontsize=16,color="green",shape="box"];4210[label="yvy7211",fontsize=16,color="green",shape="box"];4211[label="yvy7011",fontsize=16,color="green",shape="box"];4212[label="yvy7211",fontsize=16,color="green",shape="box"];4213[label="yvy7011",fontsize=16,color="green",shape="box"];4214[label="yvy7211",fontsize=16,color="green",shape="box"];4478[label="yvy2220",fontsize=16,color="green",shape="box"];4479[label="yvy301000",fontsize=16,color="green",shape="box"];4429[label="primPlusNat yvy8220 yvy2170",fontsize=16,color="burlywood",shape="triangle"];5547[label="yvy8220/Succ yvy82200",fontsize=10,color="white",style="solid",shape="box"];4429 -> 5547[label="",style="solid", color="burlywood", weight=9]; 5547 -> 4468[label="",style="solid", color="burlywood", weight=3]; 5548[label="yvy8220/Zero",fontsize=10,color="white",style="solid",shape="box"];4429 -> 5548[label="",style="solid", color="burlywood", weight=9]; 5548 -> 4469[label="",style="solid", color="burlywood", weight=3]; 4216[label="Zero",fontsize=16,color="green",shape="box"];4217[label="Succ yvy7200",fontsize=16,color="green",shape="box"];4218[label="Succ yvy7200",fontsize=16,color="green",shape="box"];4219[label="Zero",fontsize=16,color="green",shape="box"];4755[label="Succ Zero",fontsize=16,color="green",shape="box"];4756[label="FiniteMap.mkBranchLeft_size yvy263 yvy264 yvy261",fontsize=16,color="black",shape="box"];4756 -> 4759[label="",style="solid", color="black", weight=3]; 4757 -> 4223[label="",style="dashed", color="red", weight=0]; 4757[label="primPlusInt (Pos yvy2650) (FiniteMap.sizeFM yvy264)",fontsize=16,color="magenta"];4757 -> 4760[label="",style="dashed", color="magenta", weight=3]; 4757 -> 4761[label="",style="dashed", color="magenta", weight=3]; 4758 -> 4232[label="",style="dashed", color="red", weight=0]; 4758[label="primPlusInt (Neg yvy2650) (FiniteMap.sizeFM yvy264)",fontsize=16,color="magenta"];4758 -> 4762[label="",style="dashed", color="magenta", weight=3]; 4758 -> 4763[label="",style="dashed", color="magenta", weight=3]; 4234[label="Pos (primPlusNat yvy8220 yvy2170)",fontsize=16,color="green",shape="box"];4234 -> 4429[label="",style="dashed", color="green", weight=3]; 4235[label="primMinusNat yvy8220 yvy2170",fontsize=16,color="burlywood",shape="triangle"];5549[label="yvy8220/Succ yvy82200",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5549[label="",style="solid", color="burlywood", weight=9]; 5549 -> 4430[label="",style="solid", color="burlywood", weight=3]; 5550[label="yvy8220/Zero",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5550[label="",style="solid", color="burlywood", weight=9]; 5550 -> 4431[label="",style="solid", color="burlywood", weight=3]; 4228 -> 3539[label="",style="dashed", color="red", weight=0]; 4228[label="FiniteMap.sizeFM yvy54",fontsize=16,color="magenta"];4233 -> 3539[label="",style="dashed", color="red", weight=0]; 4233[label="FiniteMap.sizeFM yvy54",fontsize=16,color="magenta"];4232[label="primPlusInt (Neg yvy8220) yvy218",fontsize=16,color="burlywood",shape="triangle"];5551[label="yvy218/Pos yvy2180",fontsize=10,color="white",style="solid",shape="box"];4232 -> 5551[label="",style="solid", color="burlywood", weight=9]; 5551 -> 4432[label="",style="solid", color="burlywood", weight=3]; 5552[label="yvy218/Neg yvy2180",fontsize=10,color="white",style="solid",shape="box"];4232 -> 5552[label="",style="solid", color="burlywood", weight=9]; 5552 -> 4433[label="",style="solid", color="burlywood", weight=3]; 4236 -> 4637[label="",style="dashed", color="red", weight=0]; 4236[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy82 yvy54",fontsize=16,color="magenta"];4236 -> 4663[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4664[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4665[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4666[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4237[label="error []",fontsize=16,color="red",shape="box"];4238[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824)",fontsize=16,color="black",shape="box"];4238 -> 4435[label="",style="solid", color="black", weight=3]; 4239 -> 3539[label="",style="dashed", color="red", weight=0]; 4239[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];4239 -> 4436[label="",style="dashed", color="magenta", weight=3]; 4240 -> 1315[label="",style="dashed", color="red", weight=0]; 4240[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];4240 -> 4437[label="",style="dashed", color="magenta", weight=3]; 4240 -> 4438[label="",style="dashed", color="magenta", weight=3]; 4241[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];4241 -> 4439[label="",style="solid", color="black", weight=3]; 4242[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4242 -> 4440[label="",style="solid", color="black", weight=3]; 4272 -> 2210[label="",style="dashed", color="red", weight=0]; 4272[label="primMulNat yvy401100 (Succ yvy301000)",fontsize=16,color="magenta"];4272 -> 4451[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4452[label="",style="dashed", color="magenta", weight=3]; 4283[label="compare0 yvy700 yvy720 otherwise",fontsize=16,color="black",shape="box"];4283 -> 4453[label="",style="solid", color="black", weight=3]; 4284[label="LT",fontsize=16,color="green",shape="box"];4285[label="yvy70000",fontsize=16,color="green",shape="box"];4286[label="yvy72000",fontsize=16,color="green",shape="box"];4287[label="compare0 yvy700 yvy720 otherwise",fontsize=16,color="black",shape="box"];4287 -> 4454[label="",style="solid", color="black", weight=3]; 4288[label="LT",fontsize=16,color="green",shape="box"];4289[label="Integer (primMulInt yvy70000 yvy72010)",fontsize=16,color="green",shape="box"];4289 -> 4455[label="",style="dashed", color="green", weight=3]; 4290[label="compare0 yvy700 yvy720 otherwise",fontsize=16,color="black",shape="box"];4290 -> 4456[label="",style="solid", color="black", weight=3]; 4291[label="LT",fontsize=16,color="green",shape="box"];4292[label="compare0 yvy700 yvy720 otherwise",fontsize=16,color="black",shape="box"];4292 -> 4457[label="",style="solid", color="black", weight=3]; 4293[label="LT",fontsize=16,color="green",shape="box"];4294[label="Pos yvy72010",fontsize=16,color="green",shape="box"];4295[label="yvy7000",fontsize=16,color="green",shape="box"];4296[label="yvy7200",fontsize=16,color="green",shape="box"];4297[label="Pos yvy70010",fontsize=16,color="green",shape="box"];4298[label="Pos yvy72010",fontsize=16,color="green",shape="box"];4299[label="yvy7000",fontsize=16,color="green",shape="box"];4300[label="yvy7200",fontsize=16,color="green",shape="box"];4301[label="Neg yvy70010",fontsize=16,color="green",shape="box"];4302[label="Neg yvy72010",fontsize=16,color="green",shape="box"];4303[label="yvy7000",fontsize=16,color="green",shape="box"];4304[label="yvy7200",fontsize=16,color="green",shape="box"];4305[label="Pos yvy70010",fontsize=16,color="green",shape="box"];4306[label="Neg yvy72010",fontsize=16,color="green",shape="box"];4307[label="yvy7000",fontsize=16,color="green",shape="box"];4308[label="yvy7200",fontsize=16,color="green",shape="box"];4309[label="Neg yvy70010",fontsize=16,color="green",shape="box"];4310[label="compare0 yvy700 yvy720 otherwise",fontsize=16,color="black",shape="box"];4310 -> 4458[label="",style="solid", color="black", weight=3]; 4311[label="LT",fontsize=16,color="green",shape="box"];4312[label="yvy7000",fontsize=16,color="green",shape="box"];4313[label="yvy7200",fontsize=16,color="green",shape="box"];4314[label="yvy7000",fontsize=16,color="green",shape="box"];4315[label="yvy7200",fontsize=16,color="green",shape="box"];4316[label="yvy7000",fontsize=16,color="green",shape="box"];4317[label="yvy7200",fontsize=16,color="green",shape="box"];4318[label="yvy7000",fontsize=16,color="green",shape="box"];4319[label="yvy7200",fontsize=16,color="green",shape="box"];4320[label="yvy7000",fontsize=16,color="green",shape="box"];4321[label="yvy7200",fontsize=16,color="green",shape="box"];4322[label="yvy7000",fontsize=16,color="green",shape="box"];4323[label="yvy7200",fontsize=16,color="green",shape="box"];4324[label="yvy7000",fontsize=16,color="green",shape="box"];4325[label="yvy7200",fontsize=16,color="green",shape="box"];4326[label="yvy7000",fontsize=16,color="green",shape="box"];4327[label="yvy7200",fontsize=16,color="green",shape="box"];4328[label="yvy7000",fontsize=16,color="green",shape="box"];4329[label="yvy7200",fontsize=16,color="green",shape="box"];4330[label="yvy7000",fontsize=16,color="green",shape="box"];4331[label="yvy7200",fontsize=16,color="green",shape="box"];4332[label="yvy7000",fontsize=16,color="green",shape="box"];4333[label="yvy7200",fontsize=16,color="green",shape="box"];4334[label="yvy7000",fontsize=16,color="green",shape="box"];4335[label="yvy7200",fontsize=16,color="green",shape="box"];4336[label="yvy7000",fontsize=16,color="green",shape="box"];4337[label="yvy7200",fontsize=16,color="green",shape="box"];4338[label="yvy7000",fontsize=16,color="green",shape="box"];4339[label="yvy7200",fontsize=16,color="green",shape="box"];4340[label="LT",fontsize=16,color="green",shape="box"];4341[label="yvy211",fontsize=16,color="green",shape="box"];4342[label="GT",fontsize=16,color="green",shape="box"];4343[label="Pos yvy72010",fontsize=16,color="green",shape="box"];4344[label="yvy7000",fontsize=16,color="green",shape="box"];4345[label="yvy7200",fontsize=16,color="green",shape="box"];4346[label="Pos yvy70010",fontsize=16,color="green",shape="box"];4347[label="Pos yvy72010",fontsize=16,color="green",shape="box"];4348[label="yvy7000",fontsize=16,color="green",shape="box"];4349[label="yvy7200",fontsize=16,color="green",shape="box"];4350[label="Neg yvy70010",fontsize=16,color="green",shape="box"];4351[label="Neg yvy72010",fontsize=16,color="green",shape="box"];4352[label="yvy7000",fontsize=16,color="green",shape="box"];4353[label="yvy7200",fontsize=16,color="green",shape="box"];4354[label="Pos yvy70010",fontsize=16,color="green",shape="box"];4355[label="Neg yvy72010",fontsize=16,color="green",shape="box"];4356[label="yvy7000",fontsize=16,color="green",shape="box"];4357[label="yvy7200",fontsize=16,color="green",shape="box"];4358[label="Neg yvy70010",fontsize=16,color="green",shape="box"];4359[label="yvy7211",fontsize=16,color="green",shape="box"];4360[label="yvy7011",fontsize=16,color="green",shape="box"];4361[label="yvy7211",fontsize=16,color="green",shape="box"];4362[label="yvy7011",fontsize=16,color="green",shape="box"];4363[label="yvy7211",fontsize=16,color="green",shape="box"];4364[label="yvy7011",fontsize=16,color="green",shape="box"];4365[label="yvy7211",fontsize=16,color="green",shape="box"];4366[label="yvy7011",fontsize=16,color="green",shape="box"];4367[label="yvy7211",fontsize=16,color="green",shape="box"];4368[label="yvy7011",fontsize=16,color="green",shape="box"];4369[label="yvy7211",fontsize=16,color="green",shape="box"];4370[label="yvy7011",fontsize=16,color="green",shape="box"];4371[label="yvy7211",fontsize=16,color="green",shape="box"];4372[label="yvy7011",fontsize=16,color="green",shape="box"];4373[label="yvy7211",fontsize=16,color="green",shape="box"];4374[label="yvy7011",fontsize=16,color="green",shape="box"];4375[label="yvy7211",fontsize=16,color="green",shape="box"];4376[label="yvy7011",fontsize=16,color="green",shape="box"];4377[label="yvy7211",fontsize=16,color="green",shape="box"];4378[label="yvy7011",fontsize=16,color="green",shape="box"];4379[label="yvy7211",fontsize=16,color="green",shape="box"];4380[label="yvy7011",fontsize=16,color="green",shape="box"];4381[label="yvy7211",fontsize=16,color="green",shape="box"];4382[label="yvy7011",fontsize=16,color="green",shape="box"];4383[label="yvy7211",fontsize=16,color="green",shape="box"];4384[label="yvy7011",fontsize=16,color="green",shape="box"];4385[label="yvy7211",fontsize=16,color="green",shape="box"];4386[label="yvy7011",fontsize=16,color="green",shape="box"];4387[label="yvy7212",fontsize=16,color="green",shape="box"];4388[label="yvy7012",fontsize=16,color="green",shape="box"];4389[label="yvy7212",fontsize=16,color="green",shape="box"];4390[label="yvy7012",fontsize=16,color="green",shape="box"];4391[label="yvy7212",fontsize=16,color="green",shape="box"];4392[label="yvy7012",fontsize=16,color="green",shape="box"];4393[label="yvy7212",fontsize=16,color="green",shape="box"];4394[label="yvy7012",fontsize=16,color="green",shape="box"];4395[label="yvy7212",fontsize=16,color="green",shape="box"];4396[label="yvy7012",fontsize=16,color="green",shape="box"];4397[label="yvy7212",fontsize=16,color="green",shape="box"];4398[label="yvy7012",fontsize=16,color="green",shape="box"];4399[label="yvy7212",fontsize=16,color="green",shape="box"];4400[label="yvy7012",fontsize=16,color="green",shape="box"];4401[label="yvy7212",fontsize=16,color="green",shape="box"];4402[label="yvy7012",fontsize=16,color="green",shape="box"];4403[label="yvy7212",fontsize=16,color="green",shape="box"];4404[label="yvy7012",fontsize=16,color="green",shape="box"];4405[label="yvy7212",fontsize=16,color="green",shape="box"];4406[label="yvy7012",fontsize=16,color="green",shape="box"];4407[label="yvy7212",fontsize=16,color="green",shape="box"];4408[label="yvy7012",fontsize=16,color="green",shape="box"];4409[label="yvy7212",fontsize=16,color="green",shape="box"];4410[label="yvy7012",fontsize=16,color="green",shape="box"];4411[label="yvy7212",fontsize=16,color="green",shape="box"];4412[label="yvy7012",fontsize=16,color="green",shape="box"];4413[label="yvy7212",fontsize=16,color="green",shape="box"];4414[label="yvy7012",fontsize=16,color="green",shape="box"];4468[label="primPlusNat (Succ yvy82200) yvy2170",fontsize=16,color="burlywood",shape="box"];5553[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];4468 -> 5553[label="",style="solid", color="burlywood", weight=9]; 5553 -> 4498[label="",style="solid", color="burlywood", weight=3]; 5554[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];4468 -> 5554[label="",style="solid", color="burlywood", weight=9]; 5554 -> 4499[label="",style="solid", color="burlywood", weight=3]; 4469[label="primPlusNat Zero yvy2170",fontsize=16,color="burlywood",shape="box"];5555[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];4469 -> 5555[label="",style="solid", color="burlywood", weight=9]; 5555 -> 4500[label="",style="solid", color="burlywood", weight=3]; 5556[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];4469 -> 5556[label="",style="solid", color="burlywood", weight=9]; 5556 -> 4501[label="",style="solid", color="burlywood", weight=3]; 4759[label="FiniteMap.sizeFM yvy263",fontsize=16,color="burlywood",shape="triangle"];5557[label="yvy263/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5557[label="",style="solid", color="burlywood", weight=9]; 5557 -> 4764[label="",style="solid", color="burlywood", weight=3]; 5558[label="yvy263/FiniteMap.Branch yvy2630 yvy2631 yvy2632 yvy2633 yvy2634",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5558[label="",style="solid", color="burlywood", weight=9]; 5558 -> 4765[label="",style="solid", color="burlywood", weight=3]; 4760[label="yvy2650",fontsize=16,color="green",shape="box"];4761 -> 4759[label="",style="dashed", color="red", weight=0]; 4761[label="FiniteMap.sizeFM yvy264",fontsize=16,color="magenta"];4761 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4762[label="yvy2650",fontsize=16,color="green",shape="box"];4763 -> 4759[label="",style="dashed", color="red", weight=0]; 4763[label="FiniteMap.sizeFM yvy264",fontsize=16,color="magenta"];4763 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4430[label="primMinusNat (Succ yvy82200) yvy2170",fontsize=16,color="burlywood",shape="box"];5559[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];4430 -> 5559[label="",style="solid", color="burlywood", weight=9]; 5559 -> 4470[label="",style="solid", color="burlywood", weight=3]; 5560[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];4430 -> 5560[label="",style="solid", color="burlywood", weight=9]; 5560 -> 4471[label="",style="solid", color="burlywood", weight=3]; 4431[label="primMinusNat Zero yvy2170",fontsize=16,color="burlywood",shape="box"];5561[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5561[label="",style="solid", color="burlywood", weight=9]; 5561 -> 4472[label="",style="solid", color="burlywood", weight=3]; 5562[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5562[label="",style="solid", color="burlywood", weight=9]; 5562 -> 4473[label="",style="solid", color="burlywood", weight=3]; 4432[label="primPlusInt (Neg yvy8220) (Pos yvy2180)",fontsize=16,color="black",shape="box"];4432 -> 4474[label="",style="solid", color="black", weight=3]; 4433[label="primPlusInt (Neg yvy8220) (Neg yvy2180)",fontsize=16,color="black",shape="box"];4433 -> 4475[label="",style="solid", color="black", weight=3]; 4663[label="yvy82",fontsize=16,color="green",shape="box"];4664[label="yvy54",fontsize=16,color="green",shape="box"];4665[label="yvy50",fontsize=16,color="green",shape="box"];4666[label="yvy51",fontsize=16,color="green",shape="box"];4667[label="Succ Zero",fontsize=16,color="green",shape="box"];4435 -> 4476[label="",style="dashed", color="red", weight=0]; 4435[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 (FiniteMap.sizeFM yvy824 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy823)",fontsize=16,color="magenta"];4435 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4436[label="yvy543",fontsize=16,color="green",shape="box"];4437 -> 3539[label="",style="dashed", color="red", weight=0]; 4437[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];4437 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4438[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4439[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];4439 -> 4486[label="",style="solid", color="black", weight=3]; 4440[label="FiniteMap.mkBalBranch6Single_L yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];4440 -> 4487[label="",style="solid", color="black", weight=3]; 4451[label="yvy401100",fontsize=16,color="green",shape="box"];4452[label="Succ yvy301000",fontsize=16,color="green",shape="box"];4453[label="compare0 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4453 -> 4491[label="",style="solid", color="black", weight=3]; 4454[label="compare0 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4454 -> 4492[label="",style="solid", color="black", weight=3]; 4455 -> 1593[label="",style="dashed", color="red", weight=0]; 4455[label="primMulInt yvy70000 yvy72010",fontsize=16,color="magenta"];4455 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4455 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4456[label="compare0 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4456 -> 4495[label="",style="solid", color="black", weight=3]; 4457[label="compare0 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4457 -> 4496[label="",style="solid", color="black", weight=3]; 4458[label="compare0 yvy700 yvy720 True",fontsize=16,color="black",shape="box"];4458 -> 4497[label="",style="solid", color="black", weight=3]; 4498[label="primPlusNat (Succ yvy82200) (Succ yvy21700)",fontsize=16,color="black",shape="box"];4498 -> 4530[label="",style="solid", color="black", weight=3]; 4499[label="primPlusNat (Succ yvy82200) Zero",fontsize=16,color="black",shape="box"];4499 -> 4531[label="",style="solid", color="black", weight=3]; 4500[label="primPlusNat Zero (Succ yvy21700)",fontsize=16,color="black",shape="box"];4500 -> 4532[label="",style="solid", color="black", weight=3]; 4501[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];4501 -> 4533[label="",style="solid", color="black", weight=3]; 4764[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4764 -> 4768[label="",style="solid", color="black", weight=3]; 4765[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2630 yvy2631 yvy2632 yvy2633 yvy2634)",fontsize=16,color="black",shape="box"];4765 -> 4769[label="",style="solid", color="black", weight=3]; 4766[label="yvy264",fontsize=16,color="green",shape="box"];4767[label="yvy264",fontsize=16,color="green",shape="box"];4470[label="primMinusNat (Succ yvy82200) (Succ yvy21700)",fontsize=16,color="black",shape="box"];4470 -> 4502[label="",style="solid", color="black", weight=3]; 4471[label="primMinusNat (Succ yvy82200) Zero",fontsize=16,color="black",shape="box"];4471 -> 4503[label="",style="solid", color="black", weight=3]; 4472[label="primMinusNat Zero (Succ yvy21700)",fontsize=16,color="black",shape="box"];4472 -> 4504[label="",style="solid", color="black", weight=3]; 4473[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4473 -> 4505[label="",style="solid", color="black", weight=3]; 4474 -> 4235[label="",style="dashed", color="red", weight=0]; 4474[label="primMinusNat yvy2180 yvy8220",fontsize=16,color="magenta"];4474 -> 4506[label="",style="dashed", color="magenta", weight=3]; 4474 -> 4507[label="",style="dashed", color="magenta", weight=3]; 4475[label="Neg (primPlusNat yvy8220 yvy2180)",fontsize=16,color="green",shape="box"];4475 -> 4508[label="",style="dashed", color="green", weight=3]; 4477 -> 2671[label="",style="dashed", color="red", weight=0]; 4477[label="FiniteMap.sizeFM yvy824 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy823",fontsize=16,color="magenta"];4477 -> 4509[label="",style="dashed", color="magenta", weight=3]; 4477 -> 4510[label="",style="dashed", color="magenta", weight=3]; 4476[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 yvy224",fontsize=16,color="burlywood",shape="triangle"];5563[label="yvy224/False",fontsize=10,color="white",style="solid",shape="box"];4476 -> 5563[label="",style="solid", color="burlywood", weight=9]; 5563 -> 4511[label="",style="solid", color="burlywood", weight=3]; 5564[label="yvy224/True",fontsize=10,color="white",style="solid",shape="box"];4476 -> 5564[label="",style="solid", color="burlywood", weight=9]; 5564 -> 4512[label="",style="solid", color="burlywood", weight=3]; 4485[label="yvy544",fontsize=16,color="green",shape="box"];4486[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4486 -> 4528[label="",style="solid", color="black", weight=3]; 4487 -> 4637[label="",style="dashed", color="red", weight=0]; 4487[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy82 yvy543) yvy544",fontsize=16,color="magenta"];4487 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4671[label="",style="dashed", color="magenta", weight=3]; 4487 -> 4672[label="",style="dashed", color="magenta", weight=3]; 4491[label="GT",fontsize=16,color="green",shape="box"];4492[label="GT",fontsize=16,color="green",shape="box"];4493[label="yvy72010",fontsize=16,color="green",shape="box"];4494[label="yvy70000",fontsize=16,color="green",shape="box"];4495[label="GT",fontsize=16,color="green",shape="box"];4496[label="GT",fontsize=16,color="green",shape="box"];4497[label="GT",fontsize=16,color="green",shape="box"];4530[label="Succ (Succ (primPlusNat yvy82200 yvy21700))",fontsize=16,color="green",shape="box"];4530 -> 4549[label="",style="dashed", color="green", weight=3]; 4531[label="Succ yvy82200",fontsize=16,color="green",shape="box"];4532[label="Succ yvy21700",fontsize=16,color="green",shape="box"];4533[label="Zero",fontsize=16,color="green",shape="box"];4768[label="Pos Zero",fontsize=16,color="green",shape="box"];4769[label="yvy2632",fontsize=16,color="green",shape="box"];4502 -> 4235[label="",style="dashed", color="red", weight=0]; 4502[label="primMinusNat yvy82200 yvy21700",fontsize=16,color="magenta"];4502 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4502 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4503[label="Pos (Succ yvy82200)",fontsize=16,color="green",shape="box"];4504[label="Neg (Succ yvy21700)",fontsize=16,color="green",shape="box"];4505[label="Pos Zero",fontsize=16,color="green",shape="box"];4506[label="yvy2180",fontsize=16,color="green",shape="box"];4507[label="yvy8220",fontsize=16,color="green",shape="box"];4508 -> 4429[label="",style="dashed", color="red", weight=0]; 4508[label="primPlusNat yvy8220 yvy2180",fontsize=16,color="magenta"];4508 -> 4536[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4537[label="",style="dashed", color="magenta", weight=3]; 4509 -> 3539[label="",style="dashed", color="red", weight=0]; 4509[label="FiniteMap.sizeFM yvy824",fontsize=16,color="magenta"];4509 -> 4538[label="",style="dashed", color="magenta", weight=3]; 4510 -> 1315[label="",style="dashed", color="red", weight=0]; 4510[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy823",fontsize=16,color="magenta"];4510 -> 4539[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4540[label="",style="dashed", color="magenta", weight=3]; 4511[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 False",fontsize=16,color="black",shape="box"];4511 -> 4541[label="",style="solid", color="black", weight=3]; 4512[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 True",fontsize=16,color="black",shape="box"];4512 -> 4542[label="",style="solid", color="black", weight=3]; 4528[label="FiniteMap.mkBalBranch6Double_L yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5565[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4528 -> 5565[label="",style="solid", color="burlywood", weight=9]; 5565 -> 4543[label="",style="solid", color="burlywood", weight=3]; 5566[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4528 -> 5566[label="",style="solid", color="burlywood", weight=9]; 5566 -> 4544[label="",style="solid", color="burlywood", weight=3]; 4668 -> 4637[label="",style="dashed", color="red", weight=0]; 4668[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy82 yvy543",fontsize=16,color="magenta"];4668 -> 4714[label="",style="dashed", color="magenta", weight=3]; 4668 -> 4715[label="",style="dashed", color="magenta", weight=3]; 4668 -> 4716[label="",style="dashed", color="magenta", weight=3]; 4668 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4668 -> 4718[label="",style="dashed", color="magenta", weight=3]; 4669[label="yvy544",fontsize=16,color="green",shape="box"];4670[label="yvy540",fontsize=16,color="green",shape="box"];4671[label="yvy541",fontsize=16,color="green",shape="box"];4672[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4549 -> 4429[label="",style="dashed", color="red", weight=0]; 4549[label="primPlusNat yvy82200 yvy21700",fontsize=16,color="magenta"];4549 -> 4556[label="",style="dashed", color="magenta", weight=3]; 4549 -> 4557[label="",style="dashed", color="magenta", weight=3]; 4534[label="yvy82200",fontsize=16,color="green",shape="box"];4535[label="yvy21700",fontsize=16,color="green",shape="box"];4536[label="yvy8220",fontsize=16,color="green",shape="box"];4537[label="yvy2180",fontsize=16,color="green",shape="box"];4538[label="yvy824",fontsize=16,color="green",shape="box"];4539 -> 3539[label="",style="dashed", color="red", weight=0]; 4539[label="FiniteMap.sizeFM yvy823",fontsize=16,color="magenta"];4539 -> 4550[label="",style="dashed", color="magenta", weight=3]; 4540[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4541[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 otherwise",fontsize=16,color="black",shape="box"];4541 -> 4551[label="",style="solid", color="black", weight=3]; 4542[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54",fontsize=16,color="black",shape="box"];4542 -> 4552[label="",style="solid", color="black", weight=3]; 4543[label="FiniteMap.mkBalBranch6Double_L yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];4543 -> 4553[label="",style="solid", color="black", weight=3]; 4544[label="FiniteMap.mkBalBranch6Double_L yvy82 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy82 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];4544 -> 4554[label="",style="solid", color="black", weight=3]; 4714[label="yvy82",fontsize=16,color="green",shape="box"];4715[label="yvy543",fontsize=16,color="green",shape="box"];4716[label="yvy50",fontsize=16,color="green",shape="box"];4717[label="yvy51",fontsize=16,color="green",shape="box"];4718[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4556[label="yvy82200",fontsize=16,color="green",shape="box"];4557[label="yvy21700",fontsize=16,color="green",shape="box"];4550[label="yvy823",fontsize=16,color="green",shape="box"];4551[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54 yvy820 yvy821 yvy822 yvy823 yvy824 True",fontsize=16,color="black",shape="box"];4551 -> 4558[label="",style="solid", color="black", weight=3]; 4552 -> 4637[label="",style="dashed", color="red", weight=0]; 4552[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy820 yvy821 yvy823 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy824 yvy54)",fontsize=16,color="magenta"];4552 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4679[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4553[label="error []",fontsize=16,color="red",shape="box"];4554 -> 4637[label="",style="dashed", color="red", weight=0]; 4554[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy82 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];4554 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4684[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4685[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4558[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 yvy824) yvy54",fontsize=16,color="burlywood",shape="box"];5567[label="yvy824/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4558 -> 5567[label="",style="solid", color="burlywood", weight=9]; 5567 -> 4581[label="",style="solid", color="burlywood", weight=3]; 5568[label="yvy824/FiniteMap.Branch yvy8240 yvy8241 yvy8242 yvy8243 yvy8244",fontsize=10,color="white",style="solid",shape="box"];4558 -> 5568[label="",style="solid", color="burlywood", weight=9]; 5568 -> 4582[label="",style="solid", color="burlywood", weight=3]; 4678[label="yvy823",fontsize=16,color="green",shape="box"];4679 -> 4637[label="",style="dashed", color="red", weight=0]; 4679[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy824 yvy54",fontsize=16,color="magenta"];4679 -> 4719[label="",style="dashed", color="magenta", weight=3]; 4679 -> 4720[label="",style="dashed", color="magenta", weight=3]; 4679 -> 4721[label="",style="dashed", color="magenta", weight=3]; 4679 -> 4722[label="",style="dashed", color="magenta", weight=3]; 4679 -> 4723[label="",style="dashed", color="magenta", weight=3]; 4680[label="yvy820",fontsize=16,color="green",shape="box"];4681[label="yvy821",fontsize=16,color="green",shape="box"];4682[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4683 -> 4637[label="",style="dashed", color="red", weight=0]; 4683[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy82 yvy5433",fontsize=16,color="magenta"];4683 -> 4724[label="",style="dashed", color="magenta", weight=3]; 4683 -> 4725[label="",style="dashed", color="magenta", weight=3]; 4683 -> 4726[label="",style="dashed", color="magenta", weight=3]; 4683 -> 4727[label="",style="dashed", color="magenta", weight=3]; 4683 -> 4728[label="",style="dashed", color="magenta", weight=3]; 4684 -> 4637[label="",style="dashed", color="red", weight=0]; 4684[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4684 -> 4729[label="",style="dashed", color="magenta", weight=3]; 4684 -> 4730[label="",style="dashed", color="magenta", weight=3]; 4684 -> 4731[label="",style="dashed", color="magenta", weight=3]; 4684 -> 4732[label="",style="dashed", color="magenta", weight=3]; 4684 -> 4733[label="",style="dashed", color="magenta", weight=3]; 4685[label="yvy5430",fontsize=16,color="green",shape="box"];4686[label="yvy5431",fontsize=16,color="green",shape="box"];4687[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4581[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 FiniteMap.EmptyFM) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];4581 -> 4622[label="",style="solid", color="black", weight=3]; 4582[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 (FiniteMap.Branch yvy8240 yvy8241 yvy8242 yvy8243 yvy8244)) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy820 yvy821 yvy822 yvy823 (FiniteMap.Branch yvy8240 yvy8241 yvy8242 yvy8243 yvy8244)) yvy54",fontsize=16,color="black",shape="box"];4582 -> 4623[label="",style="solid", color="black", weight=3]; 4719[label="yvy824",fontsize=16,color="green",shape="box"];4720[label="yvy54",fontsize=16,color="green",shape="box"];4721[label="yvy50",fontsize=16,color="green",shape="box"];4722[label="yvy51",fontsize=16,color="green",shape="box"];4723[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4724[label="yvy82",fontsize=16,color="green",shape="box"];4725[label="yvy5433",fontsize=16,color="green",shape="box"];4726[label="yvy50",fontsize=16,color="green",shape="box"];4727[label="yvy51",fontsize=16,color="green",shape="box"];4728[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4729[label="yvy5434",fontsize=16,color="green",shape="box"];4730[label="yvy544",fontsize=16,color="green",shape="box"];4731[label="yvy540",fontsize=16,color="green",shape="box"];4732[label="yvy541",fontsize=16,color="green",shape="box"];4733[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4622[label="error []",fontsize=16,color="red",shape="box"];4623 -> 4637[label="",style="dashed", color="red", weight=0]; 4623[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy8240 yvy8241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy820 yvy821 yvy823 yvy8243) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy8244 yvy54)",fontsize=16,color="magenta"];4623 -> 4698[label="",style="dashed", color="magenta", weight=3]; 4623 -> 4699[label="",style="dashed", color="magenta", weight=3]; 4623 -> 4700[label="",style="dashed", color="magenta", weight=3]; 4623 -> 4701[label="",style="dashed", color="magenta", weight=3]; 4623 -> 4702[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4637[label="",style="dashed", color="red", weight=0]; 4698[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy820 yvy821 yvy823 yvy8243",fontsize=16,color="magenta"];4698 -> 4734[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4735[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4736[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4737[label="",style="dashed", color="magenta", weight=3]; 4698 -> 4738[label="",style="dashed", color="magenta", weight=3]; 4699 -> 4637[label="",style="dashed", color="red", weight=0]; 4699[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy8244 yvy54",fontsize=16,color="magenta"];4699 -> 4739[label="",style="dashed", color="magenta", weight=3]; 4699 -> 4740[label="",style="dashed", color="magenta", weight=3]; 4699 -> 4741[label="",style="dashed", color="magenta", weight=3]; 4699 -> 4742[label="",style="dashed", color="magenta", weight=3]; 4699 -> 4743[label="",style="dashed", color="magenta", weight=3]; 4700[label="yvy8240",fontsize=16,color="green",shape="box"];4701[label="yvy8241",fontsize=16,color="green",shape="box"];4702[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4734[label="yvy823",fontsize=16,color="green",shape="box"];4735[label="yvy8243",fontsize=16,color="green",shape="box"];4736[label="yvy820",fontsize=16,color="green",shape="box"];4737[label="yvy821",fontsize=16,color="green",shape="box"];4738[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4739[label="yvy8244",fontsize=16,color="green",shape="box"];4740[label="yvy54",fontsize=16,color="green",shape="box"];4741[label="yvy50",fontsize=16,color="green",shape="box"];4742[label="yvy51",fontsize=16,color="green",shape="box"];4743[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat(yvy70000, yvy72000) 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(yvy70000), Succ(yvy72000)) -> new_primCmpNat(yvy70000, yvy72000) 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_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_gt(yvy23, yvy24, yvy17, yvy18, h, ba), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_compare12(yvy700, yvy720, False, ca) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], gd) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bde) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_gt(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primPlusNat1(Zero, Zero) -> Zero new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_gt(x0, x1, x2, x3, x4, x5) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_gt(yvy23, yvy24, yvy17, yvy18, h, ba), h, ba, bb) at position [8] we obtained the following new rules [LPAR04]: (new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb),new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb)) ---------------------------------------- (22) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_compare12(yvy700, yvy720, False, ca) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], gd) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bde) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_gt(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primPlusNat1(Zero, Zero) -> Zero new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_gt(x0, x1, x2, x3, x4, x5) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (23) UsableRulesProof (EQUIVALENT) As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R. ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_compare0([], [], bde) -> EQ new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], gd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_gt(x0, x1, x2, x3, x4, x5) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QReductionProof (EQUIVALENT) We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN]. new_gt(x0, x1, x2, x3, x4, x5) ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_compare0([], [], bde) -> EQ new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], gd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba), GT), h, ba, bb) at position [8,0] we obtained the following new rules [LPAR04]: (new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb),new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb)) ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, h, ba) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_compare0([], [], bde) -> EQ new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], gd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) UsableRulesProof (EQUIVALENT) As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R. ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_compare0([], [], bde) -> EQ new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], gd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QReductionProof (EQUIVALENT) We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN]. new_compare32(x0, x1, x2, x3, x4, x5) ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) new_splitLT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bbd)) -> new_esEs11(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbh)) -> new_esEs16(yvy23, yvy17, bbh) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(yvy23, yvy17, bbe, bbf, bbg) new_esEs32(yvy23, yvy17, app(app(ty_Either, bca), bcb)) -> new_esEs4(yvy23, yvy17, bca, bcb) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bba)) -> new_esEs7(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bbb), bbc)) -> new_esEs6(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bdb)) -> new_esEs16(yvy24, yvy18, bdb) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bcc)) -> new_esEs7(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, app(app(ty_Either, bdc), bdd)) -> new_esEs4(yvy24, yvy18, bdc, bdd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(yvy24, yvy18, bcg, bch, bda) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bcd), bce)) -> new_esEs6(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcf)) -> new_esEs11(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, cac, cad) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, cac, cad) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, cac), new_asAs(new_esEs21(yvy700, yvy720, cac), new_ltEs18(yvy701, yvy721, cad)), cac, cad) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_lt12(yvy700, yvy720, bea, beb) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bde)) -> new_lt9(yvy700, yvy720, bde) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cae)) -> new_lt15(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bea), beb)) -> new_esEs6(yvy700, yvy720, bea, beb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cae)) -> new_esEs11(yvy700, yvy720, cae) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bde)) -> new_esEs16(yvy700, yvy720, bde) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bff), bee)) -> new_ltEs7(yvy701, yvy721, bff, bee) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs13(yvy701, yvy721, caf, cag, cah) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cba), cbb)) -> new_ltEs14(yvy701, yvy721, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bdh)) -> new_ltEs10(yvy701, yvy721, bdh) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bdf, bdg) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bdf, bdg) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bdf, bdg) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bdf, bdg) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfc), dfd)) -> new_ltEs14(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_ltEs5(Nothing, Nothing, cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dfg)) -> new_ltEs4(yvy7010, yvy7210, dfg) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfe)) -> new_ltEs10(yvy7010, yvy7210, dfe) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs13(yvy7010, yvy7210, deh, dfa, dfb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, def), deg)) -> new_ltEs7(yvy7010, yvy7210, def, deg) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bec), bed), bee) -> new_ltEs7(yvy7010, yvy7210, bec, bed) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(yvy7010, yvy7210, bfg, bfh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Maybe, bgg)) -> new_ltEs5(yvy7010, yvy7210, bgg) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dff)) -> new_ltEs5(yvy7010, yvy7210, dff) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfd), bee) -> new_ltEs5(yvy7010, yvy7210, bfd) new_ltEs7(Right(yvy7010), Left(yvy7210), bff, bee) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bee) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bee) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bee) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(yvy7010, yvy7210, bga, bgb, bgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_[], bgh)) -> new_ltEs4(yvy7010, yvy7210, bgh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bee) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bee) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bee) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfc), bee) -> new_ltEs10(yvy7010, yvy7210, bfc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bee) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bff, bee) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfa), bfb), bee) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bee) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bef), beg), beh), bee) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bfe), bee) -> new_ltEs4(yvy7010, yvy7210, bfe) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(app(ty_@2, bgd), bge)) -> new_ltEs14(yvy7010, yvy7210, bgd, bge) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, app(ty_Ratio, bgf)) -> new_ltEs10(yvy7010, yvy7210, bgf) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bff, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bdh) -> new_fsEs(new_compare27(yvy701, yvy721, bdh)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cba, cbb) -> new_pePe(new_lt21(yvy7010, yvy7210, cba), new_asAs(new_esEs29(yvy7010, yvy7210, cba), new_ltEs20(yvy7011, yvy7211, cbb))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dha)) -> new_lt9(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_lt12(yvy7010, yvy7210, dge, dgf) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_lt15(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_lt18(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_lt6(yvy7010, yvy7210, dgb, dgc, dgd) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_lt5(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs5(yvy7010, yvy7210, dgb, dgc, dgd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgg)) -> new_esEs11(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dha)) -> new_esEs16(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfh), dga)) -> new_esEs4(yvy7010, yvy7210, dfh, dga) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dge), dgf)) -> new_esEs6(yvy7010, yvy7210, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgh)) -> new_esEs7(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhb), dhc)) -> new_ltEs7(yvy7011, yvy7211, dhb, dhc) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs13(yvy7011, yvy7211, dhd, dhe, dhf) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eaa)) -> new_ltEs10(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhg), dhh)) -> new_ltEs14(yvy7011, yvy7211, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eab)) -> new_ltEs5(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eac)) -> new_ltEs4(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bde) -> LT new_compare0([], [], bde) -> EQ new_compare0(:(yvy7000, yvy7001), [], bde) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bde) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bde), bde) new_primCompAux0(yvy7000, yvy7200, yvy196, bde) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bde)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddd), dde)) -> new_compare6(yvy7000, yvy7200, ddd, dde) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dec)) -> new_compare27(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dea), deb)) -> new_compare29(yvy7000, yvy7200, dea, deb) new_compare31(yvy7000, yvy7200, app(ty_[], dee)) -> new_compare0(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare10(yvy7000, yvy7200, ddf, ddg, ddh) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ded)) -> new_compare9(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(yvy4000, yvy3000, bac, bad, bae) new_esEs7(Nothing, Just(yvy3000), fd) -> False new_esEs7(Just(yvy4000), Nothing, fd) -> False new_esEs7(Nothing, Nothing, fd) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hh), baa)) -> new_esEs6(yvy4000, yvy3000, hh, baa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bab)) -> new_esEs11(yvy4000, yvy3000, bab) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], baf)) -> new_esEs16(yvy4000, yvy3000, baf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, hg)) -> new_esEs7(yvy4000, yvy3000, hg) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bag), bah)) -> new_esEs4(yvy4000, yvy3000, bag, bah) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], gd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gd) -> new_asAs(new_esEs18(yvy4000, yvy3000, gd), new_esEs16(yvy4001, yvy3001, gd)) new_esEs16(:(yvy4000, yvy4001), [], gd) -> False new_esEs16([], :(yvy3000, yvy3001), gd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(yvy4000, yvy3000, ha, hb, hc) new_esEs18(yvy4000, yvy3000, app(ty_[], hd)) -> new_esEs16(yvy4000, yvy3000, hd) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, gh)) -> new_esEs11(yvy4000, yvy3000, gh) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, he), hf)) -> new_esEs4(yvy4000, yvy3000, he, hf) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ge)) -> new_esEs7(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, gf), gg)) -> new_esEs6(yvy4000, yvy3000, gf, gg) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ff, fg) -> new_asAs(new_esEs22(yvy4000, yvy3000, ff), new_esEs23(yvy4001, yvy3001, fg)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs4(yvy4000, yvy3000, ccd, cce) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbg)) -> new_esEs11(yvy4000, yvy3000, cbg) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy4000, yvy3000, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbd)) -> new_esEs7(yvy4000, yvy3000, cbd) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs5(yvy4000, yvy3000, cbh, cca, ccb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccc)) -> new_esEs16(yvy4000, yvy3000, ccc) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdf), cdg)) -> new_esEs4(yvy4001, yvy3001, cdf, cdg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4001, yvy3001, cdb, cdc, cdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccf)) -> new_esEs7(yvy4001, yvy3001, ccf) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy4001, yvy3001, ccg, cch) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cda)) -> new_esEs11(yvy4001, yvy3001, cda) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cde)) -> new_esEs16(yvy4001, yvy3001, cde) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), fh) -> new_asAs(new_esEs19(yvy4000, yvy3000, fh), new_esEs20(yvy4001, yvy3001, fh)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ga, gb, gc) -> new_asAs(new_esEs24(yvy4000, yvy3000, ga), new_asAs(new_esEs25(yvy4001, yvy3001, gb), new_esEs26(yvy4002, yvy3002, gc))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(yvy4000, yvy3000, ced, cee, cef) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs7(yvy4000, yvy3000, cdh) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs16(yvy4000, yvy3000, ceg) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs4(yvy4000, yvy3000, ceh, cfa) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cec)) -> new_esEs11(yvy4000, yvy3000, cec) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(yvy4001, yvy3001, cff, cfg, cfh) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfb)) -> new_esEs7(yvy4001, yvy3001, cfb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfc), cfd)) -> new_esEs6(yvy4001, yvy3001, cfc, cfd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(ty_[], cga)) -> new_esEs16(yvy4001, yvy3001, cga) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfe)) -> new_esEs11(yvy4001, yvy3001, cfe) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgg)) -> new_esEs11(yvy4002, yvy3002, cgg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chc)) -> new_esEs16(yvy4002, yvy3002, chc) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cge), cgf)) -> new_esEs6(yvy4002, yvy3002, cge, cgf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgd)) -> new_esEs7(yvy4002, yvy3002, cgd) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chd), che)) -> new_esEs4(yvy4002, yvy3002, chd, che) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs5(yvy4002, yvy3002, cgh, cha, chb) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), caf, cag, cah) -> new_pePe(new_lt20(yvy7010, yvy7210, caf), new_asAs(new_esEs27(yvy7010, yvy7210, caf), new_pePe(new_lt19(yvy7011, yvy7211, cag), new_asAs(new_esEs28(yvy7011, yvy7211, cag), new_ltEs19(yvy7012, yvy7212, cah))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_lt12(yvy7010, yvy7210, dac, dad) new_lt20(yvy7010, yvy7210, app(ty_[], dag)) -> new_lt9(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_lt15(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_lt18(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_lt6(yvy7010, yvy7210, chh, daa, dab) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_lt5(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(ty_[], dag)) -> new_esEs16(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dac), dad)) -> new_esEs6(yvy7010, yvy7210, dac, dad) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dae)) -> new_esEs11(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, daf)) -> new_esEs7(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy7010, yvy7210, chf, chg) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs5(yvy7010, yvy7210, chh, daa, dab) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_lt18(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_lt15(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dca)) -> new_lt9(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_lt12(yvy7011, yvy7211, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(yvy7011, yvy7211, dbb, dbc, dbd) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_lt5(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbh)) -> new_esEs7(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dca)) -> new_esEs16(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbg)) -> new_esEs11(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbe), dbf)) -> new_esEs6(yvy7011, yvy7211, dbe, dbf) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy7011, yvy7211, dbb, dbc, dbd) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dah), dba)) -> new_esEs4(yvy7011, yvy7211, dah, dba) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs13(yvy7012, yvy7212, dcd, dce, dcf) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcb), dcc)) -> new_ltEs7(yvy7012, yvy7212, dcb, dcc) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcg), dch)) -> new_ltEs14(yvy7012, yvy7212, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dda)) -> new_ltEs10(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddb)) -> new_ltEs5(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddc)) -> new_ltEs4(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, bea, beb) -> new_esEs9(new_compare29(yvy700, yvy720, bea, beb), LT) new_compare29(yvy700, yvy720, bea, beb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bea, beb), bea, beb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bde) -> new_esEs9(new_compare0(yvy700, yvy720, bde), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cae) -> new_esEs9(new_compare27(yvy700, yvy720, cae), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy400, yvy300, ff, fg) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Maybe, fd)) -> new_esEs7(yvy400, yvy300, fd) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs5(yvy400, yvy300, ga, gb, gc) new_esEs36(yvy400, yvy300, app(ty_[], gd)) -> new_esEs16(yvy400, yvy300, gd) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(ty_Ratio, fh)) -> new_esEs11(yvy400, yvy300, fh) new_esEs37(yvy401, yvy301, app(app(ty_Either, caa), cab)) -> new_esEs4(yvy401, yvy301, caa, cab) new_esEs37(yvy401, yvy301, app(ty_[], bhh)) -> new_esEs16(yvy401, yvy301, bhh) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(ty_@2, bhb), bhc)) -> new_esEs6(yvy401, yvy301, bhb, bhc) new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs5(yvy401, yvy301, bhe, bhf, bhg) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs37(yvy401, yvy301, app(ty_Maybe, bha)) -> new_esEs7(yvy401, yvy301, bha) new_esEs37(yvy401, yvy301, app(ty_Ratio, bhd)) -> new_esEs11(yvy401, yvy301, bhd) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) The set Q consists of the following terms: new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt12(x0, x1, x2, x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs8(False, True) new_esEs8(True, False) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16([], [], x0) new_esEs27(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare28(x0, x1, False) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_compare210(x0, x1, True, x2, x3) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_pePe(True, x0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, x0) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare29(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs5(Just(x0), Nothing, x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(x0, x1) new_lt13(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_not(True) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs9(GT, GT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs7(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs16([], :(x0, x1), x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs36(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Nothing, Nothing, x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_esEs37(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_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt15(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) 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(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitLT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, bc), new_esEs37(yvy401, yvy301, bd)), bc, bd), LT), bc, bd, be) 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, 9 >= 12 *new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT(yvy22, yvy23, yvy24, h, ba, bb) The graph contains the following edges 6 >= 1, 7 >= 2, 8 >= 3, 10 >= 4, 11 >= 5, 12 >= 6 *new_splitLT(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 4 >= 7, 5 >= 8, 6 >= 9 *new_splitLT2(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, h, ba, bb) -> new_splitLT1(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_esEs9(new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, h), new_esEs33(yvy24, yvy18, ba)), h, ba), GT), h, ba, bb) 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, 12 >= 12 *new_splitLT2(yvy17, yvy18, yvy19, yvy20, Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy22, yvy23, yvy24, True, h, ba, bb) -> new_splitLT3(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), h, ba, bb) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 10 >= 7, 11 >= 8, 12 >= 9 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs2(yvy4000, yvy3000, bf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(ty_Maybe, de)) -> new_esEs(yvy4001, yvy3001, de) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(yvy4000, yvy3000, bcg, bch) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bbf) -> new_esEs2(yvy4001, yvy3001, bbf) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_[], bdh)) -> new_esEs2(yvy4000, yvy3000, bdh) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, baf), bag)) -> new_esEs0(yvy4000, yvy3000, baf, bag) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(ty_@2, df), dg)) -> new_esEs0(yvy4001, yvy3001, df, dg) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_esEs1(yvy4000, yvy3000, fc, fd, ff) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, db), dc), cb) -> new_esEs3(yvy4000, yvy3000, db, dc) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_Maybe, bdb)) -> new_esEs(yvy4000, yvy3000, bdb) new_esEs(Just(yvy4000), Just(yvy3000), app(ty_Maybe, h)) -> new_esEs(yvy4000, yvy3000, h) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(ty_[], bab)) -> new_esEs2(yvy4002, yvy3002, bab) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(ty_[], ha), eh) -> new_esEs2(yvy4001, yvy3001, ha) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(yvy4000, yvy3000, bca, bcb) new_esEs(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(yvy4000, yvy3000, bc, bd, be) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(yvy4000, yvy3000, bea, beb) new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ba), bb)) -> new_esEs0(yvy4000, yvy3000, ba, bb) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(ty_Either, ed), ee)) -> new_esEs3(yvy4001, yvy3001, ed, ee) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], fg), eg, eh) -> new_esEs2(yvy4000, yvy3000, fg) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(ty_Maybe, hd)) -> new_esEs(yvy4002, yvy3002, hd) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, ca), cb) -> new_esEs(yvy4000, yvy3000, ca) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(yvy4000, yvy3000, bah, bba, bbb) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fh), ga), eg, eh) -> new_esEs3(yvy4000, yvy3000, fh, ga) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(ty_Maybe, gc), eh) -> new_esEs(yvy4001, yvy3001, gc) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bde, bdf, bdg) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(yvy4001, yvy3001, dh, ea, eb) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(ty_@2, gd), ge), eh) -> new_esEs0(yvy4001, yvy3001, gd, ge) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ef), eg, eh) -> new_esEs(yvy4000, yvy3000, ef) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(ty_@2, he), hf)) -> new_esEs0(yvy4002, yvy3002, he, hf) new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bbh) -> new_esEs(yvy4000, yvy3000, bbg) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], da), cb) -> new_esEs2(yvy4000, yvy3000, da) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs1(yvy4002, yvy3002, hg, hh, baa) new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bg), bh)) -> new_esEs3(yvy4000, yvy3000, bg, bh) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(ty_Either, hb), hc), eh) -> new_esEs3(yvy4001, yvy3001, hb, hc) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bae)) -> new_esEs(yvy4000, yvy3000, bae) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(ty_[], ec)) -> new_esEs2(yvy4001, yvy3001, ec) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fa), fb), eg, eh) -> new_esEs0(yvy4000, yvy3000, fa, fb) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(yvy4000, yvy3000, bcc, bcd, bce) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], bbc)) -> new_esEs2(yvy4000, yvy3000, bbc) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(ty_Either, bac), bad)) -> new_esEs3(yvy4002, yvy3002, bac, bad) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(yvy4000, yvy3000, bbd, bbe) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, cc), cd), cb) -> new_esEs0(yvy4000, yvy3000, cc, cd) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_esEs1(yvy4001, yvy3001, gf, gg, gh) new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_[], bcf), bbh) -> new_esEs2(yvy4000, yvy3000, bcf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, ce), cf), cg), cb) -> new_esEs1(yvy4000, yvy3000, ce, cf, cg) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) 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_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bae)) -> new_esEs(yvy4000, yvy3000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, baf), bag)) -> new_esEs0(yvy4000, yvy3000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yvy4000), Just(yvy3000), app(ty_Maybe, h)) -> new_esEs(yvy4000, yvy3000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ba), bb)) -> new_esEs0(yvy4000, yvy3000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(yvy4000, yvy3000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bg), bh)) -> new_esEs3(yvy4000, yvy3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(yvy4000, yvy3000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs2(yvy4000, yvy3000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(yvy4000, yvy3000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bbf) -> new_esEs2(yvy4001, yvy3001, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], bbc)) -> new_esEs2(yvy4000, yvy3000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_Maybe, bdb)) -> new_esEs(yvy4000, yvy3000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bbh) -> new_esEs(yvy4000, yvy3000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(ty_Maybe, de)) -> new_esEs(yvy4001, yvy3001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, ca), cb) -> new_esEs(yvy4000, yvy3000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(ty_Maybe, hd)) -> new_esEs(yvy4002, yvy3002, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(ty_Maybe, gc), eh) -> new_esEs(yvy4001, yvy3001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ef), eg, eh) -> new_esEs(yvy4000, yvy3000, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(yvy4000, yvy3000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(ty_@2, df), dg)) -> new_esEs0(yvy4001, yvy3001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, cc), cd), cb) -> new_esEs0(yvy4000, yvy3000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(ty_@2, gd), ge), eh) -> new_esEs0(yvy4001, yvy3001, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(ty_@2, he), hf)) -> new_esEs0(yvy4002, yvy3002, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fa), fb), eg, eh) -> new_esEs0(yvy4000, yvy3000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(yvy4000, yvy3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(yvy4000, yvy3000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_[], bdh)) -> new_esEs2(yvy4000, yvy3000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_[], bcf), bbh) -> new_esEs2(yvy4000, yvy3000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(yvy4000, yvy3000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, db), dc), cb) -> new_esEs3(yvy4000, yvy3000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(ty_Either, ed), ee)) -> new_esEs3(yvy4001, yvy3001, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fh), ga), eg, eh) -> new_esEs3(yvy4000, yvy3000, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(ty_Either, hb), hc), eh) -> new_esEs3(yvy4001, yvy3001, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(ty_Either, bac), bad)) -> new_esEs3(yvy4002, yvy3002, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], da), cb) -> new_esEs2(yvy4000, yvy3000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(ty_[], ec)) -> new_esEs2(yvy4001, yvy3001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(ty_[], bab)) -> new_esEs2(yvy4002, yvy3002, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(ty_[], ha), eh) -> new_esEs2(yvy4001, yvy3001, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], fg), eg, eh) -> new_esEs2(yvy4000, yvy3000, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(yvy4001, yvy3001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, ce), cf), cg), cb) -> new_esEs1(yvy4000, yvy3000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_esEs1(yvy4000, yvy3000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs1(yvy4002, yvy3002, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_esEs1(yvy4001, yvy3001, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, h, ba, bb) -> new_splitGT(yvy40, yvy42, yvy43, h, ba, bb) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, True, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare32(yvy42, yvy43, yvy36, yvy37, h, ba), LT), h, ba, bb) new_splitGT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, bc), new_esEs35(yvy401, yvy301, bd)), bc, bd), GT), bc, bd, be) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bfb), bfc), bfd) -> new_ltEs7(yvy7010, yvy7210, bfb, bfc) new_ltEs7(Right(yvy7010), Left(yvy7210), bge, bfd) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfd) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bge), bfd)) -> new_ltEs7(yvy701, yvy721, bge, bfd) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_lt18(yvy7011, yvy7211, dcb) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], dba)) -> new_esEs16(yvy7010, yvy7210, dba) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs5(yvy7010, yvy7210, dgd, dge, dgf) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfd) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_esEs6(yvy700, yvy720, beh, bfa) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ha)) -> new_esEs7(yvy4000, yvy3000, ha) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfh)) -> new_ltEs5(yvy7010, yvy7210, dfh) new_esEs34(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_esEs7(yvy7011, yvy7211, dcb) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs5(yvy401, yvy301, bdf, bdg, bdh) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bah)) -> new_esEs11(yvy23, yvy17, bah) new_esEs33(yvy24, yvy18, app(ty_[], bcf)) -> new_esEs16(yvy24, yvy18, bcf) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bhh, caa) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cab) -> new_esEs9(new_compare27(yvy700, yvy720, cab), LT) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, beh, bfa) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, beh, bfa), beh, bfa) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfd) -> new_ltEs8(yvy7010, yvy7210) new_esEs35(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt13(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_lt12(yvy700, yvy720, beh, bfa) new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cha)) -> new_esEs11(yvy4002, yvy3002, cha) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4000, yvy3000, he, hf, hg) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs5(yvy4000, yvy3000, gb, gc, gd) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcf), dcg), dch)) -> new_ltEs13(yvy7012, yvy7212, dcf, dcg, dch) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhd), dhe)) -> new_ltEs7(yvy7011, yvy7211, dhd, dhe) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bbd)) -> new_esEs16(yvy23, yvy17, bbd) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs21(yvy700, yvy720, app(ty_Ratio, cab)) -> new_esEs11(yvy700, yvy720, cab) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(yvy7010, yvy7210, bgh, bha, bhb) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_lt12(yvy7010, yvy7210, dae, daf) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4001, yvy3001, cfh, cga, cgb) new_lt20(yvy7010, yvy7210, app(ty_[], dba)) -> new_lt9(yvy7010, yvy7210, dba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfe), dff)) -> new_ltEs14(yvy7010, yvy7210, dfe, dff) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bda)) -> new_lt9(yvy700, yvy720, bda) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_ltEs13(yvy7011, yvy7211, dhf, dhg, dhh) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_lt12(yvy700, yvy720, beh, bfa) -> new_esEs9(new_compare29(yvy700, yvy720, beh, bfa), LT) new_esEs35(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), cac, cad, cae) -> new_pePe(new_lt20(yvy7010, yvy7210, cac), new_asAs(new_esEs27(yvy7010, yvy7210, cac), new_pePe(new_lt19(yvy7011, yvy7211, cad), new_asAs(new_esEs28(yvy7011, yvy7211, cad), new_ltEs19(yvy7012, yvy7212, cae))))) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbf)) -> new_esEs11(yvy4000, yvy3000, cbf) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bda) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bda)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddf), ddg)) -> new_compare6(yvy7000, yvy7200, ddf, ddg) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs28(yvy7011, yvy7211, app(ty_[], dcc)) -> new_esEs16(yvy7011, yvy7211, dcc) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs35(yvy401, yvy301, app(ty_Maybe, bdb)) -> new_esEs7(yvy401, yvy301, bdb) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcd), dce)) -> new_ltEs7(yvy7012, yvy7212, dcd, dce) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), gh) -> False new_esEs7(Just(yvy4000), Nothing, gh) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbd), cbe)) -> new_esEs6(yvy4000, yvy3000, cbd, cbe) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_[], bhg)) -> new_ltEs4(yvy7010, yvy7210, bhg) new_esEs35(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_esEs11(yvy7010, yvy7210, dha) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, gh) -> True new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cec), ced)) -> new_esEs6(yvy4000, yvy3000, cec, ced) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eac)) -> new_ltEs10(yvy7011, yvy7211, eac) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfd) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bed, bee) new_esEs26(yvy4002, yvy3002, app(ty_[], che)) -> new_esEs16(yvy4002, yvy3002, che) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cba, cbb) -> new_asAs(new_esEs22(yvy4000, yvy3000, cba), new_esEs23(yvy4001, yvy3001, cbb)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dda), ddb)) -> new_ltEs14(yvy7012, yvy7212, dda, ddb) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs13(yvy701, yvy721, cac, cad, cae) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_ltEs5(Just(yvy7010), Nothing, cah) -> False new_ltEs5(Nothing, Nothing, cah) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bbg)) -> new_esEs7(yvy24, yvy18, bbg) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfd)) -> new_esEs7(yvy4001, yvy3001, cfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(yvy7010, yvy7210, bgf, bgg) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cde), cdf)) -> new_esEs4(yvy4001, yvy3001, cde, cdf) new_esEs18(yvy4000, yvy3000, app(ty_[], ge)) -> new_esEs16(yvy4000, yvy3000, ge) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, ddc)) -> new_ltEs10(yvy7012, yvy7212, ddc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dga)) -> new_ltEs4(yvy7010, yvy7210, dga) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgg), cgh)) -> new_esEs6(yvy4002, yvy3002, cgg, cgh) new_compare12(yvy700, yvy720, False, ca) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfd) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dee)) -> new_compare27(yvy7000, yvy7200, dee) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4001, yvy3001, cda, cdb, cdc) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbc)) -> new_esEs7(yvy4000, yvy3000, cbc) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cce)) -> new_esEs7(yvy4001, yvy3001, cce) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bda) -> new_esEs9(new_compare0(yvy700, yvy720, bda), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfd) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy24, yvy18, bcg, bch) new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy23, yvy17, bba, bbb, bbc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_esEs35(yvy401, yvy301, app(app(ty_@2, bdc), bdd)) -> new_esEs6(yvy401, yvy301, bdc, bdd) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbe), bbf)) -> new_esEs4(yvy23, yvy17, bbe, bbf) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hb), hc)) -> new_esEs6(yvy4000, yvy3000, hb, hc) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(yvy400, yvy300, cdg, cdh, cea) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bgb), bfd) -> new_ltEs10(yvy7010, yvy7210, bgb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, eaa), eab)) -> new_ltEs14(yvy7011, yvy7211, eaa, eab) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ceb)) -> new_esEs7(yvy4000, yvy3000, ceb) new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ga)) -> new_esEs11(yvy4000, yvy3000, ga) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], fd) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfe), cff)) -> new_esEs6(yvy4001, yvy3001, cfe, cff) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfd) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dec), ded)) -> new_compare29(yvy7000, yvy7200, dec, ded) new_esEs35(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Maybe, bhf)) -> new_ltEs5(yvy7010, yvy7210, bhf) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs5(yvy24, yvy18, bcc, bcd, bce) new_ltEs5(Nothing, Just(yvy7210), cah) -> True new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), caf, cag) -> new_pePe(new_lt21(yvy7010, yvy7210, caf), new_asAs(new_esEs29(yvy7010, yvy7210, caf), new_ltEs20(yvy7011, yvy7211, cag))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fd) -> new_asAs(new_esEs18(yvy4000, yvy3000, fd), new_esEs16(yvy4001, yvy3001, fd)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bge, bfd) -> True new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_esEs11(yvy7011, yvy7211, dca) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs35(yvy401, yvy301, app(ty_[], bea)) -> new_esEs16(yvy401, yvy301, bea) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccf), ccg)) -> new_esEs6(yvy4001, yvy3001, ccf, ccg) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], deg)) -> new_compare0(yvy7000, yvy7200, deg) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, caf), cag)) -> new_ltEs14(yvy701, yvy721, caf, cag) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfh), bga), bfd) -> new_ltEs14(yvy7010, yvy7210, bfh, bga) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs34(yvy400, yvy300, app(ty_Ratio, bef)) -> new_esEs11(yvy400, yvy300, bef) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hd)) -> new_esEs11(yvy4000, yvy3000, hd) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddd)) -> new_ltEs5(yvy7012, yvy7212, ddd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhh, caa) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhh), new_asAs(new_esEs21(yvy700, yvy720, bhh), new_ltEs18(yvy701, yvy721, caa)), bhh, caa) new_compare0([], :(yvy7200, yvy7201), bda) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_lt15(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, ead)) -> new_ltEs5(yvy7011, yvy7211, ead) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dhc)) -> new_lt9(yvy7010, yvy7210, dhc) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dhc)) -> new_esEs16(yvy7010, yvy7210, dhc) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfd) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bda) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs19(yvy4000, yvy3000, bef), new_esEs20(yvy4001, yvy3001, bef)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, baa), bab)) -> new_esEs4(yvy4000, yvy3000, baa, bab) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_esEs6(yvy7010, yvy7210, dae, daf) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cch)) -> new_esEs11(yvy4001, yvy3001, cch) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], cfa)) -> new_esEs16(yvy4000, yvy3000, cfa) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbh), bca)) -> new_esEs6(yvy24, yvy18, bbh, bca) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_lt12(yvy7010, yvy7210, dgg, dgh) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgd), cge)) -> new_esEs4(yvy4001, yvy3001, cgd, cge) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_lt15(yvy7010, yvy7210, dag) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_esEs6(yvy7011, yvy7211, dbg, dbh) new_esEs34(yvy400, yvy300, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy400, yvy300, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, beg)) -> new_ltEs10(yvy701, yvy721, beg) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfe), bff), bfg), bfd) -> new_ltEs13(yvy7010, yvy7210, bfe, bff, bfg) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy401, yvy301, beb, bec) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_esEs4(yvy7010, yvy7210, dgb, dgc) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bcb)) -> new_esEs11(yvy24, yvy18, bcb) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddh), dea), deb)) -> new_compare10(yvy7000, yvy7200, ddh, dea, deb) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cah)) -> new_ltEs5(yvy701, yvy721, cah) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfg)) -> new_ltEs10(yvy7010, yvy7210, dfg) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dcc)) -> new_lt9(yvy7011, yvy7211, dcc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_esEs11(yvy7010, yvy7210, dag) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_lt15(yvy7010, yvy7210, dha) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(ty_Maybe, bae)) -> new_esEs7(yvy23, yvy17, bae) new_esEs25(yvy4001, yvy3001, app(ty_[], cgc)) -> new_esEs16(yvy4001, yvy3001, cgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgf)) -> new_esEs7(yvy4002, yvy3002, cgf) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gf), gg)) -> new_esEs4(yvy4000, yvy3000, gf, gg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(ty_Ratio, bde)) -> new_esEs11(yvy401, yvy301, bde) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_esEs7(yvy7010, yvy7210, dah) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_lt12(yvy7011, yvy7211, dbg, dbh) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt6(yvy7011, yvy7211, dbd, dbe, dbf) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bgd), bfd) -> new_ltEs4(yvy7010, yvy7210, bgd) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_lt5(yvy7011, yvy7211, dbb, dbc) new_compare0(:(yvy7000, yvy7001), [], bda) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(yvy7011, yvy7211, dbd, dbe, dbf) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hh)) -> new_esEs16(yvy4000, yvy3000, hh) new_ltEs10(yvy701, yvy721, beg) -> new_fsEs(new_compare27(yvy701, yvy721, beg)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bed, bee) -> GT new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdg, cdh, cea) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdg), new_asAs(new_esEs25(yvy4001, yvy3001, cdh), new_esEs26(yvy4002, yvy3002, cea))) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_esEs6(yvy7010, yvy7210, dgg, dgh) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bda) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bda), bda) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_esEs4(yvy7011, yvy7211, dbb, dbc) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_@2, bhc), bhd)) -> new_ltEs14(yvy7010, yvy7210, bhc, bhd) new_esEs32(yvy23, yvy17, app(app(ty_@2, baf), bag)) -> new_esEs6(yvy23, yvy17, baf, bag) new_esEs21(yvy700, yvy720, app(ty_[], bda)) -> new_esEs16(yvy700, yvy720, bda) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_lt18(yvy7010, yvy7210, dhb) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy4002, yvy3002, chf, chg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Ratio, bhe)) -> new_ltEs10(yvy7010, yvy7210, bhe) new_esEs35(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs5(yvy4002, yvy3002, chb, chc, chd) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_lt6(yvy7010, yvy7210, dgd, dge, dgf) new_esEs35(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cee)) -> new_esEs11(yvy4000, yvy3000, cee) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_lt18(yvy7010, yvy7210, dah) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cab)) -> new_lt15(yvy700, yvy720, cab) new_compare31(yvy7000, yvy7200, app(ty_Maybe, def)) -> new_compare9(yvy7000, yvy7200, def) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], fd) -> False new_esEs16([], :(yvy3000, yvy3001), fd) -> False new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cdd)) -> new_esEs16(yvy4001, yvy3001, cdd) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ff)) -> new_esEs7(yvy4000, yvy3000, ff) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_lt5(yvy7010, yvy7210, dgb, dgc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_lt6(yvy7010, yvy7210, dab, dac, dad) new_ltEs20(yvy7011, yvy7211, app(ty_[], eae)) -> new_ltEs4(yvy7011, yvy7211, eae) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfg)) -> new_esEs11(yvy4001, yvy3001, cfg) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy4000, yvy3000, fg, fh) new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_lt5(yvy7010, yvy7210, chh, daa) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bgc), bfd) -> new_ltEs5(yvy7010, yvy7210, bgc) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, bac, bad) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, bac), new_esEs33(yvy24, yvy18, bad)), bac, bad) new_esEs22(yvy4000, yvy3000, app(ty_[], ccb)) -> new_esEs16(yvy4000, yvy3000, ccb) new_ltEs19(yvy7012, yvy7212, app(ty_[], dde)) -> new_ltEs4(yvy7012, yvy7212, dde) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_esEs7(yvy7010, yvy7210, dhb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_esEs4(yvy7010, yvy7210, chh, daa) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs13(yvy7010, yvy7210, dfb, dfc, dfd) new_esEs34(yvy400, yvy300, app(ty_[], fd)) -> new_esEs16(yvy400, yvy300, fd) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, deh), dfa)) -> new_ltEs7(yvy7010, yvy7210, deh, dfa) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(yvy7010, yvy7210, dab, dac, dad) The set Q consists of the following terms: new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_lt20(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Just(x0), Nothing, x1) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs34(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare25(x0, x1, False, x2, x3) new_compare111(x0, x1, True) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs25(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs17(Char(x0), Char(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(Nothing, Just(x0), x1) new_esEs24(x0, x1, ty_Integer) new_esEs16(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs16([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs34(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, ty_Float) new_compare0(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt7(x0, x1) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs16([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs6(EQ, GT) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_compare0([], [], x0) new_esEs26(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs34(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_ltEs11(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare210(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare0([], :(x0, x1), x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_not(True) new_esEs35(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Double) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs5(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs32(x0, x1, ty_Char) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_lt12(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_lt9(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs32(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, x2, x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare32(yvy42, yvy43, yvy36, yvy37, h, ba), LT), h, ba, bb) at position [8,0] we obtained the following new rules [LPAR04]: (new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb),new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb)) ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, h, ba, bb) -> new_splitGT(yvy40, yvy42, yvy43, h, ba, bb) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, True, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, bc), new_esEs35(yvy401, yvy301, bd)), bc, bd), GT), bc, bd, be) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bfb), bfc), bfd) -> new_ltEs7(yvy7010, yvy7210, bfb, bfc) new_ltEs7(Right(yvy7010), Left(yvy7210), bge, bfd) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfd) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bge), bfd)) -> new_ltEs7(yvy701, yvy721, bge, bfd) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_lt18(yvy7011, yvy7211, dcb) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], dba)) -> new_esEs16(yvy7010, yvy7210, dba) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs5(yvy7010, yvy7210, dgd, dge, dgf) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfd) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_esEs6(yvy700, yvy720, beh, bfa) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ha)) -> new_esEs7(yvy4000, yvy3000, ha) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfh)) -> new_ltEs5(yvy7010, yvy7210, dfh) new_esEs34(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_esEs7(yvy7011, yvy7211, dcb) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs5(yvy401, yvy301, bdf, bdg, bdh) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bah)) -> new_esEs11(yvy23, yvy17, bah) new_esEs33(yvy24, yvy18, app(ty_[], bcf)) -> new_esEs16(yvy24, yvy18, bcf) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bhh, caa) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cab) -> new_esEs9(new_compare27(yvy700, yvy720, cab), LT) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, beh, bfa) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, beh, bfa), beh, bfa) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfd) -> new_ltEs8(yvy7010, yvy7210) new_esEs35(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt13(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_lt12(yvy700, yvy720, beh, bfa) new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cha)) -> new_esEs11(yvy4002, yvy3002, cha) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4000, yvy3000, he, hf, hg) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs5(yvy4000, yvy3000, gb, gc, gd) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcf), dcg), dch)) -> new_ltEs13(yvy7012, yvy7212, dcf, dcg, dch) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhd), dhe)) -> new_ltEs7(yvy7011, yvy7211, dhd, dhe) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bbd)) -> new_esEs16(yvy23, yvy17, bbd) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs21(yvy700, yvy720, app(ty_Ratio, cab)) -> new_esEs11(yvy700, yvy720, cab) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(yvy7010, yvy7210, bgh, bha, bhb) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_lt12(yvy7010, yvy7210, dae, daf) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4001, yvy3001, cfh, cga, cgb) new_lt20(yvy7010, yvy7210, app(ty_[], dba)) -> new_lt9(yvy7010, yvy7210, dba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfe), dff)) -> new_ltEs14(yvy7010, yvy7210, dfe, dff) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bda)) -> new_lt9(yvy700, yvy720, bda) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_ltEs13(yvy7011, yvy7211, dhf, dhg, dhh) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_lt12(yvy700, yvy720, beh, bfa) -> new_esEs9(new_compare29(yvy700, yvy720, beh, bfa), LT) new_esEs35(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), cac, cad, cae) -> new_pePe(new_lt20(yvy7010, yvy7210, cac), new_asAs(new_esEs27(yvy7010, yvy7210, cac), new_pePe(new_lt19(yvy7011, yvy7211, cad), new_asAs(new_esEs28(yvy7011, yvy7211, cad), new_ltEs19(yvy7012, yvy7212, cae))))) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbf)) -> new_esEs11(yvy4000, yvy3000, cbf) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bda) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bda)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddf), ddg)) -> new_compare6(yvy7000, yvy7200, ddf, ddg) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs28(yvy7011, yvy7211, app(ty_[], dcc)) -> new_esEs16(yvy7011, yvy7211, dcc) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs35(yvy401, yvy301, app(ty_Maybe, bdb)) -> new_esEs7(yvy401, yvy301, bdb) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcd), dce)) -> new_ltEs7(yvy7012, yvy7212, dcd, dce) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), gh) -> False new_esEs7(Just(yvy4000), Nothing, gh) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbd), cbe)) -> new_esEs6(yvy4000, yvy3000, cbd, cbe) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_[], bhg)) -> new_ltEs4(yvy7010, yvy7210, bhg) new_esEs35(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_esEs11(yvy7010, yvy7210, dha) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, gh) -> True new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cec), ced)) -> new_esEs6(yvy4000, yvy3000, cec, ced) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eac)) -> new_ltEs10(yvy7011, yvy7211, eac) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfd) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bed, bee) new_esEs26(yvy4002, yvy3002, app(ty_[], che)) -> new_esEs16(yvy4002, yvy3002, che) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cba, cbb) -> new_asAs(new_esEs22(yvy4000, yvy3000, cba), new_esEs23(yvy4001, yvy3001, cbb)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dda), ddb)) -> new_ltEs14(yvy7012, yvy7212, dda, ddb) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs13(yvy701, yvy721, cac, cad, cae) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_ltEs5(Just(yvy7010), Nothing, cah) -> False new_ltEs5(Nothing, Nothing, cah) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bbg)) -> new_esEs7(yvy24, yvy18, bbg) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfd)) -> new_esEs7(yvy4001, yvy3001, cfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(yvy7010, yvy7210, bgf, bgg) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cde), cdf)) -> new_esEs4(yvy4001, yvy3001, cde, cdf) new_esEs18(yvy4000, yvy3000, app(ty_[], ge)) -> new_esEs16(yvy4000, yvy3000, ge) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, ddc)) -> new_ltEs10(yvy7012, yvy7212, ddc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dga)) -> new_ltEs4(yvy7010, yvy7210, dga) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgg), cgh)) -> new_esEs6(yvy4002, yvy3002, cgg, cgh) new_compare12(yvy700, yvy720, False, ca) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfd) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dee)) -> new_compare27(yvy7000, yvy7200, dee) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4001, yvy3001, cda, cdb, cdc) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbc)) -> new_esEs7(yvy4000, yvy3000, cbc) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cce)) -> new_esEs7(yvy4001, yvy3001, cce) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bda) -> new_esEs9(new_compare0(yvy700, yvy720, bda), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfd) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy24, yvy18, bcg, bch) new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy23, yvy17, bba, bbb, bbc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_esEs35(yvy401, yvy301, app(app(ty_@2, bdc), bdd)) -> new_esEs6(yvy401, yvy301, bdc, bdd) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbe), bbf)) -> new_esEs4(yvy23, yvy17, bbe, bbf) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hb), hc)) -> new_esEs6(yvy4000, yvy3000, hb, hc) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(yvy400, yvy300, cdg, cdh, cea) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bgb), bfd) -> new_ltEs10(yvy7010, yvy7210, bgb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, eaa), eab)) -> new_ltEs14(yvy7011, yvy7211, eaa, eab) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ceb)) -> new_esEs7(yvy4000, yvy3000, ceb) new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ga)) -> new_esEs11(yvy4000, yvy3000, ga) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], fd) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfe), cff)) -> new_esEs6(yvy4001, yvy3001, cfe, cff) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfd) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dec), ded)) -> new_compare29(yvy7000, yvy7200, dec, ded) new_esEs35(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Maybe, bhf)) -> new_ltEs5(yvy7010, yvy7210, bhf) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs5(yvy24, yvy18, bcc, bcd, bce) new_ltEs5(Nothing, Just(yvy7210), cah) -> True new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), caf, cag) -> new_pePe(new_lt21(yvy7010, yvy7210, caf), new_asAs(new_esEs29(yvy7010, yvy7210, caf), new_ltEs20(yvy7011, yvy7211, cag))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fd) -> new_asAs(new_esEs18(yvy4000, yvy3000, fd), new_esEs16(yvy4001, yvy3001, fd)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bge, bfd) -> True new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_esEs11(yvy7011, yvy7211, dca) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs35(yvy401, yvy301, app(ty_[], bea)) -> new_esEs16(yvy401, yvy301, bea) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccf), ccg)) -> new_esEs6(yvy4001, yvy3001, ccf, ccg) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], deg)) -> new_compare0(yvy7000, yvy7200, deg) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, caf), cag)) -> new_ltEs14(yvy701, yvy721, caf, cag) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfh), bga), bfd) -> new_ltEs14(yvy7010, yvy7210, bfh, bga) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs34(yvy400, yvy300, app(ty_Ratio, bef)) -> new_esEs11(yvy400, yvy300, bef) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hd)) -> new_esEs11(yvy4000, yvy3000, hd) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddd)) -> new_ltEs5(yvy7012, yvy7212, ddd) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhh, caa) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhh), new_asAs(new_esEs21(yvy700, yvy720, bhh), new_ltEs18(yvy701, yvy721, caa)), bhh, caa) new_compare0([], :(yvy7200, yvy7201), bda) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_lt15(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, ead)) -> new_ltEs5(yvy7011, yvy7211, ead) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dhc)) -> new_lt9(yvy7010, yvy7210, dhc) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dhc)) -> new_esEs16(yvy7010, yvy7210, dhc) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfd) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bda) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs19(yvy4000, yvy3000, bef), new_esEs20(yvy4001, yvy3001, bef)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, baa), bab)) -> new_esEs4(yvy4000, yvy3000, baa, bab) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_esEs6(yvy7010, yvy7210, dae, daf) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cch)) -> new_esEs11(yvy4001, yvy3001, cch) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], cfa)) -> new_esEs16(yvy4000, yvy3000, cfa) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbh), bca)) -> new_esEs6(yvy24, yvy18, bbh, bca) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_lt12(yvy7010, yvy7210, dgg, dgh) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgd), cge)) -> new_esEs4(yvy4001, yvy3001, cgd, cge) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_lt15(yvy7010, yvy7210, dag) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_esEs6(yvy7011, yvy7211, dbg, dbh) new_esEs34(yvy400, yvy300, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy400, yvy300, cba, cbb) new_ltEs18(yvy701, yvy721, app(ty_Ratio, beg)) -> new_ltEs10(yvy701, yvy721, beg) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfe), bff), bfg), bfd) -> new_ltEs13(yvy7010, yvy7210, bfe, bff, bfg) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy401, yvy301, beb, bec) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_esEs4(yvy7010, yvy7210, dgb, dgc) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bcb)) -> new_esEs11(yvy24, yvy18, bcb) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddh), dea), deb)) -> new_compare10(yvy7000, yvy7200, ddh, dea, deb) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cah)) -> new_ltEs5(yvy701, yvy721, cah) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfg)) -> new_ltEs10(yvy7010, yvy7210, dfg) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dcc)) -> new_lt9(yvy7011, yvy7211, dcc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_esEs11(yvy7010, yvy7210, dag) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_lt15(yvy7010, yvy7210, dha) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(ty_Maybe, bae)) -> new_esEs7(yvy23, yvy17, bae) new_esEs25(yvy4001, yvy3001, app(ty_[], cgc)) -> new_esEs16(yvy4001, yvy3001, cgc) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgf)) -> new_esEs7(yvy4002, yvy3002, cgf) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gf), gg)) -> new_esEs4(yvy4000, yvy3000, gf, gg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(ty_Ratio, bde)) -> new_esEs11(yvy401, yvy301, bde) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, ca) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_esEs7(yvy7010, yvy7210, dah) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_lt12(yvy7011, yvy7211, dbg, dbh) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt6(yvy7011, yvy7211, dbd, dbe, dbf) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bgd), bfd) -> new_ltEs4(yvy7010, yvy7210, bgd) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_lt5(yvy7011, yvy7211, dbb, dbc) new_compare0(:(yvy7000, yvy7001), [], bda) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(yvy7011, yvy7211, dbd, dbe, dbf) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hh)) -> new_esEs16(yvy4000, yvy3000, hh) new_ltEs10(yvy701, yvy721, beg) -> new_fsEs(new_compare27(yvy701, yvy721, beg)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bed, bee) -> GT new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdg, cdh, cea) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdg), new_asAs(new_esEs25(yvy4001, yvy3001, cdh), new_esEs26(yvy4002, yvy3002, cea))) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_esEs6(yvy7010, yvy7210, dgg, dgh) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bda) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bda), bda) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_esEs4(yvy7011, yvy7211, dbb, dbc) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_@2, bhc), bhd)) -> new_ltEs14(yvy7010, yvy7210, bhc, bhd) new_esEs32(yvy23, yvy17, app(app(ty_@2, baf), bag)) -> new_esEs6(yvy23, yvy17, baf, bag) new_esEs21(yvy700, yvy720, app(ty_[], bda)) -> new_esEs16(yvy700, yvy720, bda) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_lt18(yvy7010, yvy7210, dhb) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy4002, yvy3002, chf, chg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Ratio, bhe)) -> new_ltEs10(yvy7010, yvy7210, bhe) new_esEs35(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs5(yvy4002, yvy3002, chb, chc, chd) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_lt6(yvy7010, yvy7210, dgd, dge, dgf) new_esEs35(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cee)) -> new_esEs11(yvy4000, yvy3000, cee) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_lt18(yvy7010, yvy7210, dah) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cab)) -> new_lt15(yvy700, yvy720, cab) new_compare31(yvy7000, yvy7200, app(ty_Maybe, def)) -> new_compare9(yvy7000, yvy7200, def) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], fd) -> False new_esEs16([], :(yvy3000, yvy3001), fd) -> False new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cdd)) -> new_esEs16(yvy4001, yvy3001, cdd) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ff)) -> new_esEs7(yvy4000, yvy3000, ff) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_lt5(yvy7010, yvy7210, dgb, dgc) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_lt6(yvy7010, yvy7210, dab, dac, dad) new_ltEs20(yvy7011, yvy7211, app(ty_[], eae)) -> new_ltEs4(yvy7011, yvy7211, eae) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfg)) -> new_esEs11(yvy4001, yvy3001, cfg) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy4000, yvy3000, fg, fh) new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_lt5(yvy7010, yvy7210, chh, daa) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bgc), bfd) -> new_ltEs5(yvy7010, yvy7210, bgc) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, bac, bad) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, bac), new_esEs33(yvy24, yvy18, bad)), bac, bad) new_esEs22(yvy4000, yvy3000, app(ty_[], ccb)) -> new_esEs16(yvy4000, yvy3000, ccb) new_ltEs19(yvy7012, yvy7212, app(ty_[], dde)) -> new_ltEs4(yvy7012, yvy7212, dde) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_esEs7(yvy7010, yvy7210, dhb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_esEs4(yvy7010, yvy7210, chh, daa) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs13(yvy7010, yvy7210, dfb, dfc, dfd) new_esEs34(yvy400, yvy300, app(ty_[], fd)) -> new_esEs16(yvy400, yvy300, fd) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, deh), dfa)) -> new_ltEs7(yvy7010, yvy7210, deh, dfa) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(yvy7010, yvy7210, dab, dac, dad) The set Q consists of the following terms: new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_lt20(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Just(x0), Nothing, x1) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs34(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare25(x0, x1, False, x2, x3) new_compare111(x0, x1, True) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs25(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs17(Char(x0), Char(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(Nothing, Just(x0), x1) new_esEs24(x0, x1, ty_Integer) new_esEs16(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs16([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs34(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, ty_Float) new_compare0(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt7(x0, x1) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs16([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs6(EQ, GT) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_compare0([], [], x0) new_esEs26(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs34(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_ltEs11(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare210(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare0([], :(x0, x1), x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_not(True) new_esEs35(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Double) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs5(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs32(x0, x1, ty_Char) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_lt12(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_lt9(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs32(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, x2, x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (41) UsableRulesProof (EQUIVALENT) As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R. ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, h, ba, bb) -> new_splitGT(yvy40, yvy42, yvy43, h, ba, bb) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, True, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, bc), new_esEs35(yvy401, yvy301, bd)), bc, bd), GT), bc, bd, be) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bah)) -> new_esEs11(yvy23, yvy17, bah) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbd)) -> new_esEs16(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy23, yvy17, bba, bbb, bbc) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbe), bbf)) -> new_esEs4(yvy23, yvy17, bbe, bbf) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bae)) -> new_esEs7(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, baf), bag)) -> new_esEs6(yvy23, yvy17, baf, bag) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcf)) -> new_esEs16(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbg)) -> new_esEs7(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy24, yvy18, bcg, bch) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs5(yvy24, yvy18, bcc, bcd, bce) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbh), bca)) -> new_esEs6(yvy24, yvy18, bbh, bca) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcb)) -> new_esEs11(yvy24, yvy18, bcb) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhh, caa) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhh, caa) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhh), new_asAs(new_esEs21(yvy700, yvy720, bhh), new_ltEs18(yvy701, yvy721, caa)), bhh, caa) new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(GT, LT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_lt12(yvy700, yvy720, beh, bfa) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bda)) -> new_lt9(yvy700, yvy720, bda) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cab)) -> new_lt15(yvy700, yvy720, cab) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_esEs6(yvy700, yvy720, beh, bfa) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cab)) -> new_esEs11(yvy700, yvy720, cab) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bda)) -> new_esEs16(yvy700, yvy720, bda) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bge), bfd)) -> new_ltEs7(yvy701, yvy721, bge, bfd) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs13(yvy701, yvy721, cac, cad, cae) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, caf), cag)) -> new_ltEs14(yvy701, yvy721, caf, cag) new_ltEs18(yvy701, yvy721, app(ty_Ratio, beg)) -> new_ltEs10(yvy701, yvy721, beg) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cah)) -> new_ltEs5(yvy701, yvy721, cah) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bed, bee) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bed, bee) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfe), dff)) -> new_ltEs14(yvy7010, yvy7210, dfe, dff) new_ltEs5(Just(yvy7010), Nothing, cah) -> False new_ltEs5(Nothing, Nothing, cah) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dga)) -> new_ltEs4(yvy7010, yvy7210, dga) new_ltEs5(Nothing, Just(yvy7210), cah) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfg)) -> new_ltEs10(yvy7010, yvy7210, dfg) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs13(yvy7010, yvy7210, dfb, dfc, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, deh), dfa)) -> new_ltEs7(yvy7010, yvy7210, deh, dfa) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bfb), bfc), bfd) -> new_ltEs7(yvy7010, yvy7210, bfb, bfc) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(yvy7010, yvy7210, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Maybe, bhf)) -> new_ltEs5(yvy7010, yvy7210, bhf) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfh)) -> new_ltEs5(yvy7010, yvy7210, dfh) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bgc), bfd) -> new_ltEs5(yvy7010, yvy7210, bgc) new_ltEs7(Right(yvy7010), Left(yvy7210), bge, bfd) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfd) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfd) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfd) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(yvy7010, yvy7210, bgh, bha, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_[], bhg)) -> new_ltEs4(yvy7010, yvy7210, bhg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfd) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfd) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfd) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bgb), bfd) -> new_ltEs10(yvy7010, yvy7210, bgb) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfd) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bge, bfd) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfh), bga), bfd) -> new_ltEs14(yvy7010, yvy7210, bfh, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfd) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfe), bff), bfg), bfd) -> new_ltEs13(yvy7010, yvy7210, bfe, bff, bfg) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bgd), bfd) -> new_ltEs4(yvy7010, yvy7210, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_@2, bhc), bhd)) -> new_ltEs14(yvy7010, yvy7210, bhc, bhd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Ratio, bhe)) -> new_ltEs10(yvy7010, yvy7210, bhe) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, beg) -> new_fsEs(new_compare27(yvy701, yvy721, beg)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), caf, cag) -> new_pePe(new_lt21(yvy7010, yvy7210, caf), new_asAs(new_esEs29(yvy7010, yvy7210, caf), new_ltEs20(yvy7011, yvy7211, cag))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dhc)) -> new_lt9(yvy7010, yvy7210, dhc) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_lt12(yvy7010, yvy7210, dgg, dgh) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_lt15(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_lt18(yvy7010, yvy7210, dhb) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_lt6(yvy7010, yvy7210, dgd, dge, dgf) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_lt5(yvy7010, yvy7210, dgb, dgc) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs5(yvy7010, yvy7210, dgd, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_esEs11(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dhc)) -> new_esEs16(yvy7010, yvy7210, dhc) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_esEs4(yvy7010, yvy7210, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_esEs6(yvy7010, yvy7210, dgg, dgh) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_esEs7(yvy7010, yvy7210, dhb) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhd), dhe)) -> new_ltEs7(yvy7011, yvy7211, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_ltEs13(yvy7011, yvy7211, dhf, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eac)) -> new_ltEs10(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, eaa), eab)) -> new_ltEs14(yvy7011, yvy7211, eaa, eab) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, ead)) -> new_ltEs5(yvy7011, yvy7211, ead) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eae)) -> new_ltEs4(yvy7011, yvy7211, eae) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bda) -> LT new_compare0([], [], bda) -> EQ new_compare0(:(yvy7000, yvy7001), [], bda) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bda) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bda), bda) new_primCompAux0(yvy7000, yvy7200, yvy196, bda) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bda)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddf), ddg)) -> new_compare6(yvy7000, yvy7200, ddf, ddg) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dee)) -> new_compare27(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dec), ded)) -> new_compare29(yvy7000, yvy7200, dec, ded) new_compare31(yvy7000, yvy7200, app(ty_[], deg)) -> new_compare0(yvy7000, yvy7200, deg) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddh), dea), deb)) -> new_compare10(yvy7000, yvy7200, ddh, dea, deb) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, def)) -> new_compare9(yvy7000, yvy7200, def) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4000, yvy3000, he, hf, hg) new_esEs7(Nothing, Just(yvy3000), gh) -> False new_esEs7(Just(yvy4000), Nothing, gh) -> False new_esEs7(Nothing, Nothing, gh) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hb), hc)) -> new_esEs6(yvy4000, yvy3000, hb, hc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hd)) -> new_esEs11(yvy4000, yvy3000, hd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hh)) -> new_esEs16(yvy4000, yvy3000, hh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ha)) -> new_esEs7(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, baa), bab)) -> new_esEs4(yvy4000, yvy3000, baa, bab) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fd) -> new_asAs(new_esEs18(yvy4000, yvy3000, fd), new_esEs16(yvy4001, yvy3001, fd)) new_esEs16(:(yvy4000, yvy4001), [], fd) -> False new_esEs16([], :(yvy3000, yvy3001), fd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs5(yvy4000, yvy3000, gb, gc, gd) new_esEs18(yvy4000, yvy3000, app(ty_[], ge)) -> new_esEs16(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ga)) -> new_esEs11(yvy4000, yvy3000, ga) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gf), gg)) -> new_esEs4(yvy4000, yvy3000, gf, gg) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ff)) -> new_esEs7(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy4000, yvy3000, fg, fh) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cba, cbb) -> new_asAs(new_esEs22(yvy4000, yvy3000, cba), new_esEs23(yvy4001, yvy3001, cbb)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbf)) -> new_esEs11(yvy4000, yvy3000, cbf) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbd), cbe)) -> new_esEs6(yvy4000, yvy3000, cbd, cbe) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbc)) -> new_esEs7(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccb)) -> new_esEs16(yvy4000, yvy3000, ccb) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cde), cdf)) -> new_esEs4(yvy4001, yvy3001, cde, cdf) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4001, yvy3001, cda, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cce)) -> new_esEs7(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccf), ccg)) -> new_esEs6(yvy4001, yvy3001, ccf, ccg) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cch)) -> new_esEs11(yvy4001, yvy3001, cch) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cdd)) -> new_esEs16(yvy4001, yvy3001, cdd) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs19(yvy4000, yvy3000, bef), new_esEs20(yvy4001, yvy3001, bef)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdg, cdh, cea) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdg), new_asAs(new_esEs25(yvy4001, yvy3001, cdh), new_esEs26(yvy4002, yvy3002, cea))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cec), ced)) -> new_esEs6(yvy4000, yvy3000, cec, ced) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ceb)) -> new_esEs7(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cfa)) -> new_esEs16(yvy4000, yvy3000, cfa) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cee)) -> new_esEs11(yvy4000, yvy3000, cee) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4001, yvy3001, cfh, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfd)) -> new_esEs7(yvy4001, yvy3001, cfd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfe), cff)) -> new_esEs6(yvy4001, yvy3001, cfe, cff) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgd), cge)) -> new_esEs4(yvy4001, yvy3001, cgd, cge) new_esEs25(yvy4001, yvy3001, app(ty_[], cgc)) -> new_esEs16(yvy4001, yvy3001, cgc) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfg)) -> new_esEs11(yvy4001, yvy3001, cfg) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cha)) -> new_esEs11(yvy4002, yvy3002, cha) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], che)) -> new_esEs16(yvy4002, yvy3002, che) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgg), cgh)) -> new_esEs6(yvy4002, yvy3002, cgg, cgh) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgf)) -> new_esEs7(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy4002, yvy3002, chf, chg) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs5(yvy4002, yvy3002, chb, chc, chd) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), cac, cad, cae) -> new_pePe(new_lt20(yvy7010, yvy7210, cac), new_asAs(new_esEs27(yvy7010, yvy7210, cac), new_pePe(new_lt19(yvy7011, yvy7211, cad), new_asAs(new_esEs28(yvy7011, yvy7211, cad), new_ltEs19(yvy7012, yvy7212, cae))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_lt12(yvy7010, yvy7210, dae, daf) new_lt20(yvy7010, yvy7210, app(ty_[], dba)) -> new_lt9(yvy7010, yvy7210, dba) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_lt15(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_lt18(yvy7010, yvy7210, dah) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_lt6(yvy7010, yvy7210, dab, dac, dad) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_lt5(yvy7010, yvy7210, chh, daa) new_esEs27(yvy7010, yvy7210, app(ty_[], dba)) -> new_esEs16(yvy7010, yvy7210, dba) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_esEs6(yvy7010, yvy7210, dae, daf) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_esEs11(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_esEs7(yvy7010, yvy7210, dah) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_esEs4(yvy7010, yvy7210, chh, daa) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(yvy7010, yvy7210, dab, dac, dad) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_lt18(yvy7011, yvy7211, dcb) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_lt15(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dcc)) -> new_lt9(yvy7011, yvy7211, dcc) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_lt12(yvy7011, yvy7211, dbg, dbh) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt6(yvy7011, yvy7211, dbd, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_lt5(yvy7011, yvy7211, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_esEs7(yvy7011, yvy7211, dcb) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dcc)) -> new_esEs16(yvy7011, yvy7211, dcc) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_esEs11(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_esEs6(yvy7011, yvy7211, dbg, dbh) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(yvy7011, yvy7211, dbd, dbe, dbf) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_esEs4(yvy7011, yvy7211, dbb, dbc) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcf), dcg), dch)) -> new_ltEs13(yvy7012, yvy7212, dcf, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcd), dce)) -> new_ltEs7(yvy7012, yvy7212, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dda), ddb)) -> new_ltEs14(yvy7012, yvy7212, dda, ddb) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, ddc)) -> new_ltEs10(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddd)) -> new_ltEs5(yvy7012, yvy7212, ddd) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], dde)) -> new_ltEs4(yvy7012, yvy7212, dde) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, beh, bfa) -> new_esEs9(new_compare29(yvy700, yvy720, beh, bfa), LT) new_compare29(yvy700, yvy720, beh, bfa) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, beh, bfa), beh, bfa) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bda) -> new_esEs9(new_compare0(yvy700, yvy720, bda), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cab) -> new_esEs9(new_compare27(yvy700, yvy720, cab), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs34(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(yvy400, yvy300, cdg, cdh, cea) new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(ty_Ratio, bef)) -> new_esEs11(yvy400, yvy300, bef) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy400, yvy300, cba, cbb) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(ty_[], fd)) -> new_esEs16(yvy400, yvy300, fd) new_esEs35(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs5(yvy401, yvy301, bdf, bdg, bdh) new_esEs35(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(ty_Maybe, bdb)) -> new_esEs7(yvy401, yvy301, bdb) new_esEs35(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(app(ty_@2, bdc), bdd)) -> new_esEs6(yvy401, yvy301, bdc, bdd) new_esEs35(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(ty_[], bea)) -> new_esEs16(yvy401, yvy301, bea) new_esEs35(yvy401, yvy301, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy401, yvy301, beb, bec) new_esEs35(yvy401, yvy301, app(ty_Ratio, bde)) -> new_esEs11(yvy401, yvy301, bde) new_esEs35(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) The set Q consists of the following terms: new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_lt20(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Just(x0), Nothing, x1) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs34(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare25(x0, x1, False, x2, x3) new_compare111(x0, x1, True) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs25(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs17(Char(x0), Char(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(Nothing, Just(x0), x1) new_esEs24(x0, x1, ty_Integer) new_esEs16(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs16([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs34(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, ty_Float) new_compare0(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt7(x0, x1) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs16([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs6(EQ, GT) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_compare0([], [], x0) new_esEs26(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs34(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_ltEs11(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare210(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare0([], :(x0, x1), x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_not(True) new_esEs35(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Double) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs5(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs32(x0, x1, ty_Char) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_compare32(x0, x1, x2, x3, x4, x5) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_lt12(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_lt9(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs32(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, x2, x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) QReductionProof (EQUIVALENT) We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN]. new_compare32(x0, x1, x2, x3, x4, x5) ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, h, ba, bb) -> new_splitGT(yvy40, yvy42, yvy43, h, ba, bb) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, True, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) new_splitGT3(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, bc), new_esEs35(yvy401, yvy301, bd)), bc, bd), GT), bc, bd, be) new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bah)) -> new_esEs11(yvy23, yvy17, bah) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bbd)) -> new_esEs16(yvy23, yvy17, bbd) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy23, yvy17, bba, bbb, bbc) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbe), bbf)) -> new_esEs4(yvy23, yvy17, bbe, bbf) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bae)) -> new_esEs7(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, baf), bag)) -> new_esEs6(yvy23, yvy17, baf, bag) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcf)) -> new_esEs16(yvy24, yvy18, bcf) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbg)) -> new_esEs7(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy24, yvy18, bcg, bch) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs5(yvy24, yvy18, bcc, bcd, bce) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbh), bca)) -> new_esEs6(yvy24, yvy18, bbh, bca) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bcb)) -> new_esEs11(yvy24, yvy18, bcb) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhh, caa) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhh, caa) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhh), new_asAs(new_esEs21(yvy700, yvy720, bhh), new_ltEs18(yvy701, yvy721, caa)), bhh, caa) new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(GT, LT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_lt12(yvy700, yvy720, beh, bfa) new_lt13(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_lt5(yvy700, yvy720, bg, bh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bda)) -> new_lt9(yvy700, yvy720, bda) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_lt6(yvy700, yvy720, cb, cc, cd) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, ca)) -> new_lt18(yvy700, yvy720, ca) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, cab)) -> new_lt15(yvy700, yvy720, cab) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, beh), bfa)) -> new_esEs6(yvy700, yvy720, beh, bfa) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, cab)) -> new_esEs11(yvy700, yvy720, cab) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(yvy700, yvy720, cb, cc, cd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bg), bh)) -> new_esEs4(yvy700, yvy720, bg, bh) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, ca)) -> new_esEs7(yvy700, yvy720, ca) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bda)) -> new_esEs16(yvy700, yvy720, bda) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bge), bfd)) -> new_ltEs7(yvy701, yvy721, bge, bfd) new_ltEs18(yvy701, yvy721, app(ty_[], bf)) -> new_ltEs4(yvy701, yvy721, bf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs13(yvy701, yvy721, cac, cad, cae) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, caf), cag)) -> new_ltEs14(yvy701, yvy721, caf, cag) new_ltEs18(yvy701, yvy721, app(ty_Ratio, beg)) -> new_ltEs10(yvy701, yvy721, beg) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cah)) -> new_ltEs5(yvy701, yvy721, cah) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bed, bee) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bed, bee) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bed, bee) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bed, bee) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfe), dff)) -> new_ltEs14(yvy7010, yvy7210, dfe, dff) new_ltEs5(Just(yvy7010), Nothing, cah) -> False new_ltEs5(Nothing, Nothing, cah) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dga)) -> new_ltEs4(yvy7010, yvy7210, dga) new_ltEs5(Nothing, Just(yvy7210), cah) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfg)) -> new_ltEs10(yvy7010, yvy7210, dfg) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs13(yvy7010, yvy7210, dfb, dfc, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, deh), dfa)) -> new_ltEs7(yvy7010, yvy7210, deh, dfa) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bfb), bfc), bfd) -> new_ltEs7(yvy7010, yvy7210, bfb, bfc) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(yvy7010, yvy7210, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Maybe, bhf)) -> new_ltEs5(yvy7010, yvy7210, bhf) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfh)) -> new_ltEs5(yvy7010, yvy7210, dfh) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bgc), bfd) -> new_ltEs5(yvy7010, yvy7210, bgc) new_ltEs7(Right(yvy7010), Left(yvy7210), bge, bfd) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfd) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfd) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfd) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(yvy7010, yvy7210, bgh, bha, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_[], bhg)) -> new_ltEs4(yvy7010, yvy7210, bhg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfd) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfd) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfd) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bgb), bfd) -> new_ltEs10(yvy7010, yvy7210, bgb) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfd) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bge, bfd) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfh), bga), bfd) -> new_ltEs14(yvy7010, yvy7210, bfh, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfd) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfe), bff), bfg), bfd) -> new_ltEs13(yvy7010, yvy7210, bfe, bff, bfg) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bgd), bfd) -> new_ltEs4(yvy7010, yvy7210, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(app(ty_@2, bhc), bhd)) -> new_ltEs14(yvy7010, yvy7210, bhc, bhd) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, app(ty_Ratio, bhe)) -> new_ltEs10(yvy7010, yvy7210, bhe) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bge, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, beg) -> new_fsEs(new_compare27(yvy701, yvy721, beg)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), caf, cag) -> new_pePe(new_lt21(yvy7010, yvy7210, caf), new_asAs(new_esEs29(yvy7010, yvy7210, caf), new_ltEs20(yvy7011, yvy7211, cag))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dhc)) -> new_lt9(yvy7010, yvy7210, dhc) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_lt12(yvy7010, yvy7210, dgg, dgh) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_lt15(yvy7010, yvy7210, dha) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_lt18(yvy7010, yvy7210, dhb) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_lt6(yvy7010, yvy7210, dgd, dge, dgf) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_lt5(yvy7010, yvy7210, dgb, dgc) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs5(yvy7010, yvy7210, dgd, dge, dgf) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dha)) -> new_esEs11(yvy7010, yvy7210, dha) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dhc)) -> new_esEs16(yvy7010, yvy7210, dhc) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dgb), dgc)) -> new_esEs4(yvy7010, yvy7210, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgg), dgh)) -> new_esEs6(yvy7010, yvy7210, dgg, dgh) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dhb)) -> new_esEs7(yvy7010, yvy7210, dhb) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dhd), dhe)) -> new_ltEs7(yvy7011, yvy7211, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_ltEs13(yvy7011, yvy7211, dhf, dhg, dhh) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, eac)) -> new_ltEs10(yvy7011, yvy7211, eac) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, eaa), eab)) -> new_ltEs14(yvy7011, yvy7211, eaa, eab) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, ead)) -> new_ltEs5(yvy7011, yvy7211, ead) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eae)) -> new_ltEs4(yvy7011, yvy7211, eae) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bf) -> new_fsEs(new_compare0(yvy701, yvy721, bf)) new_compare0([], :(yvy7200, yvy7201), bda) -> LT new_compare0([], [], bda) -> EQ new_compare0(:(yvy7000, yvy7001), [], bda) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bda) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bda), bda) new_primCompAux0(yvy7000, yvy7200, yvy196, bda) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bda)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddf), ddg)) -> new_compare6(yvy7000, yvy7200, ddf, ddg) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dee)) -> new_compare27(yvy7000, yvy7200, dee) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, dec), ded)) -> new_compare29(yvy7000, yvy7200, dec, ded) new_compare31(yvy7000, yvy7200, app(ty_[], deg)) -> new_compare0(yvy7000, yvy7200, deg) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, ddh), dea), deb)) -> new_compare10(yvy7000, yvy7200, ddh, dea, deb) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, def)) -> new_compare9(yvy7000, yvy7200, def) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, ca) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, ca), ca) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4000, yvy3000, he, hf, hg) new_esEs7(Nothing, Just(yvy3000), gh) -> False new_esEs7(Just(yvy4000), Nothing, gh) -> False new_esEs7(Nothing, Nothing, gh) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, hb), hc)) -> new_esEs6(yvy4000, yvy3000, hb, hc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hd)) -> new_esEs11(yvy4000, yvy3000, hd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hh)) -> new_esEs16(yvy4000, yvy3000, hh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, ca) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, ca), ca) new_compare24(yvy700, yvy720, True, ca) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cf), ce) -> new_esEs7(yvy4000, yvy3000, cf) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ha)) -> new_esEs7(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, baa), bab)) -> new_esEs4(yvy4000, yvy3000, baa, bab) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), ce) -> new_esEs4(yvy4000, yvy3000, dg, dh) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Maybe, eb)) -> new_esEs7(yvy4000, yvy3000, eb) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_Either, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Left(yvy3000), ea, ce) -> False new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_Ratio, ee)) -> new_esEs11(yvy4000, yvy3000, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, db), ce) -> new_esEs11(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cg), da), ce) -> new_esEs6(yvy4000, yvy3000, cg, da) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], df), ce) -> new_esEs16(yvy4000, yvy3000, df) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(app(ty_@2, ec), ed)) -> new_esEs6(yvy4000, yvy3000, ec, ed) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs5(yvy4000, yvy3000, dc, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), ea, app(ty_[], fa)) -> new_esEs16(yvy4000, yvy3000, fa) new_esEs4(Right(yvy4000), Right(yvy3000), ea, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fd) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fd) -> new_asAs(new_esEs18(yvy4000, yvy3000, fd), new_esEs16(yvy4001, yvy3001, fd)) new_esEs16(:(yvy4000, yvy4001), [], fd) -> False new_esEs16([], :(yvy3000, yvy3001), fd) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs5(yvy4000, yvy3000, gb, gc, gd) new_esEs18(yvy4000, yvy3000, app(ty_[], ge)) -> new_esEs16(yvy4000, yvy3000, ge) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ga)) -> new_esEs11(yvy4000, yvy3000, ga) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gf), gg)) -> new_esEs4(yvy4000, yvy3000, gf, gg) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ff)) -> new_esEs7(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy4000, yvy3000, fg, fh) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cba, cbb) -> new_asAs(new_esEs22(yvy4000, yvy3000, cba), new_esEs23(yvy4001, yvy3001, cbb)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbf)) -> new_esEs11(yvy4000, yvy3000, cbf) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cbd), cbe)) -> new_esEs6(yvy4000, yvy3000, cbd, cbe) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cbc)) -> new_esEs7(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], ccb)) -> new_esEs16(yvy4000, yvy3000, ccb) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cde), cdf)) -> new_esEs4(yvy4001, yvy3001, cde, cdf) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4001, yvy3001, cda, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cce)) -> new_esEs7(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccf), ccg)) -> new_esEs6(yvy4001, yvy3001, ccf, ccg) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cch)) -> new_esEs11(yvy4001, yvy3001, cch) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cdd)) -> new_esEs16(yvy4001, yvy3001, cdd) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs19(yvy4000, yvy3000, bef), new_esEs20(yvy4001, yvy3001, bef)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdg, cdh, cea) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdg), new_asAs(new_esEs25(yvy4001, yvy3001, cdh), new_esEs26(yvy4002, yvy3002, cea))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cec), ced)) -> new_esEs6(yvy4000, yvy3000, cec, ced) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ceb)) -> new_esEs7(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cfa)) -> new_esEs16(yvy4000, yvy3000, cfa) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cee)) -> new_esEs11(yvy4000, yvy3000, cee) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4001, yvy3001, cfh, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfd)) -> new_esEs7(yvy4001, yvy3001, cfd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfe), cff)) -> new_esEs6(yvy4001, yvy3001, cfe, cff) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cgd), cge)) -> new_esEs4(yvy4001, yvy3001, cgd, cge) new_esEs25(yvy4001, yvy3001, app(ty_[], cgc)) -> new_esEs16(yvy4001, yvy3001, cgc) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfg)) -> new_esEs11(yvy4001, yvy3001, cfg) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cha)) -> new_esEs11(yvy4002, yvy3002, cha) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], che)) -> new_esEs16(yvy4002, yvy3002, che) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgg), cgh)) -> new_esEs6(yvy4002, yvy3002, cgg, cgh) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgf)) -> new_esEs7(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chf), chg)) -> new_esEs4(yvy4002, yvy3002, chf, chg) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs5(yvy4002, yvy3002, chb, chc, chd) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, ca) -> GT new_compare12(yvy700, yvy720, True, ca) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, cb, cc, cd) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_compare211(yvy700, yvy720, True, cb, cc, cd) -> EQ new_compare211(yvy700, yvy720, False, cb, cc, cd) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, cb, cc, cd), cb, cc, cd) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), cac, cad, cae) -> new_pePe(new_lt20(yvy7010, yvy7210, cac), new_asAs(new_esEs27(yvy7010, yvy7210, cac), new_pePe(new_lt19(yvy7011, yvy7211, cad), new_asAs(new_esEs28(yvy7011, yvy7211, cad), new_ltEs19(yvy7012, yvy7212, cae))))) new_compare13(yvy700, yvy720, False, cb, cc, cd) -> GT new_compare13(yvy700, yvy720, True, cb, cc, cd) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_lt12(yvy7010, yvy7210, dae, daf) new_lt20(yvy7010, yvy7210, app(ty_[], dba)) -> new_lt9(yvy7010, yvy7210, dba) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_lt15(yvy7010, yvy7210, dag) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_lt18(yvy7010, yvy7210, dah) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_lt6(yvy7010, yvy7210, dab, dac, dad) new_lt20(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_lt5(yvy7010, yvy7210, chh, daa) new_esEs27(yvy7010, yvy7210, app(ty_[], dba)) -> new_esEs16(yvy7010, yvy7210, dba) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dae), daf)) -> new_esEs6(yvy7010, yvy7210, dae, daf) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dag)) -> new_esEs11(yvy7010, yvy7210, dag) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dah)) -> new_esEs7(yvy7010, yvy7210, dah) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, chh), daa)) -> new_esEs4(yvy7010, yvy7210, chh, daa) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(yvy7010, yvy7210, dab, dac, dad) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_lt18(yvy7011, yvy7211, dcb) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_lt15(yvy7011, yvy7211, dca) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dcc)) -> new_lt9(yvy7011, yvy7211, dcc) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_lt12(yvy7011, yvy7211, dbg, dbh) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt6(yvy7011, yvy7211, dbd, dbe, dbf) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_lt5(yvy7011, yvy7211, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dcb)) -> new_esEs7(yvy7011, yvy7211, dcb) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dcc)) -> new_esEs16(yvy7011, yvy7211, dcc) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dca)) -> new_esEs11(yvy7011, yvy7211, dca) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbg), dbh)) -> new_esEs6(yvy7011, yvy7211, dbg, dbh) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs5(yvy7011, yvy7211, dbd, dbe, dbf) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dbb), dbc)) -> new_esEs4(yvy7011, yvy7211, dbb, dbc) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcf), dcg), dch)) -> new_ltEs13(yvy7012, yvy7212, dcf, dcg, dch) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dcd), dce)) -> new_ltEs7(yvy7012, yvy7212, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dda), ddb)) -> new_ltEs14(yvy7012, yvy7212, dda, ddb) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, ddc)) -> new_ltEs10(yvy7012, yvy7212, ddc) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ddd)) -> new_ltEs5(yvy7012, yvy7212, ddd) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], dde)) -> new_ltEs4(yvy7012, yvy7212, dde) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bg, bh) -> new_esEs9(new_compare6(yvy700, yvy720, bg, bh), LT) new_compare6(yvy700, yvy720, bg, bh) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, False, bg, bh) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bg, bh), bg, bh) new_compare25(yvy700, yvy720, True, bg, bh) -> EQ new_compare17(yvy700, yvy720, False, bg, bh) -> GT new_compare17(yvy700, yvy720, True, bg, bh) -> LT new_lt6(yvy700, yvy720, cb, cc, cd) -> new_esEs9(new_compare10(yvy700, yvy720, cb, cc, cd), LT) new_lt12(yvy700, yvy720, beh, bfa) -> new_esEs9(new_compare29(yvy700, yvy720, beh, bfa), LT) new_compare29(yvy700, yvy720, beh, bfa) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, beh, bfa), beh, bfa) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bda) -> new_esEs9(new_compare0(yvy700, yvy720, bda), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, cab) -> new_esEs9(new_compare27(yvy700, yvy720, cab), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, ca) -> new_esEs9(new_compare9(yvy700, yvy720, ca), LT) new_esEs34(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_Either, ea), ce)) -> new_esEs4(yvy400, yvy300, ea, ce) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(yvy400, yvy300, cdg, cdh, cea) new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(ty_Ratio, bef)) -> new_esEs11(yvy400, yvy300, bef) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy400, yvy300, cba, cbb) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(ty_[], fd)) -> new_esEs16(yvy400, yvy300, fd) new_esEs35(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs5(yvy401, yvy301, bdf, bdg, bdh) new_esEs35(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(ty_Maybe, bdb)) -> new_esEs7(yvy401, yvy301, bdb) new_esEs35(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(app(ty_@2, bdc), bdd)) -> new_esEs6(yvy401, yvy301, bdc, bdd) new_esEs35(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs35(yvy401, yvy301, app(ty_[], bea)) -> new_esEs16(yvy401, yvy301, bea) new_esEs35(yvy401, yvy301, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy401, yvy301, beb, bec) new_esEs35(yvy401, yvy301, app(ty_Ratio, bde)) -> new_esEs11(yvy401, yvy301, bde) new_esEs35(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_esEs35(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) The set Q consists of the following terms: new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare9(x0, x1, x2) new_lt20(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs5(Just(x0), Nothing, x1) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_compare17(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs34(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare25(x0, x1, False, x2, x3) new_compare111(x0, x1, True) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs27(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_lt19(x0, x1, ty_Bool) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs25(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs17(Char(x0), Char(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs7(Nothing, Just(x0), x1) new_esEs24(x0, x1, ty_Integer) new_esEs16(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs16([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs34(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(x0, x1, True, x2, x3, x4) new_sr(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_compare17(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, ty_Float) new_compare0(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt7(x0, x1) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2) new_compare6(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs16([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare111(x0, x1, False) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs6(EQ, GT) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, EQ) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(x0, x1, x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Bool) new_compare0([], [], x0) new_esEs26(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_esEs34(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs9(EQ, EQ) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare211(x0, x1, False, x2, x3, x4) new_compare13(x0, x1, False, x2, x3, x4) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_compare24(x0, x1, True, x2) new_esEs22(x0, x1, ty_Char) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs6(EQ, EQ) new_compare12(x0, x1, True, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_ltEs11(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare210(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare0([], :(x0, x1), x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_not(True) new_esEs35(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Double) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_compare13(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare11(x0, x1, True) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs18(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs5(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs32(x0, x1, ty_Char) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare12(x0, x1, False, x2) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1, x2) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_lt12(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Nothing, Nothing, x0) new_primEqNat0(Zero, Zero) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs19(x0, x1, ty_Float) new_lt9(x0, x1, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs32(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, x2, x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) 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(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), bc, bd, be) -> new_splitGT2(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, bc), new_esEs35(yvy401, yvy301, bd)), bc, bd), GT), bc, bd, be) 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, 9 >= 12 *new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, h, ba, bb) -> new_splitGT(yvy40, yvy42, yvy43, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 2, 8 >= 3, 10 >= 4, 11 >= 5, 12 >= 6 *new_splitGT(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 4 >= 7, 5 >= 8, 6 >= 9 *new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, h, ba, bb) -> new_splitGT1(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare210(@2(yvy42, yvy43), @2(yvy36, yvy37), new_asAs(new_esEs32(yvy42, yvy36, h), new_esEs33(yvy43, yvy37, ba)), h, ba), LT), h, ba, bb) 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, 12 >= 12 *new_splitGT2(yvy36, yvy37, yvy38, yvy39, yvy40, Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, True, h, ba, bb) -> new_splitGT3(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), h, ba, bb) The graph contains the following edges 6 > 1, 6 > 2, 6 > 3, 6 > 4, 6 > 5, 10 >= 7, 11 >= 8, 12 >= 9 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(yvy401100), Succ(yvy301000)) -> new_primMulNat(yvy401100, Succ(yvy301000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) 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(yvy401100), Succ(yvy301000)) -> new_primMulNat(yvy401100, Succ(yvy301000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (49) YES ---------------------------------------- (50) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt2(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt3(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primCmpInt3(Pos(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpInt0(Neg(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt3(Neg(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs9(LT, LT) -> True new_primCmpInt2(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_primCmpInt0(Pos(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs9(GT, GT) -> True new_esEs9(EQ, EQ) -> True new_primCmpInt3(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpInt3(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primCmpInt2(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) The set Q consists of the following terms: new_primCmpInt3(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat1(Succ(x0), Zero) new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt3(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt0(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_primCmpInt2(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sr(x0, x1) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt2(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primPlusNat1(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt2(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Succ(x0)) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt0(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Zero, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primPlusNat0(Succ(x0), x1) new_primCmpInt2(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt2(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Zero) new_primCmpInt0(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) 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, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt3(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_4 + x_5 POL(EQ) = 1 POL(False) = 0 POL(GT) = 1 POL(LT) = 0 POL(Neg(x_1)) = 0 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 0 POL(Zero) = 0 POL(new_esEs9(x_1, x_2)) = 0 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + x_5 + x_6 + x_7 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_16)) = x_10 + x_14 + x_15 + x_16 + 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_15, x_16)) = x_10 + x_14 + x_15 + x_16 + 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, x_16)) = 1 + x_10 + x_14 + x_15 + x_16 + 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_15, x_16)) = 1 + x_10 + x_14 + x_15 + x_16 + 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_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + 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_12, x_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_primCmpInt(x_1, x_2)) = 0 POL(new_primCmpInt0(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_11 + x_12 + x_13 + x_14 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt1(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_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_primCmpInt2(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_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_primCmpInt3(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_11 + x_12 + x_13 + x_14 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpNat0(x_1, x_2)) = 0 POL(new_primMulInt(x_1, x_2)) = 1 POL(new_primMulNat0(x_1, x_2)) = 0 POL(new_primPlusNat0(x_1, x_2)) = 0 POL(new_primPlusNat1(x_1, x_2)) = 0 POL(new_sIZE_RATIO) = 0 POL(new_sizeFM(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8)) = x_1 + x_2 + x_4 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 ---------------------------------------- (52) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt2(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primCmpInt3(Pos(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpInt0(Neg(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt3(Neg(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs9(LT, LT) -> True new_primCmpInt2(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_primCmpInt0(Pos(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs9(GT, GT) -> True new_esEs9(EQ, EQ) -> True new_primCmpInt3(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpInt3(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primCmpInt2(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) The set Q consists of the following terms: new_primCmpInt3(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat1(Succ(x0), Zero) new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt3(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt0(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_primCmpInt2(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sr(x0, x1) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt2(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primPlusNat1(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt2(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Succ(x0)) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt0(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Zero, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primPlusNat0(Succ(x0), x1) new_primCmpInt2(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt2(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Zero) new_primCmpInt0(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (53) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (54) Complex Obligation (AND) ---------------------------------------- (55) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primCmpInt3(Pos(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpInt0(Neg(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt3(Neg(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs9(LT, LT) -> True new_primCmpInt2(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_primCmpInt0(Pos(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs9(GT, GT) -> True new_esEs9(EQ, EQ) -> True new_primCmpInt3(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpInt3(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primCmpInt2(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) The set Q consists of the following terms: new_primCmpInt3(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat1(Succ(x0), Zero) new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt3(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt0(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_primCmpInt2(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sr(x0, x1) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt2(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primPlusNat1(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt2(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Succ(x0)) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt0(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Zero, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primPlusNat0(Succ(x0), x1) new_primCmpInt2(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt2(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Zero) new_primCmpInt0(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (56) 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_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6, 16 >= 7 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 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, 7 >= 16 ---------------------------------------- (57) YES ---------------------------------------- (58) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt2(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primMulNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primCmpInt3(Pos(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpInt0(Neg(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt3(Neg(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs9(LT, LT) -> True new_primCmpInt2(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_primCmpInt0(Pos(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs9(GT, GT) -> True new_esEs9(EQ, EQ) -> True new_primCmpInt3(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpInt3(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primCmpInt2(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) The set Q consists of the following terms: new_primCmpInt3(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sIZE_RATIO new_primPlusNat1(Succ(x0), Zero) new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpInt3(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt0(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_primCmpInt2(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sr(x0, x1) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt2(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primPlusNat1(Zero, Zero) new_sizeFM(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt2(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Succ(x0)) new_primMulInt(Neg(x0), Neg(x1)) new_primCmpInt0(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Zero, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primPlusNat0(Succ(x0), x1) new_primCmpInt2(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt2(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat0(Zero, Zero) new_primCmpInt0(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (59) 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_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6, 16 >= 7 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt2(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 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, 7 >= 16 ---------------------------------------- (60) YES ---------------------------------------- (61) 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, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, bch), bda), bdb) -> new_ltEs7(yvy7010, yvy7210, bch, bda) new_ltEs7(Right(yvy7010), Left(yvy7210), bec, bdb) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bdb) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, be) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bec), bdb)) -> new_ltEs7(yvy701, yvy721, bec, bdb) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dhe)) -> new_lt18(yvy7011, yvy7211, dhe) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_mkBalBranch6Size_l(yvy82, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM0(yvy82, h, ba, bb) new_esEs35(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_esEs4(Left(yvy4000), Right(yvy3000), da, be) -> False new_esEs4(Right(yvy4000), Left(yvy3000), da, be) -> False new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], dgd)) -> new_esEs16(yvy7010, yvy7210, dgd) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs5(yvy7010, yvy7210, ceb, cec, ced) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bdb) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, cab), cac)) -> new_esEs6(yvy700, yvy720, cab, cac) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gd)) -> new_esEs7(yvy4000, yvy3000, gd) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), da, app(ty_Ratio, de)) -> new_esEs11(yvy4000, yvy3000, de) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, daa), dab)) -> new_esEs4(yvy4000, yvy3000, daa, dab) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, cdf)) -> new_ltEs5(yvy7010, yvy7210, cdf) new_esEs34(yvy400, yvy300, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy300, gc) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dhe)) -> new_esEs7(yvy7011, yvy7211, dhe) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy401, yvy301, bgh, bha, bhb) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ca), be) -> new_esEs11(yvy4000, yvy3000, ca) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bhf, bhg) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cad) -> new_esEs9(new_compare27(yvy700, yvy720, cad), LT) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_compare29(yvy700, yvy720, cab, cac) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, cab, cac), cab, cac) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bdb) -> new_ltEs8(yvy7010, yvy7210) new_esEs35(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt13(yvy700, yvy720, app(app(ty_@2, cab), cac)) -> new_lt12(yvy700, yvy720, cab, cac) new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_esEs37(yvy401, yvy301, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy401, yvy301, bhd, bhe) new_splitLT10(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, hh, baa, bcg) -> yvy21 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, ded)) -> new_esEs11(yvy4002, yvy3002, ded) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bhh), caa)) -> new_lt5(yvy700, yvy720, bhh, caa) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_primCmpInt0(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, bd) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bd), bd) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_primCompAux00(yvy211, LT) -> LT new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_compare17(yvy700, yvy720, False, bhh, caa) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(yvy4000, yvy3000, gh, ha, hb) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs5(yvy4000, yvy3000, fa, fb, fc) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, be) -> new_esEs10(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, eaa), eab), eac)) -> new_ltEs13(yvy7012, yvy7212, eaa, eab, eac) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, cfb), cfc)) -> new_ltEs7(yvy7011, yvy7211, cfb, cfc) new_splitLT30(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), h, ba, bb) -> new_splitLT20(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs36(yvy400, yvy300, h), new_esEs37(yvy401, yvy301, ba)), h, ba), LT), h, ba, bb) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba, bb) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_mkBalBranch6MkBalBranch11(yvy820, yvy821, yvy822, yvy823, Branch(yvy8240, yvy8241, yvy8242, yvy8243, yvy8244), yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy8240, yvy8241, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy820, yvy821, yvy823, yvy8243, app(app(ty_@2, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy8244, yvy54, app(app(ty_@2, h), ba), bb), app(app(ty_@2, h), ba), bb) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_primPlusInt0(yvy8220, Neg(yvy2170)) -> new_primMinusNat0(yvy8220, yvy2170) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy401, yvy501, bgh, bha, bhb) new_esEs21(yvy700, yvy720, app(ty_Ratio, cad)) -> new_esEs11(yvy700, yvy720, cad) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs13(yvy7010, yvy7210, bef, beg, beh) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_mkBalBranch6MkBalBranch11(yvy820, yvy821, yvy822, yvy823, yvy824, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy820, yvy821, yvy823, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy824, yvy54, app(app(ty_@2, h), ba), bb), app(app(ty_@2, h), ba), bb) new_primCompAux00(yvy211, GT) -> GT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dfh), dga)) -> new_lt12(yvy7010, yvy7210, dfh, dga) new_addToFM_C10(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> Branch(@2(yvy400, yvy401), yvy41, yvy52, yvy53, yvy54) new_primMinusNat0(Succ(yvy82200), Zero) -> Pos(Succ(yvy82200)) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs5(yvy4001, yvy3001, ddc, ddd, dde) new_lt20(yvy7010, yvy7210, app(ty_[], dgd)) -> new_lt9(yvy7010, yvy7210, dgd) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bg), bh), be) -> new_esEs6(yvy4000, yvy3000, bg, bh) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, cdc), cdd)) -> new_ltEs14(yvy7010, yvy7210, cdc, cdd) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bcf)) -> new_lt9(yvy700, yvy720, bcf) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs13(yvy7011, yvy7211, cfd, cfe, cff) new_esEs36(yvy400, yvy300, app(app(ty_Either, da), be)) -> new_esEs4(yvy400, yvy300, da, be) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_splitLT0(Branch(yvy210, yvy211, yvy212, yvy213, yvy214), yvy23, yvy24, hh, baa, bcg) -> new_splitLT30(yvy210, yvy211, yvy212, yvy213, yvy214, @2(yvy23, yvy24), hh, baa, bcg) new_esEs37(yvy401, yvy301, app(ty_[], bhc)) -> new_esEs16(yvy401, yvy301, bhc) new_lt12(yvy700, yvy720, cab, cac) -> new_esEs9(new_compare29(yvy700, yvy720, cab, cac), LT) new_primPlusInt0(yvy8220, Pos(yvy2170)) -> Pos(new_primPlusNat1(yvy8220, yvy2170)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs35(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), cae, caf, cag) -> new_pePe(new_lt20(yvy7010, yvy7210, cae), new_asAs(new_esEs27(yvy7010, yvy7210, cae), new_pePe(new_lt19(yvy7011, yvy7211, caf), new_asAs(new_esEs28(yvy7011, yvy7211, caf), new_ltEs19(yvy7012, yvy7212, cag))))) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs5(yvy400, yvy500, bga, bgb, bgc) new_esEs37(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs5(yvy4000, yvy3000, dca, dcb, dcc) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_sizeFM0(EmptyFM, h, ba, bb) -> Pos(Zero) new_splitLT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, hh, baa, bcg) -> new_splitLT0(yvy21, yvy23, yvy24, hh, baa, bcg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_compare25(yvy700, yvy720, False, bhh, caa) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bhh, caa), bhh, caa) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, chd)) -> new_esEs11(yvy4000, yvy3000, chd) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bcf) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bcf)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba, bb) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba, bb) new_primCmpInt2(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt6(yvy700, yvy720, fh, ga, gb) -> new_esEs9(new_compare10(yvy700, yvy720, fh, ga, gb), LT) new_compare31(yvy7000, yvy7200, app(app(ty_Either, cbd), cbe)) -> new_compare6(yvy7000, yvy7200, cbd, cbe) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_splitGT0(EmptyFM, yvy42, yvy43, cgd, cge, cgf) -> new_emptyFM(cgd, cge, cgf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(yvy700, yvy720, fh, ga, gb) new_esEs28(yvy7011, yvy7211, app(ty_[], dhf)) -> new_esEs16(yvy7011, yvy7211, dhf) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs37(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs35(yvy401, yvy301, app(ty_Maybe, bgd)) -> new_esEs7(yvy401, yvy301, bgd) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dhg), dhh)) -> new_ltEs7(yvy7012, yvy7212, dhg, dhh) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), gc) -> False new_esEs7(Just(yvy4000), Nothing, gc) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, chb), chc)) -> new_esEs6(yvy4000, yvy3000, chb, chc) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_primPlusInt1(yvy8220, Neg(yvy2180)) -> Neg(new_primPlusNat1(yvy8220, yvy2180)) new_compare25(yvy700, yvy720, True, bhh, caa) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_primCmpInt2(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(ty_[], bfe)) -> new_ltEs4(yvy7010, yvy7210, bfe) new_primMinusNat0(Succ(yvy82200), Succ(yvy21700)) -> new_primMinusNat0(yvy82200, yvy21700) new_esEs21(yvy700, yvy720, app(app(ty_Either, bhh), caa)) -> new_esEs4(yvy700, yvy720, bhh, caa) new_esEs35(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_mkBalBranch6MkBalBranch01(yvy82, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy82, yvy543, app(app(ty_@2, h), ba), bb), yvy544, app(app(ty_@2, h), ba), bb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_mkBalBranch6MkBalBranch5(yvy82, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(yvy82, yvy50, yvy51, yvy54, new_gt0(new_mkBalBranch6Size_r(yvy82, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy82, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, ceg)) -> new_esEs11(yvy7010, yvy7210, ceg) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_splitGT10(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, cgd, cge, cgf) -> new_mkVBalBranch0(@2(yvy36, yvy37), yvy38, new_splitGT0(yvy40, yvy42, yvy43, cgd, cge, cgf), yvy41, cgd, cge, cgf) new_compare211(yvy700, yvy720, True, fh, ga, gb) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, gc) -> True new_compare24(yvy700, yvy720, True, bd) -> EQ new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, dbf), dbg)) -> new_esEs6(yvy4000, yvy3000, dbf, dbg) new_splitGT10(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, cgd, cge, cgf) -> yvy41 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, cga)) -> new_ltEs10(yvy7011, yvy7211, cga) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bdb) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, cgg, cgh) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, cgg, cgh) new_esEs31(yvy401, yvy501, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy401, yvy501, bhd, bhe) new_primCmpInt0(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_esEs26(yvy4002, yvy3002, app(ty_[], deh)) -> new_esEs16(yvy4002, yvy3002, deh) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bff, bfg) -> new_asAs(new_esEs22(yvy4000, yvy3000, bff), new_esEs23(yvy4001, yvy3001, bfg)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, ead), eae)) -> new_ltEs14(yvy7012, yvy7212, ead, eae) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs13(yvy701, yvy721, cae, caf, cag) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_emptyFM(h, ba, bb) -> EmptyFM new_ltEs5(Just(yvy7010), Nothing, cbc) -> False new_esEs37(yvy401, yvy301, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy401, yvy301, bge, bgf) new_ltEs5(Nothing, Nothing, cbc) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, dcg)) -> new_esEs7(yvy4001, yvy3001, dcg) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(app(ty_Either, bed), bee)) -> new_ltEs7(yvy7010, yvy7210, bed, bee) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_lt18(yvy700, yvy720, bd) -> new_esEs9(new_compare9(yvy700, yvy720, bd), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, dbc), dbd)) -> new_esEs4(yvy4001, yvy3001, dbc, dbd) new_esEs18(yvy4000, yvy3000, app(ty_[], fd)) -> new_esEs16(yvy4000, yvy3000, fd) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, eaf)) -> new_ltEs10(yvy7012, yvy7212, eaf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], cdg)) -> new_ltEs4(yvy7010, yvy7210, cdg) new_esEs8(False, False) -> True new_splitLT10(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, True, hh, baa, bcg) -> new_mkVBalBranch0(@2(yvy17, yvy18), yvy19, yvy21, new_splitLT0(yvy22, yvy23, yvy24, hh, baa, bcg), hh, baa, bcg) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, deb), dec)) -> new_esEs6(yvy4002, yvy3002, deb, dec) new_compare12(yvy700, yvy720, False, bd) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) new_esEs34(yvy400, yvy300, app(app(ty_Either, da), be)) -> new_esEs4(yvy400, yvy300, da, be) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bdb) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_compare31(yvy7000, yvy7200, app(ty_Ratio, ccc)) -> new_compare27(yvy7000, yvy7200, ccc) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy4001, yvy3001, dag, dah, dba) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cha)) -> new_esEs7(yvy4000, yvy3000, cha) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs30(yvy400, yvy500, app(ty_Ratio, bfh)) -> new_esEs11(yvy400, yvy500, bfh) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, dac)) -> new_esEs7(yvy4001, yvy3001, dac) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_mkBalBranch6MkBalBranch3(yvy82, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy82, yvy54, app(app(ty_@2, h), ba), bb) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bcf) -> new_esEs9(new_compare0(yvy700, yvy720, bcf), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bdb) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_compare17(yvy700, yvy720, True, bhh, caa) -> LT new_esEs37(yvy401, yvy301, ty_Integer) -> new_esEs12(yvy401, yvy301) new_primCmpInt3(Pos(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_esEs35(yvy401, yvy301, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy401, yvy301, bge, bgf) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, be) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_mkBalBranch6MkBalBranch11(yvy820, yvy821, yvy822, yvy823, EmptyFM, yvy50, yvy51, yvy54, False, h, ba, bb) -> error([]) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_primCmpInt3(Neg(Succ(yvy14300)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy14300)), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_compare13(yvy700, yvy720, False, fh, ga, gb) -> GT new_addToFM_C10(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_mkBalBranch(@2(yvy500, yvy501), yvy51, yvy53, new_addToFM_C0(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb), h, ba, bb) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ge), gf)) -> new_esEs6(yvy4000, yvy3000, ge, gf) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs5(yvy400, yvy300, bga, bgb, bgc) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bdh), bdb) -> new_ltEs10(yvy7010, yvy7210, bdh) new_esEs31(yvy401, yvy501, app(ty_Ratio, bgg)) -> new_esEs11(yvy401, yvy501, bgg) new_esEs4(Right(yvy4000), Right(yvy3000), da, app(app(app(ty_@3, df), dg), dh)) -> new_esEs5(yvy4000, yvy3000, df, dg, dh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, cfg), cfh)) -> new_ltEs14(yvy7011, yvy7211, cfg, cfh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_addToFM_C0(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_mkBalBranch6Size_r(yvy82, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM0(yvy54, h, ba, bb) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, dbe)) -> new_esEs7(yvy4000, yvy3000, dbe) new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs13(yvy400, yvy300) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], ce), be) -> new_esEs16(yvy4000, yvy3000, ce) new_esEs37(yvy401, yvy301, ty_@0) -> new_esEs10(yvy401, yvy301) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, eh)) -> new_esEs11(yvy4000, yvy3000, eh) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], ed) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, fh, ga, gb) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, fh, ga, gb), fh, ga, gb) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusInt(EmptyFM, yvy50, yvy51, yvy54, h, ba, bb) -> new_primPlusInt0(Zero, new_mkBalBranch6Size_r(EmptyFM, yvy50, yvy51, yvy54, h, ba, bb)) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_mkBalBranch(@2(yvy500, yvy501), yvy51, new_addToFM_C0(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb), yvy54, h, ba, bb) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, dch), dda)) -> new_esEs6(yvy4001, yvy3001, dch, dda) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bdb) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, cca), ccb)) -> new_compare29(yvy7000, yvy7200, cca, ccb) new_esEs36(yvy400, yvy300, app(app(ty_@2, bff), bfg)) -> new_esEs6(yvy400, yvy300, bff, bfg) new_esEs35(yvy401, yvy301, ty_Bool) -> new_esEs8(yvy401, yvy301) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(ty_Maybe, bfd)) -> new_ltEs5(yvy7010, yvy7210, bfd) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_ltEs5(Nothing, Just(yvy7210), cbc) -> True new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cah, cba) -> new_pePe(new_lt21(yvy7010, yvy7210, cah), new_asAs(new_esEs29(yvy7010, yvy7210, cah), new_ltEs20(yvy7011, yvy7211, cba))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs18(yvy4000, yvy3000, ed), new_esEs16(yvy4001, yvy3001, ed)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bec, bdb) -> True new_esEs37(yvy401, yvy301, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy401, yvy301, bgh, bha, bhb) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dhd)) -> new_esEs11(yvy7011, yvy7211, dhd) new_esEs35(yvy401, yvy301, app(ty_[], bhc)) -> new_esEs16(yvy401, yvy301, bhc) new_primPlusInt2(Pos(yvy2650), yvy263, yvy264, yvy261, hf, hg) -> new_primPlusInt0(yvy2650, new_sizeFM1(yvy264, hf, hg)) new_mkBalBranch6MkBalBranch01(yvy82, yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba, bb) -> error([]) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, dad), dae)) -> new_esEs6(yvy4001, yvy3001, dad, dae) new_compare28(yvy700, yvy720, True) -> EQ new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], cce)) -> new_compare0(yvy7000, yvy7200, cce) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, be) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy4000, yvy3000, che, chf, chg) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cah), cba)) -> new_ltEs14(yvy701, yvy721, cah, cba) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_addToFM_C20(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_gt(yvy400, yvy401, yvy500, yvy501, h, ba), h, ba, bb) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, be) -> new_esEs8(yvy4000, yvy3000) new_primCmpInt2(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bdf), bdg), bdb) -> new_ltEs14(yvy7010, yvy7210, bdf, bdg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bf), be) -> new_esEs7(yvy4000, yvy3000, bf) new_esEs34(yvy400, yvy300, app(ty_Ratio, bfh)) -> new_esEs11(yvy400, yvy300, bfh) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, gg)) -> new_esEs11(yvy4000, yvy3000, gg) new_primPlusInt(Branch(yvy820, yvy821, Neg(yvy8220), yvy823, yvy824), yvy50, yvy51, yvy54, h, ba, bb) -> new_primPlusInt1(yvy8220, new_sizeFM0(yvy54, h, ba, bb)) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_splitGT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, True, cgd, cge, cgf) -> new_splitGT0(yvy41, yvy42, yvy43, cgd, cge, cgf) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs10(yvy400, yvy300) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, eag)) -> new_ltEs5(yvy7012, yvy7212, eag) new_compare6(yvy700, yvy720, bhh, caa) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bhh, caa), bhh, caa) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhf, bhg) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhf), new_asAs(new_esEs21(yvy700, yvy720, bhf), new_ltEs18(yvy701, yvy721, bhg)), bhf, bhg) new_compare0([], :(yvy7200, yvy7201), bcf) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, be) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dhd)) -> new_lt15(yvy7011, yvy7211, dhd) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs8(yvy400, yvy300) new_splitGT30(@2(yvy300, yvy301), yvy31, yvy32, yvy33, yvy34, @2(yvy400, yvy401), h, ba, bb) -> new_splitGT20(yvy300, yvy301, yvy31, yvy32, yvy33, yvy34, yvy400, yvy401, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy300, yvy301), new_asAs(new_esEs34(yvy400, yvy300, h), new_esEs35(yvy401, yvy301, ba)), h, ba), GT), h, ba, bb) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_esEs37(yvy401, yvy301, ty_Ordering) -> new_esEs9(yvy401, yvy301) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba, bb) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cf), cg), be) -> new_esEs4(yvy4000, yvy3000, cf, cg) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, cgb)) -> new_ltEs5(yvy7011, yvy7211, cgb) new_esEs4(Right(yvy4000), Right(yvy3000), da, app(ty_Maybe, db)) -> new_esEs7(yvy4000, yvy3000, db) new_esEs4(Right(yvy4000), Right(yvy3000), da, app(app(ty_@2, dc), dd)) -> new_esEs6(yvy4000, yvy3000, dc, dd) new_esEs36(yvy400, yvy300, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy300, gc) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt21(yvy7010, yvy7210, app(ty_[], cfa)) -> new_lt9(yvy7010, yvy7210, cfa) new_lt13(yvy700, yvy720, app(app(app(ty_@3, fh), ga), gb)) -> new_lt6(yvy700, yvy720, fh, ga, gb) new_esEs29(yvy7010, yvy7210, app(ty_[], cfa)) -> new_esEs16(yvy7010, yvy7210, cfa) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bdb) -> new_ltEs11(yvy7010, yvy7210) new_gt0(yvy185, yvy184) -> new_esEs9(new_compare16(yvy185, yvy184), GT) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_mkBalBranch(yvy50, yvy51, yvy82, yvy54, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(yvy82, yvy50, yvy51, yvy54, new_esEs9(new_compare16(new_primPlusInt(yvy82, yvy50, yvy51, yvy54, h, ba, bb), Pos(Succ(Succ(Zero)))), LT), h, ba, bb) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bcf) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bfh) -> new_asAs(new_esEs19(yvy4000, yvy3000, bfh), new_esEs20(yvy4001, yvy3001, bfh)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_gt(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa), GT) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hd), he)) -> new_esEs4(yvy4000, yvy3000, hd, he) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dfh), dga)) -> new_esEs6(yvy7010, yvy7210, dfh, dga) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, daf)) -> new_esEs11(yvy4001, yvy3001, daf) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_mkBranch(yvy260, yvy261, yvy262, yvy263, yvy264, hf, hg) -> Branch(yvy261, yvy262, new_primPlusInt2(new_primPlusInt0(Succ(Zero), new_sizeFM1(yvy263, hf, hg)), yvy263, yvy264, yvy261, hf, hg), yvy263, yvy264) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs30(yvy400, yvy500, app(ty_[], ed)) -> new_esEs16(yvy400, yvy500, ed) new_esEs24(yvy4000, yvy3000, app(ty_[], dcd)) -> new_esEs16(yvy4000, yvy3000, dcd) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_compare111(yvy700, yvy720, False) -> GT new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, bd)) -> new_lt18(yvy700, yvy720, bd) new_esEs31(yvy401, yvy501, app(ty_Maybe, bgd)) -> new_esEs7(yvy401, yvy501, bgd) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_lt21(yvy7010, yvy7210, app(app(ty_@2, cee), cef)) -> new_lt12(yvy7010, yvy7210, cee, cef) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_primCmpInt0(Neg(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, bd) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bd), bd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, ddg), ddh)) -> new_esEs4(yvy4001, yvy3001, ddg, ddh) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dgb)) -> new_lt15(yvy7010, yvy7210, dgb) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_primCmpInt0(Pos(Succ(yvy13900)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Succ(yvy13900)), new_sizeFM(yvy60, yvy61, Pos(yvy620), yvy63, yvy64, h, ba, bb)) new_esEs37(yvy401, yvy301, ty_Int) -> new_esEs13(yvy401, yvy301) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), da, app(app(ty_Either, eb), ec)) -> new_esEs4(yvy4000, yvy3000, eb, ec) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dhb), dhc)) -> new_esEs6(yvy7011, yvy7211, dhb, dhc) new_esEs34(yvy400, yvy300, app(app(ty_@2, bff), bfg)) -> new_esEs6(yvy400, yvy300, bff, bfg) new_ltEs18(yvy701, yvy721, app(ty_Ratio, cbb)) -> new_ltEs10(yvy701, yvy721, cbb) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bdc), bdd), bde), bdb) -> new_ltEs13(yvy7010, yvy7210, bdc, bdd, bde) new_esEs37(yvy401, yvy301, app(ty_Maybe, bgd)) -> new_esEs7(yvy401, yvy301, bgd) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_primPlusInt2(Neg(yvy2650), yvy263, yvy264, yvy261, hf, hg) -> new_primPlusInt1(yvy2650, new_sizeFM1(yvy264, hf, hg)) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs35(yvy401, yvy301, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy401, yvy301, bhd, bhe) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, cdh), cea)) -> new_esEs4(yvy7010, yvy7210, cdh, cea) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare10(yvy7000, yvy7200, cbf, cbg, cbh) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cbc)) -> new_ltEs5(yvy701, yvy721, cbc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, cde)) -> new_ltEs10(yvy7010, yvy7210, cde) new_esEs21(yvy700, yvy720, app(ty_Maybe, bd)) -> new_esEs7(yvy700, yvy720, bd) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dhf)) -> new_lt9(yvy7011, yvy7211, dhf) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, be) -> new_esEs12(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs5(yvy400, yvy300, bga, bgb, bgc) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_lt21(yvy7010, yvy7210, app(ty_Ratio, ceg)) -> new_lt15(yvy7010, yvy7210, ceg) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dgb)) -> new_esEs11(yvy7010, yvy7210, dgb) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy401, yvy501, app(ty_[], bhc)) -> new_esEs16(yvy401, yvy501, bhc) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs30(yvy400, yvy500, app(app(ty_Either, da), be)) -> new_esEs4(yvy400, yvy500, da, be) new_esEs25(yvy4001, yvy3001, app(ty_[], ddf)) -> new_esEs16(yvy4001, yvy3001, ddf) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, fh, ga, gb) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, dce), dcf)) -> new_esEs4(yvy4000, yvy3000, dce, dcf) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dea)) -> new_esEs7(yvy4002, yvy3002, dea) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs4(yvy4000, yvy3000, ff, fg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_esEs35(yvy401, yvy301, app(ty_Ratio, bgg)) -> new_esEs11(yvy401, yvy301, bgg) new_mkBalBranch6MkBalBranch3(Branch(yvy820, yvy821, yvy822, yvy823, yvy824), yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(yvy820, yvy821, yvy822, yvy823, yvy824, yvy50, yvy51, yvy54, new_lt16(new_sizeFM0(yvy824, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy823, h, ba, bb))), h, ba, bb) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_sizeFM1(EmptyFM, hf, hg) -> Pos(Zero) new_compare12(yvy700, yvy720, True, bd) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dgc)) -> new_esEs7(yvy7010, yvy7210, dgc) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, be) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_mkBalBranch6MkBalBranch4(yvy82, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(yvy82, yvy50, yvy51, yvy54, new_gt0(new_mkBalBranch6Size_l(yvy82, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy82, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dhb), dhc)) -> new_lt12(yvy7011, yvy7211, dhb, dhc) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt6(yvy7011, yvy7211, dgg, dgh, dha) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs12(yvy400, yvy300) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], beb), bdb) -> new_ltEs4(yvy7010, yvy7210, beb) new_esEs36(yvy400, yvy300, app(ty_[], ed)) -> new_esEs16(yvy400, yvy300, ed) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(ty_@2, bff), bfg)) -> new_esEs6(yvy400, yvy500, bff, bfg) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dge), dgf)) -> new_lt5(yvy7011, yvy7211, dge, dgf) new_compare0(:(yvy7000, yvy7001), [], bcf) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs37(yvy401, yvy301, app(ty_Ratio, bgg)) -> new_esEs11(yvy401, yvy301, bgg) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs5(yvy7011, yvy7211, dgg, dgh, dha) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hc)) -> new_esEs16(yvy4000, yvy3000, hc) new_ltEs10(yvy701, yvy721, cbb) -> new_fsEs(new_compare27(yvy701, yvy721, cbb)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs37(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, cgg, cgh) -> GT new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bga, bgb, bgc) -> new_asAs(new_esEs24(yvy4000, yvy3000, bga), new_asAs(new_esEs25(yvy4001, yvy3001, bgb), new_esEs26(yvy4002, yvy3002, bgc))) new_esEs37(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba, bb) -> new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, cee), cef)) -> new_esEs6(yvy7010, yvy7210, cee, cef) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bcf) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bcf), bcf) new_primPlusNat1(Zero, Zero) -> Zero new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_splitGT20(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, False, cgd, cge, cgf) -> new_splitGT10(yvy36, yvy37, yvy38, yvy39, yvy40, yvy41, yvy42, yvy43, new_esEs9(new_compare32(yvy42, yvy43, yvy36, yvy37, cgd, cge), LT), cgd, cge, cgf) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dge), dgf)) -> new_esEs4(yvy7011, yvy7211, dge, dgf) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(app(ty_@2, bfa), bfb)) -> new_ltEs14(yvy7010, yvy7210, bfa, bfb) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs21(yvy700, yvy720, app(ty_[], bcf)) -> new_esEs16(yvy700, yvy720, bcf) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, ceh)) -> new_lt18(yvy7010, yvy7210, ceh) new_esEs30(yvy400, yvy500, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy500, gc) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dfa), dfb)) -> new_esEs4(yvy4002, yvy3002, dfa, dfb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, app(ty_Ratio, bfc)) -> new_ltEs10(yvy7010, yvy7210, bfc) new_esEs35(yvy401, yvy301, ty_Char) -> new_esEs17(yvy401, yvy301) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_primPlusInt(Branch(yvy820, yvy821, Pos(yvy8220), yvy823, yvy824), yvy50, yvy51, yvy54, h, ba, bb) -> new_primPlusInt0(yvy8220, new_sizeFM0(yvy54, h, ba, bb)) new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_mkBalBranch6MkBalBranch4(yvy82, yvy50, yvy51, EmptyFM, True, h, ba, bb) -> error([]) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, ceb), cec), ced)) -> new_lt6(yvy7010, yvy7210, ceb, cec, ced) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dee), def), deg)) -> new_esEs5(yvy4002, yvy3002, dee, def, deg) new_esEs35(yvy401, yvy301, ty_Double) -> new_esEs14(yvy401, yvy301) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, cgg, cgh) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, cgg, cgh) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_mkBalBranch6MkBalBranch3(EmptyFM, yvy50, yvy51, yvy54, True, h, ba, bb) -> error([]) new_compare110(yvy172, yvy173, yvy174, yvy175, True, cgg, cgh) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, dbh)) -> new_esEs11(yvy4000, yvy3000, dbh) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dgc)) -> new_lt18(yvy7010, yvy7210, dgc) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cad)) -> new_lt15(yvy700, yvy720, cad) new_compare31(yvy7000, yvy7200, app(ty_Maybe, ccd)) -> new_compare9(yvy7000, yvy7200, ccd) new_primMinusNat0(Zero, Succ(yvy21700)) -> Neg(Succ(yvy21700)) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], ed) -> False new_esEs16([], :(yvy3000, yvy3001), ed) -> False new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_lt5(yvy700, yvy720, bhh, caa) -> new_esEs9(new_compare6(yvy700, yvy720, bhh, caa), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], dbb)) -> new_esEs16(yvy4001, yvy3001, dbb) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cb), cc), cd), be) -> new_esEs5(yvy4000, yvy3000, cb, cc, cd) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) new_mkBalBranch6MkBalBranch4(yvy82, yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(yvy82, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt16(new_sizeFM0(yvy543, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba, bb))), h, ba, bb) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt2(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_ltEs7(Right(yvy7010), Right(yvy7210), bec, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs14(yvy400, yvy300) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, ee)) -> new_esEs7(yvy4000, yvy3000, ee) new_lt21(yvy7010, yvy7210, app(app(ty_Either, cdh), cea)) -> new_lt5(yvy7010, yvy7210, cdh, cea) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, dfe), dff), dfg)) -> new_lt6(yvy7010, yvy7210, dfe, dff, dfg) new_ltEs20(yvy7011, yvy7211, app(ty_[], cgc)) -> new_ltEs4(yvy7011, yvy7211, cgc) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_@2, h), ba), bb) new_splitLT0(EmptyFM, yvy23, yvy24, hh, baa, bcg) -> new_emptyFM(hh, baa, bcg) new_primEqNat0(Zero, Zero) -> True new_primCmpInt3(Pos(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Pos(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_primCmpInt2(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpInt3(Neg(Zero), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_primCmpInt(Neg(Zero), new_sizeFM(yvy60, yvy61, Neg(yvy620), yvy63, yvy64, h, ba, bb)) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, ddb)) -> new_esEs11(yvy4001, yvy3001, ddb) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, ef), eg)) -> new_esEs6(yvy4000, yvy3000, ef, eg) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_compare211(yvy700, yvy720, False, fh, ga, gb) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, fh, ga, gb), fh, ga, gb) new_lt20(yvy7010, yvy7210, app(app(ty_Either, dfc), dfd)) -> new_lt5(yvy7010, yvy7210, dfc, dfd) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bea), bdb) -> new_ltEs5(yvy7010, yvy7210, bea) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs31(yvy401, yvy501, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy401, yvy501, bge, bgf) new_esEs22(yvy4000, yvy3000, app(ty_[], chh)) -> new_esEs16(yvy4000, yvy3000, chh) new_ltEs19(yvy7012, yvy7212, app(ty_[], eah)) -> new_ltEs4(yvy7012, yvy7212, eah) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) new_mkBalBranch6MkBalBranch5(yvy82, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Zero, yvy50, yvy51, yvy82, yvy54, app(app(ty_@2, h), ba), bb) new_esEs36(yvy400, yvy300, app(ty_Ratio, bfh)) -> new_esEs11(yvy400, yvy300, bfh) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, ceh)) -> new_esEs7(yvy7010, yvy7210, ceh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_splitGT0(Branch(yvy410, yvy411, yvy412, yvy413, yvy414), yvy42, yvy43, cgd, cge, cgf) -> new_splitGT30(yvy410, yvy411, yvy412, yvy413, yvy414, @2(yvy42, yvy43), cgd, cge, cgf) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, dfc), dfd)) -> new_esEs4(yvy7010, yvy7210, dfc, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), da, app(ty_[], ea)) -> new_esEs16(yvy4000, yvy3000, ea) new_sizeFM1(Branch(yvy2630, yvy2631, yvy2632, yvy2633, yvy2634), hf, hg) -> yvy2632 new_mkBalBranch6MkBalBranch01(yvy82, yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy82, yvy5433, app(app(ty_@2, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(app(ty_@2, h), ba), bb), app(app(ty_@2, h), ba), bb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs13(yvy7010, yvy7210, cch, cda, cdb) new_splitLT20(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, False, hh, baa, bcg) -> new_splitLT10(yvy17, yvy18, yvy19, yvy20, yvy21, yvy22, yvy23, yvy24, new_gt(yvy23, yvy24, yvy17, yvy18, hh, baa), hh, baa, bcg) new_esEs34(yvy400, yvy300, app(ty_[], ed)) -> new_esEs16(yvy400, yvy300, ed) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_@2, h), ba), bb) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, ccf), ccg)) -> new_ltEs7(yvy7010, yvy7210, ccf, ccg) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), da, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_primPlusInt1(yvy8220, Pos(yvy2180)) -> new_primMinusNat0(yvy2180, yvy8220) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt3(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs5(yvy7010, yvy7210, dfe, dff, dfg) The set Q consists of the following terms: new_lt6(x0, x1, x2, x3, x4) new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs37(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_sizeFM1(EmptyFM, x0, x1) new_esEs35(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_compare17(x0, x1, False, x2, x3) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs34(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_primMinusNat0(Zero, Zero) new_primPlusInt(EmptyFM, x0, x1, x2, x3, x4, x5) new_compare31(x0, x1, ty_Ordering) new_lt13(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt3(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_compare28(x0, x1, True) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_splitLT0(EmptyFM, x0, x1, x2, x3, x4) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_splitLT30(@2(x0, x1), x2, x3, x4, x5, @2(x6, x7), x8, x9, x10) new_ltEs5(Just(x0), Just(x1), ty_Float) new_ltEs9(True, True) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13, x14) new_sIZE_RATIO new_esEs35(x0, x1, ty_@0) new_compare31(x0, x1, ty_@0) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs9(LT, LT) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_lt13(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare24(x0, x1, False, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_compare6(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Char) new_splitGT0(EmptyFM, x0, x1, x2, x3, x4) new_primCmpInt2(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs33(x0, x1, ty_Char) new_primPlusInt2(Neg(x0), x1, x2, x3, x4, x5) new_esEs18(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_lt12(x0, x1, x2, x3) new_ltEs12(x0, x1) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(False, True) new_esEs8(True, False) new_compare0(:(x0, x1), [], x2) new_esEs35(x0, x1, ty_Float) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, ty_Float) new_addToFM_C0(Branch(@2(x0, x1), x2, x3, x4, x5), @2(x6, x7), x8, x9, x10, x11) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs30(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare211(x0, x1, False, x2, x3, x4) new_esEs36(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs17(Char(x0), Char(x1)) new_primPlusInt0(x0, Pos(x1)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt3(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8, x9) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_primCmpInt2(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_compare9(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) new_esEs30(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8, x9) new_compare0([], :(x0, x1), x2) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs25(x0, x1, ty_Float) new_compare29(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(x0, x1, ty_Int) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs34(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_sr(x0, x1) new_esEs16([], :(x0, x1), x2) new_lt9(x0, x1, x2) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_sizeFM(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_gt(x0, x1, x2, x3, x4, x5) new_asAs(True, x0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs36(x0, x1, ty_Double) new_sizeFM0(EmptyFM, x0, x1, x2) new_esEs34(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_lt7(x0, x1) new_esEs7(Nothing, Just(x0), x1) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs37(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9, x10) new_splitLT20(x0, x1, x2, x3, x4, x5, x6, x7, False, x8, x9, x10) new_gt0(x0, x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_splitLT10(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs20(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs33(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_ltEs6(LT, GT) new_primCmpInt0(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_primCmpInt0(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_primCmpInt2(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt2(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_lt5(x0, x1, x2, x3) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs16(:(x0, x1), [], x2) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Char) new_primMinusNat0(Zero, Succ(x0)) new_esEs33(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Float) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, True, x2, x3) new_esEs13(x0, x1) new_esEs34(x0, x1, ty_Int) new_esEs7(Nothing, Nothing, x0) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_primCmpInt2(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primMinusNat0(Succ(x0), Zero) new_esEs37(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_splitGT10(x0, x1, x2, x3, x4, x5, x6, x7, False, x8, x9, x10) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusInt(Branch(x0, x1, Neg(x2), x3, x4), x5, x6, x7, x8, x9, x10) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_primCmpInt3(Neg(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) new_esEs19(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt21(x0, x1, ty_Bool) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_ltEs19(x0, x1, ty_Integer) new_splitGT20(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_primCmpInt3(Pos(Succ(x0)), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare0([], [], x0) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_lt18(x0, x1, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, EQ) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) new_lt21(x0, x1, ty_Integer) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs5(Just(x0), Nothing, x1) new_ltEs11(x0, x1) new_esEs32(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt0(Neg(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_lt21(x0, x1, ty_@0) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs22(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1) new_not(True) new_esEs35(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) new_esEs18(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_splitGT10(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, ty_Float) new_primPlusInt1(x0, Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Ordering) new_compare10(x0, x1, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_lt19(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt0(Pos(Zero), x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs16([], [], x0) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt11(x0, x1) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs27(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs18(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_@0) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Int) new_esEs12(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primMinusNat0(Succ(x0), Succ(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_Char) new_splitGT20(x0, x1, x2, x3, x4, x5, x6, x7, False, x8, x9, x10) new_lt20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_compare17(x0, x1, True, x2, x3) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4, x5) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare211(x0, x1, True, x2, x3, x4) new_esEs15(Float(x0, x1), Float(x2, x3)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) new_primPlusInt0(x0, Neg(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_compare13(x0, x1, True, x2, x3, x4) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primPlusInt(Branch(x0, x1, Pos(x2), x3, x4), x5, x6, x7, x8, x9, x10) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Nothing, x0) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_lt20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_@0) new_addToFM(x0, x1, x2, x3, x4, x5) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs9(False, False) new_not(False) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_ltEs20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_primPlusInt1(x0, Neg(x1)) new_emptyFM(x0, x1, x2) new_ltEs19(x0, x1, ty_Float) new_esEs18(x0, x1, app(ty_[], x2)) new_splitGT30(@2(x0, x1), x2, x3, x4, x5, @2(x6, x7), x8, x9, x10) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primPlusInt2(Pos(x0), x1, x2, x3, x4, x5) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_lt20(x0, x1, ty_Integer) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primCompAux0(x0, x1, x2, x3) new_esEs34(x0, x1, ty_Double) new_splitLT10(x0, x1, x2, x3, x4, x5, x6, x7, False, x8, x9, x10) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_Ordering) new_splitLT20(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs10(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4, x5) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_compare12(x0, x1, False, x2) new_esEs31(x0, x1, ty_Int) new_compare25(x0, x1, True, x2, x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (62) 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, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (63) YES ---------------------------------------- (64) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_gt(yvy400, yvy401, yvy500, yvy501, h, ba), h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bd, be) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, ge) -> True new_compare24(yvy700, yvy720, True, bf) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_compare12(yvy700, yvy720, False, bf) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_compare17(yvy700, yvy720, True, bd, be) -> LT new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], fa) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bdh) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_gt(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa), GT) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, bf) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_gt(x0, x1, x2, x3, x4, x5) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (65) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_gt(yvy400, yvy401, yvy500, yvy501, h, ba), h, ba, bb) at position [9] we obtained the following new rules [LPAR04]: (new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb),new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb)) ---------------------------------------- (66) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bd, be) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, ge) -> True new_compare24(yvy700, yvy720, True, bf) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_compare12(yvy700, yvy720, False, bf) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_compare17(yvy700, yvy720, True, bd, be) -> LT new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], fa) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bdh) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_gt(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_esEs9(new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa), GT) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, bf) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_gt(x0, x1, x2, x3, x4, x5) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (67) UsableRulesProof (EQUIVALENT) As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R. ---------------------------------------- (68) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_compare0([], [], bdh) -> EQ new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs7(Nothing, Nothing, ge) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_compare24(yvy700, yvy720, True, bf) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fa) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, bf) -> GT new_compare12(yvy700, yvy720, True, bf) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_compare17(yvy700, yvy720, False, bd, be) -> GT new_compare17(yvy700, yvy720, True, bd, be) -> LT new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_gt(x0, x1, x2, x3, x4, x5) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (69) QReductionProof (EQUIVALENT) We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN]. new_gt(x0, x1, x2, x3, x4, x5) ---------------------------------------- (70) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_compare0([], [], bdh) -> EQ new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs7(Nothing, Nothing, ge) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_compare24(yvy700, yvy720, True, bf) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fa) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, bf) -> GT new_compare12(yvy700, yvy720, True, bf) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_compare17(yvy700, yvy720, False, bd, be) -> GT new_compare17(yvy700, yvy720, True, bd, be) -> LT new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (71) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare32(yvy400, yvy401, yvy500, yvy501, h, ba), GT), h, ba, bb) at position [9,0] we obtained the following new rules [LPAR04]: (new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb),new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb)) ---------------------------------------- (72) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_compare32(yvy23, yvy24, yvy17, yvy18, hh, baa) -> new_compare210(@2(yvy23, yvy24), @2(yvy17, yvy18), new_asAs(new_esEs32(yvy23, yvy17, hh), new_esEs33(yvy24, yvy18, baa)), hh, baa) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_compare0([], [], bdh) -> EQ new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs7(Nothing, Nothing, ge) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_compare24(yvy700, yvy720, True, bf) -> EQ new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fa) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare12(yvy700, yvy720, False, bf) -> GT new_compare12(yvy700, yvy720, True, bf) -> LT new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_compare17(yvy700, yvy720, False, bd, be) -> GT new_compare17(yvy700, yvy720, True, bd, be) -> LT new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (73) UsableRulesProof (EQUIVALENT) As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R. ---------------------------------------- (74) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_compare0([], [], bdh) -> EQ new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs7(Nothing, Nothing, ge) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_compare24(yvy700, yvy720, True, bf) -> EQ new_compare12(yvy700, yvy720, False, bf) -> GT new_compare12(yvy700, yvy720, True, bf) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fa) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_compare17(yvy700, yvy720, False, bd, be) -> GT new_compare17(yvy700, yvy720, True, bd, be) -> LT new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare32(x0, x1, x2, x3, x4, x5) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (75) QReductionProof (EQUIVALENT) We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN]. new_compare32(x0, x1, x2, x3, x4, x5) ---------------------------------------- (76) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) new_addToFM_C(Branch(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb) The TRS R consists of the following rules: new_esEs32(yvy23, yvy17, app(ty_Ratio, bae)) -> new_esEs11(yvy23, yvy17, bae) new_esEs32(yvy23, yvy17, ty_Bool) -> new_esEs8(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_[], bba)) -> new_esEs16(yvy23, yvy17, bba) new_esEs32(yvy23, yvy17, ty_Double) -> new_esEs14(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Int) -> new_esEs13(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs5(yvy23, yvy17, baf, bag, bah) new_esEs32(yvy23, yvy17, app(app(ty_Either, bbb), bbc)) -> new_esEs4(yvy23, yvy17, bbb, bbc) new_esEs32(yvy23, yvy17, ty_Float) -> new_esEs15(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Char) -> new_esEs17(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(ty_Maybe, bab)) -> new_esEs7(yvy23, yvy17, bab) new_esEs32(yvy23, yvy17, ty_Ordering) -> new_esEs9(yvy23, yvy17) new_esEs32(yvy23, yvy17, app(app(ty_@2, bac), bad)) -> new_esEs6(yvy23, yvy17, bac, bad) new_esEs32(yvy23, yvy17, ty_@0) -> new_esEs10(yvy23, yvy17) new_esEs32(yvy23, yvy17, ty_Integer) -> new_esEs12(yvy23, yvy17) new_esEs33(yvy24, yvy18, app(ty_[], bcc)) -> new_esEs16(yvy24, yvy18, bcc) new_esEs33(yvy24, yvy18, ty_Char) -> new_esEs17(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Maybe, bbd)) -> new_esEs7(yvy24, yvy18, bbd) new_esEs33(yvy24, yvy18, app(app(ty_Either, bcd), bce)) -> new_esEs4(yvy24, yvy18, bcd, bce) new_esEs33(yvy24, yvy18, ty_Float) -> new_esEs15(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(yvy24, yvy18, bbh, bca, bcb) new_esEs33(yvy24, yvy18, ty_Integer) -> new_esEs12(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Int) -> new_esEs13(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(app(ty_@2, bbe), bbf)) -> new_esEs6(yvy24, yvy18, bbe, bbf) new_esEs33(yvy24, yvy18, ty_Bool) -> new_esEs8(yvy24, yvy18) new_esEs33(yvy24, yvy18, app(ty_Ratio, bbg)) -> new_esEs11(yvy24, yvy18, bbg) new_esEs33(yvy24, yvy18, ty_Ordering) -> new_esEs9(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_@0) -> new_esEs10(yvy24, yvy18) new_esEs33(yvy24, yvy18, ty_Double) -> new_esEs14(yvy24, yvy18) new_asAs(True, yvy163) -> yvy163 new_asAs(False, yvy163) -> False new_compare210(yvy70, yvy72, True, bhe, bhf) -> EQ new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bhe, bhf) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bhe), new_asAs(new_esEs21(yvy700, yvy720, bhe), new_ltEs18(yvy701, yvy721, bhf)), bhe, bhf) new_esEs9(GT, GT) -> True new_esEs9(EQ, GT) -> False new_esEs9(LT, GT) -> False new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_lt12(yvy700, yvy720, bee, bef) new_lt13(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_lt5(yvy700, yvy720, bd, be) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_[], bdh)) -> new_lt9(yvy700, yvy720, bdh) new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_lt6(yvy700, yvy720, bg, bh, ca) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Maybe, bf)) -> new_lt18(yvy700, yvy720, bf) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_lt13(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_lt15(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(ty_@2, bee), bef)) -> new_esEs6(yvy700, yvy720, bee, bef) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Ratio, bhg)) -> new_esEs11(yvy700, yvy720, bhg) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy700, yvy720, bg, bh, ca) new_esEs21(yvy700, yvy720, app(app(ty_Either, bd), be)) -> new_esEs4(yvy700, yvy720, bd, be) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_Maybe, bf)) -> new_esEs7(yvy700, yvy720, bf) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_esEs21(yvy700, yvy720, app(ty_[], bdh)) -> new_esEs16(yvy700, yvy720, bdh) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, bgb), bfa)) -> new_ltEs7(yvy701, yvy721, bgb, bfa) new_ltEs18(yvy701, yvy721, app(ty_[], bc)) -> new_ltEs4(yvy701, yvy721, bc) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs13(yvy701, yvy721, bhh, caa, cab) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(app(ty_@2, cac), cad)) -> new_ltEs14(yvy701, yvy721, cac, cad) new_ltEs18(yvy701, yvy721, app(ty_Ratio, bed)) -> new_ltEs10(yvy701, yvy721, bed) new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cae)) -> new_ltEs5(yvy701, yvy721, cae) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, bea, beb) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, bea, beb) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) new_compare110(yvy172, yvy173, yvy174, yvy175, True, bea, beb) -> LT new_compare110(yvy172, yvy173, yvy174, yvy175, False, bea, beb) -> GT new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_not(True) -> False new_not(False) -> True new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_primCmpNat0(Zero, Zero) -> EQ new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_primMulNat0(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, dfb), dfc)) -> new_ltEs14(yvy7010, yvy7210, dfb, dfc) new_ltEs5(Just(yvy7010), Nothing, cae) -> False new_ltEs5(Nothing, Nothing, cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], dff)) -> new_ltEs4(yvy7010, yvy7210, dff) new_ltEs5(Nothing, Just(yvy7210), cae) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dfd)) -> new_ltEs10(yvy7010, yvy7210, dfd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs13(yvy7010, yvy7210, deg, deh, dfa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, dee), def)) -> new_ltEs7(yvy7010, yvy7210, dee, def) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, beg), beh), bfa) -> new_ltEs7(yvy7010, yvy7210, beg, beh) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_Either, bgc), bgd)) -> new_ltEs7(yvy7010, yvy7210, bgc, bgd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Maybe, bhc)) -> new_ltEs5(yvy7010, yvy7210, bhc) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, dfe)) -> new_ltEs5(yvy7010, yvy7210, dfe) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bfh), bfa) -> new_ltEs5(yvy7010, yvy7210, bfh) new_ltEs7(Right(yvy7010), Left(yvy7210), bgb, bfa) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bfa) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bfa) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bfa) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(yvy7010, yvy7210, bge, bgf, bgg) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_[], bhd)) -> new_ltEs4(yvy7010, yvy7210, bhd) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bfa) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bfa) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bfa) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, bfg), bfa) -> new_ltEs10(yvy7010, yvy7210, bfg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bfa) -> new_ltEs16(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Right(yvy7210), bgb, bfa) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bfe), bff), bfa) -> new_ltEs14(yvy7010, yvy7210, bfe, bff) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bfa) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bfb), bfc), bfd), bfa) -> new_ltEs13(yvy7010, yvy7210, bfb, bfc, bfd) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], bga), bfa) -> new_ltEs4(yvy7010, yvy7210, bga) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(app(ty_@2, bgh), bha)) -> new_ltEs14(yvy7010, yvy7210, bgh, bha) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, app(ty_Ratio, bhb)) -> new_ltEs10(yvy7010, yvy7210, bhb) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_ltEs7(Right(yvy7010), Right(yvy7210), bgb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs10(yvy701, yvy721, bed) -> new_fsEs(new_compare27(yvy701, yvy721, bed)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), cac, cad) -> new_pePe(new_lt21(yvy7010, yvy7210, cac), new_asAs(new_esEs29(yvy7010, yvy7210, cac), new_ltEs20(yvy7011, yvy7211, cad))) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], dgh)) -> new_lt9(yvy7010, yvy7210, dgh) new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_lt12(yvy7010, yvy7210, dgd, dge) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_lt15(yvy7010, yvy7210, dgf) new_lt21(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_lt18(yvy7010, yvy7210, dgg) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt6(yvy7010, yvy7210, dga, dgb, dgc) new_lt21(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_lt5(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs5(yvy7010, yvy7210, dga, dgb, dgc) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, dgf)) -> new_esEs11(yvy7010, yvy7210, dgf) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_[], dgh)) -> new_esEs16(yvy7010, yvy7210, dgh) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, dfg), dfh)) -> new_esEs4(yvy7010, yvy7210, dfg, dfh) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy7010, yvy7210, dgd, dge) new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, dgg)) -> new_esEs7(yvy7010, yvy7210, dgg) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, dha), dhb)) -> new_ltEs7(yvy7011, yvy7211, dha, dhb) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs13(yvy7011, yvy7211, dhc, dhd, dhe) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, dhh)) -> new_ltEs10(yvy7011, yvy7211, dhh) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, dhf), dhg)) -> new_ltEs14(yvy7011, yvy7211, dhf, dhg) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, eaa)) -> new_ltEs5(yvy7011, yvy7211, eaa) new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, app(ty_[], eab)) -> new_ltEs4(yvy7011, yvy7211, eab) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_pePe(True, yvy201) -> True new_pePe(False, yvy201) -> yvy201 new_ltEs4(yvy701, yvy721, bc) -> new_fsEs(new_compare0(yvy701, yvy721, bc)) new_compare0([], :(yvy7200, yvy7201), bdh) -> LT new_compare0([], [], bdh) -> EQ new_compare0(:(yvy7000, yvy7001), [], bdh) -> GT new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdh) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdh), bdh) new_primCompAux0(yvy7000, yvy7200, yvy196, bdh) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdh)) new_compare31(yvy7000, yvy7200, app(app(ty_Either, ddc), ddd)) -> new_compare6(yvy7000, yvy7200, ddc, ddd) new_compare31(yvy7000, yvy7200, app(ty_Ratio, deb)) -> new_compare27(yvy7000, yvy7200, deb) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, ddh), dea)) -> new_compare29(yvy7000, yvy7200, ddh, dea) new_compare31(yvy7000, yvy7200, app(ty_[], ded)) -> new_compare0(yvy7000, yvy7200, ded) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, dde), ddf), ddg)) -> new_compare10(yvy7000, yvy7200, dde, ddf, ddg) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(ty_Maybe, dec)) -> new_compare9(yvy7000, yvy7200, dec) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_primCompAux00(yvy211, LT) -> LT new_primCompAux00(yvy211, GT) -> GT new_primCompAux00(yvy211, EQ) -> yvy211 new_compare9(yvy700, yvy720, bf) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bf), bf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs7(Nothing, Just(yvy3000), ge) -> False new_esEs7(Just(yvy4000), Nothing, ge) -> False new_esEs7(Nothing, Nothing, ge) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ha)) -> new_esEs11(yvy4000, yvy3000, ha) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], he)) -> new_esEs16(yvy4000, yvy3000, he) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cc), cb) -> new_esEs7(yvy4000, yvy3000, cc) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dd), de), cb) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Maybe, dg)) -> new_esEs7(yvy4000, yvy3000, dg) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy4000, yvy3000, eg, eh) new_compare24(yvy700, yvy720, False, bf) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bf), bf) new_compare24(yvy700, yvy720, True, bf) -> EQ new_compare12(yvy700, yvy720, False, bf) -> GT new_compare12(yvy700, yvy720, True, bf) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cb) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Right(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Left(yvy3000), df, cb) -> False new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_Ratio, eb)) -> new_esEs11(yvy4000, yvy3000, eb) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cf), cb) -> new_esEs11(yvy4000, yvy3000, cf) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cb) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cb) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cb) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy4000, yvy3000, ec, ed, ee) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dc), cb) -> new_esEs16(yvy4000, yvy3000, dc) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cb) -> new_esEs15(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cb) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cb) -> new_esEs13(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cb) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cb) -> new_esEs14(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs4(Right(yvy4000), Right(yvy3000), df, app(ty_[], ef)) -> new_esEs16(yvy4000, yvy3000, ef) new_esEs4(Right(yvy4000), Right(yvy3000), df, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_esEs8(False, False) -> True new_esEs8(True, True) -> True new_esEs16([], [], fa) -> True new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), fa) -> new_asAs(new_esEs18(yvy4000, yvy3000, fa), new_esEs16(yvy4001, yvy3001, fa)) new_esEs16(:(yvy4000, yvy4001), [], fa) -> False new_esEs16([], :(yvy3000, yvy3001), fa) -> False new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs5(yvy4000, yvy3000, fg, fh, ga) new_esEs18(yvy4000, yvy3000, app(ty_[], gb)) -> new_esEs16(yvy4000, yvy3000, gb) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ff)) -> new_esEs11(yvy4000, yvy3000, ff) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy4000, yvy3000, gc, gd) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(ty_Maybe, fb)) -> new_esEs7(yvy4000, yvy3000, fb) new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), caf, cag) -> new_asAs(new_esEs22(yvy4000, yvy3000, caf), new_esEs23(yvy4001, yvy3001, cag)) new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cbh), cca)) -> new_esEs4(yvy4000, yvy3000, cbh, cca) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, cbc)) -> new_esEs11(yvy4000, yvy3000, cbc) new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cba), cbb)) -> new_esEs6(yvy4000, yvy3000, cba, cbb) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe, cbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs22(yvy4000, yvy3000, app(ty_[], cbg)) -> new_esEs16(yvy4000, yvy3000, cbg) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4001, yvy3001, cdb, cdc) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4001, yvy3001, ccf, ccg, cch) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4001, yvy3001, ccc, ccd) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cce)) -> new_esEs11(yvy4001, yvy3001, cce) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, app(ty_[], cda)) -> new_esEs16(yvy4001, yvy3001, cda) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_primEqNat0(Zero, Zero) -> True new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bec) -> new_asAs(new_esEs19(yvy4000, yvy3000, bec), new_esEs20(yvy4001, yvy3001, bec)) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(LT, LT) -> True new_esEs9(EQ, EQ) -> True new_esEs9(GT, EQ) -> False new_esEs9(GT, LT) -> False new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cdd, cde, cdf) -> new_asAs(new_esEs24(yvy4000, yvy3000, cdd), new_asAs(new_esEs25(yvy4001, yvy3001, cde), new_esEs26(yvy4002, yvy3002, cdf))) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs5(yvy4000, yvy3000, cec, ced, cee) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cdh), cea)) -> new_esEs6(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cdg)) -> new_esEs7(yvy4000, yvy3000, cdg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_[], cef)) -> new_esEs16(yvy4000, yvy3000, cef) new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ceg), ceh)) -> new_esEs4(yvy4000, yvy3000, ceg, ceh) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs11(yvy4000, yvy3000, ceb) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(yvy4001, yvy3001, cfe, cff, cfg) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs7(yvy4001, yvy3001, cfa) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs6(yvy4001, yvy3001, cfb, cfc) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cga, cgb) new_esEs25(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs16(yvy4001, yvy3001, cfh) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs11(yvy4001, yvy3001, cfd) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, cgf)) -> new_esEs11(yvy4002, yvy3002, cgf) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_[], chb)) -> new_esEs16(yvy4002, yvy3002, chb) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, cgd), cge)) -> new_esEs6(yvy4002, yvy3002, cgd, cge) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, cgc)) -> new_esEs7(yvy4002, yvy3002, cgc) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, chc), chd)) -> new_esEs4(yvy4002, yvy3002, chc, chd) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(yvy4002, yvy3002, cgg, cgh, cha) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs10(@0, @0) -> True new_compare8(@0, @0) -> EQ new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_compare10(yvy700, yvy720, bg, bh, ca) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_compare211(yvy700, yvy720, True, bg, bh, ca) -> EQ new_compare211(yvy700, yvy720, False, bg, bh, ca) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bg, bh, ca), bg, bh, ca) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), bhh, caa, cab) -> new_pePe(new_lt20(yvy7010, yvy7210, bhh), new_asAs(new_esEs27(yvy7010, yvy7210, bhh), new_pePe(new_lt19(yvy7011, yvy7211, caa), new_asAs(new_esEs28(yvy7011, yvy7211, caa), new_ltEs19(yvy7012, yvy7212, cab))))) new_compare13(yvy700, yvy720, False, bg, bh, ca) -> GT new_compare13(yvy700, yvy720, True, bg, bh, ca) -> LT new_lt20(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_lt12(yvy7010, yvy7210, dab, dac) new_lt20(yvy7010, yvy7210, app(ty_[], daf)) -> new_lt9(yvy7010, yvy7210, daf) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_lt15(yvy7010, yvy7210, dad) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_lt18(yvy7010, yvy7210, dae) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_lt6(yvy7010, yvy7210, chg, chh, daa) new_lt20(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_lt5(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(ty_[], daf)) -> new_esEs16(yvy7010, yvy7210, daf) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, dab), dac)) -> new_esEs6(yvy7010, yvy7210, dab, dac) new_esEs27(yvy7010, yvy7210, app(ty_Ratio, dad)) -> new_esEs11(yvy7010, yvy7210, dad) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, dae)) -> new_esEs7(yvy7010, yvy7210, dae) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, che), chf)) -> new_esEs4(yvy7010, yvy7210, che, chf) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy7010, yvy7210, chg, chh, daa) new_lt19(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_lt18(yvy7011, yvy7211, dbg) new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_lt15(yvy7011, yvy7211, dbf) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(ty_[], dbh)) -> new_lt9(yvy7011, yvy7211, dbh) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_lt19(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_lt12(yvy7011, yvy7211, dbd, dbe) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt6(yvy7011, yvy7211, dba, dbb, dbc) new_lt19(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_lt5(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, dbg)) -> new_esEs7(yvy7011, yvy7211, dbg) new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_[], dbh)) -> new_esEs16(yvy7011, yvy7211, dbh) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(ty_Ratio, dbf)) -> new_esEs11(yvy7011, yvy7211, dbf) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, dbd), dbe)) -> new_esEs6(yvy7011, yvy7211, dbd, dbe) new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy7011, yvy7211, dba, dbb, dbc) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, dag), dah)) -> new_esEs4(yvy7011, yvy7211, dag, dah) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs13(yvy7012, yvy7212, dcc, dcd, dce) new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dca), dcb)) -> new_ltEs7(yvy7012, yvy7212, dca, dcb) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, dcf), dcg)) -> new_ltEs14(yvy7012, yvy7212, dcf, dcg) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, dch)) -> new_ltEs10(yvy7012, yvy7212, dch) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, dda)) -> new_ltEs5(yvy7012, yvy7212, dda) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, app(ty_[], ddb)) -> new_ltEs4(yvy7012, yvy7212, ddb) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_ltEs6(EQ, EQ) -> True new_ltEs6(GT, GT) -> True new_ltEs6(EQ, GT) -> True new_ltEs6(LT, GT) -> True new_ltEs6(LT, LT) -> True new_ltEs6(LT, EQ) -> True new_ltEs6(GT, EQ) -> False new_ltEs6(EQ, LT) -> False new_ltEs6(GT, LT) -> False new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_ltEs9(False, True) -> True new_ltEs9(True, True) -> True new_ltEs9(False, False) -> True new_ltEs9(True, False) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_lt5(yvy700, yvy720, bd, be) -> new_esEs9(new_compare6(yvy700, yvy720, bd, be), LT) new_compare6(yvy700, yvy720, bd, be) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, False, bd, be) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bd, be), bd, be) new_compare25(yvy700, yvy720, True, bd, be) -> EQ new_compare17(yvy700, yvy720, False, bd, be) -> GT new_compare17(yvy700, yvy720, True, bd, be) -> LT new_lt6(yvy700, yvy720, bg, bh, ca) -> new_esEs9(new_compare10(yvy700, yvy720, bg, bh, ca), LT) new_lt12(yvy700, yvy720, bee, bef) -> new_esEs9(new_compare29(yvy700, yvy720, bee, bef), LT) new_compare29(yvy700, yvy720, bee, bef) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bee, bef), bee, bef) new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_compare26(yvy700, yvy720, True) -> EQ new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_compare11(yvy700, yvy720, False) -> GT new_compare11(yvy700, yvy720, True) -> LT new_lt9(yvy700, yvy720, bdh) -> new_esEs9(new_compare0(yvy700, yvy720, bdh), LT) new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_compare28(yvy700, yvy720, True) -> EQ new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_compare111(yvy700, yvy720, True) -> LT new_compare111(yvy700, yvy720, False) -> GT new_lt15(yvy700, yvy720, bhg) -> new_esEs9(new_compare27(yvy700, yvy720, bhg), LT) new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt18(yvy700, yvy720, bf) -> new_esEs9(new_compare9(yvy700, yvy720, bf), LT) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs12(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy400, yvy500, cdd, cde, cdf) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Ratio, bec)) -> new_esEs11(yvy400, yvy500, bec) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs14(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_[], fa)) -> new_esEs16(yvy400, yvy500, fa) new_esEs30(yvy400, yvy500, app(app(ty_Either, df), cb)) -> new_esEs4(yvy400, yvy500, df, cb) new_esEs30(yvy400, yvy500, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy400, yvy500, caf, cag) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy400, yvy500, app(ty_Maybe, ge)) -> new_esEs7(yvy400, yvy500, ge) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs10(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs8(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs31(yvy401, yvy501, ty_Integer) -> new_esEs12(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Ordering) -> new_esEs9(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Bool) -> new_esEs8(yvy401, yvy501) new_esEs31(yvy401, yvy501, ty_Float) -> new_esEs15(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy401, yvy501, bdb, bdc, bdd) new_esEs31(yvy401, yvy501, ty_Int) -> new_esEs13(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yvy401, yvy501, bdf, bdg) new_esEs31(yvy401, yvy501, ty_Double) -> new_esEs14(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Ratio, bda)) -> new_esEs11(yvy401, yvy501, bda) new_esEs31(yvy401, yvy501, ty_Char) -> new_esEs17(yvy401, yvy501) new_esEs31(yvy401, yvy501, app(ty_Maybe, bcf)) -> new_esEs7(yvy401, yvy501, bcf) new_esEs31(yvy401, yvy501, app(ty_[], bde)) -> new_esEs16(yvy401, yvy501, bde) new_esEs31(yvy401, yvy501, app(app(ty_@2, bcg), bch)) -> new_esEs6(yvy401, yvy501, bcg, bch) new_esEs31(yvy401, yvy501, ty_@0) -> new_esEs10(yvy401, yvy501) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primPlusNat1(Zero, Zero) new_lt18(x0, x1, x2) new_esEs33(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, x2) new_esEs29(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs6(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt13(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt13(x0, x1, ty_Float) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare111(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare31(x0, x1, ty_Double) new_compare17(x0, x1, False, x2, x3) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(True, True) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16([], [], x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_compare0(:(x0, x1), [], x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_esEs8(True, True) new_ltEs5(Nothing, Nothing, x0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare12(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs30(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs27(x0, x1, ty_Integer) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, ty_Integer) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, x2, x3) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, False) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs16(:(x0, x1), [], x2) new_sr(x0, x1) new_lt12(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare10(x0, x1, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_compare0([], [], x0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_@0) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare211(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False, x2) new_esEs26(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3, x4) new_primPlusNat0(Zero, x0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, True, x2, x3) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1) new_esEs33(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(EQ, EQ) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs5(Nothing, Just(x0), x1) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare211(x0, x1, True, x2, x3, x4) new_esEs16([], :(x0, x1), x2) new_lt21(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt17(x0, x1) new_not(True) new_primCompAux0(x0, x1, x2, x3) new_lt15(x0, x1, x2) new_compare9(x0, x1, x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Double) new_compare13(x0, x1, True, x2, x3, x4) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare24(x0, x1, False, x2) new_esEs28(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_esEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_compare11(x0, x1, True) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(Nothing, Nothing, x0) new_esEs12(Integer(x0), Integer(x1)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs18(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs31(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_esEs7(Nothing, Just(x0), x1) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs18(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_compare24(x0, x1, True, x2) new_ltEs5(Just(x0), Nothing, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (77) 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(@2(yvy500, yvy501), yvy51, yvy52, yvy53, yvy54), @2(yvy400, yvy401), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs30(yvy400, yvy500, h), new_esEs31(yvy401, yvy501, ba)), h, ba), LT), h, ba, bb) 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, 6 >= 13 *new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, new_esEs9(new_compare210(@2(yvy400, yvy401), @2(yvy500, yvy501), new_asAs(new_esEs32(yvy400, yvy500, h), new_esEs33(yvy401, yvy501, ba)), h, ba), GT), h, ba, bb) 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, 13 >= 13 *new_addToFM_C2(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, @2(yvy400, yvy401), yvy41, h, ba, bb) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 *new_addToFM_C1(yvy500, yvy501, yvy51, yvy52, yvy53, yvy54, yvy400, yvy401, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, @2(yvy400, yvy401), yvy41, h, ba, bb) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 ---------------------------------------- (78) YES ---------------------------------------- (79) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (80) 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(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (81) YES ---------------------------------------- (82) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy82200), Succ(yvy21700)) -> new_primMinusNat(yvy82200, yvy21700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (83) 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(yvy82200), Succ(yvy21700)) -> new_primMinusNat(yvy82200, yvy21700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (84) YES ---------------------------------------- (85) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy82200), Succ(yvy21700)) -> new_primPlusNat(yvy82200, yvy21700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (86) 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(yvy82200), Succ(yvy21700)) -> new_primPlusNat(yvy82200, yvy21700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (87) YES ---------------------------------------- (88) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Left(yvy7010), Left(yvy7210), app(ty_[], ca), bb) -> new_ltEs3(yvy7010, yvy7210, ca) new_primCompAux(yvy7000, yvy7200, yvy196, app(ty_Maybe, beb)) -> new_compare4(yvy7000, yvy7200, beb) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), bah)) -> new_lt1(yvy7010, yvy7210, bbd, bbe) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(ty_Either, he), hf))) -> new_ltEs(yvy7011, yvy7211, he, hf) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(yvy7012, yvy7212, ea, eb, ec) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(ty_Either, he), hf)) -> new_ltEs(yvy7011, yvy7211, he, hf) new_compare21(yvy700, yvy720, False, bef, beg, beh) -> new_ltEs0(yvy700, yvy720, bef, beg, beh) new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(app(ty_@3, bef), beg), beh), bfc) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_lt0(yvy7010, yvy7210, ge, gf, gg) new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(ty_[], dd)) -> new_ltEs3(yvy7010, yvy7210, dd) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(ty_Maybe, bad))) -> new_ltEs2(yvy7011, yvy7211, bad) new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(ty_Either, bed), bee), bfc) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(ty_Maybe, ef))) -> new_ltEs2(yvy7012, yvy7212, ef) new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(ty_@2, da), db))) -> new_ltEs1(yvy7010, yvy7210, da, db) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah)) -> new_lt0(yvy7010, yvy7210, bba, bbb, bbc) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_lt(yvy7010, yvy7210, gc, gd) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(ty_[], bae))) -> new_ltEs3(yvy7011, yvy7211, bae) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(ty_Maybe, hb), df, fb) -> new_lt2(yvy7010, yvy7210, hb) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(ty_Either, eh), fa), fb) -> new_lt(yvy7011, yvy7211, eh, fa) new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(ty_Maybe, bfd), bfc) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(ty_@2, da), db)) -> new_ltEs1(yvy7010, yvy7210, da, db) new_compare23(yvy700, yvy720, False, bfd) -> new_ltEs2(yvy700, yvy720, bfd) new_compare2(yvy700, yvy720, bef, beg, beh) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(ty_@2, bab), bac))) -> new_ltEs1(yvy7011, yvy7211, bab, bac) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(ty_[], hc), df, fb) -> new_lt3(yvy7010, yvy7210, hc) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(ty_Maybe, hb)), df), fb)) -> new_lt2(yvy7010, yvy7210, hb) new_primCompAux(yvy7000, yvy7200, yvy196, app(app(ty_@2, bdh), bea)) -> new_compare3(yvy7000, yvy7200, bdh, bea) new_ltEs(Left(yvy7010), Left(yvy7210), app(app(ty_Either, h), ba), bb) -> new_ltEs(yvy7010, yvy7210, h, ba) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), df), fb)) -> new_lt1(yvy7010, yvy7210, gh, ha) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(ty_[], bbg)), bah)) -> new_lt3(yvy7010, yvy7210, bbg) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(ty_[], bae)) -> new_ltEs3(yvy7011, yvy7211, bae) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(ty_@2, bbd), bbe), bah) -> new_lt1(yvy7010, yvy7210, bbd, bbe) new_primCompAux(yvy7000, yvy7200, yvy196, app(app(ty_Either, bdc), bdd)) -> new_compare1(yvy7000, yvy7200, bdc, bdd) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(ty_Maybe, bbf)), bah)) -> new_lt2(yvy7010, yvy7210, bbf) new_lt3(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_compare(yvy7001, yvy7201, bdb) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(ty_@2, fg), fh)), fb)) -> new_lt1(yvy7011, yvy7211, fg, fh) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(ty_Either, gc), gd), df, fb) -> new_lt(yvy7010, yvy7210, gc, gd) new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(ty_@2, bfa), bfb), bfc) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(yvy7012, yvy7212, dg, dh) new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(yvy7010, yvy7210, bc, bd, be) new_ltEs(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(yvy7010, yvy7210, bc, bd, be) new_ltEs(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bf), bg), bb) -> new_ltEs1(yvy7010, yvy7210, bf, bg) new_compare20(yvy700, yvy720, False, bed, bee) -> new_ltEs(yvy700, yvy720, bed, bee) new_ltEs3(yvy701, yvy721, bda) -> new_compare(yvy701, yvy721, bda) new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(yvy7010, yvy7210, cc, cd) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(yvy7012, yvy7212, ea, eb, ec) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(ty_[], hc)), df), fb)) -> new_lt3(yvy7010, yvy7210, hc) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(ty_Maybe, bad)) -> new_ltEs2(yvy7011, yvy7211, bad) new_ltEs2(Just(yvy7010), Just(yvy7210), app(ty_Maybe, bcg)) -> new_ltEs2(yvy7010, yvy7210, bcg) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(ty_[], bbg), bah) -> new_lt3(yvy7010, yvy7210, bbg) new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(ty_@2, bf), bg)), bb)) -> new_ltEs1(yvy7010, yvy7210, bf, bg) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(ty_Maybe, bbf), bah) -> new_lt2(yvy7010, yvy7210, bbf) new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(ty_Maybe, bcg))) -> new_ltEs2(yvy7010, yvy7210, bcg) new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(ty_[], ca)), bb)) -> new_ltEs3(yvy7010, yvy7210, ca) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(yvy7011, yvy7211, eh, fa) new_ltEs2(Just(yvy7010), Just(yvy7210), app(ty_[], bch)) -> new_ltEs3(yvy7010, yvy7210, bch) new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(ty_Maybe, dc)) -> new_ltEs2(yvy7010, yvy7210, dc) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(ty_Either, baf), bag), bah) -> new_lt(yvy7010, yvy7210, baf, bag) new_lt2(yvy700, yvy720, bfd) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) new_compare3(yvy700, yvy720, bfa, bfb) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(yvy7011, yvy7211, hg, hh, baa) new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(ty_@2, bce), bcf)) -> new_ltEs1(yvy7010, yvy7210, bce, bcf) new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(ty_Maybe, dc))) -> new_ltEs2(yvy7010, yvy7210, dc) new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(ty_[], dd))) -> new_ltEs3(yvy7010, yvy7210, dd) new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(yvy7010, yvy7210, cc, cd) new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(yvy7010, yvy7210, ce, cf, cg) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(ty_@2, ed), ee))) -> new_ltEs1(yvy7012, yvy7212, ed, ee) new_compare22(@2(:(yvy7000, yvy7001), yvy701), @2(:(yvy7200, yvy7201), yvy721), False, app(ty_[], bdb), bfc) -> new_compare(yvy7001, yvy7201, bdb) new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(ty_[], bch))) -> new_ltEs3(yvy7010, yvy7210, bch) new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(ty_Maybe, bh)), bb)) -> new_ltEs2(yvy7010, yvy7210, bh) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(yvy7011, yvy7211, fc, fd, ff) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(yvy7012, yvy7212, dg, dh) new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(yvy7010, yvy7210, bcb, bcc, bcd) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_lt0(yvy7010, yvy7210, ge, gf, gg) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(ty_Either, baf), bag)), bah)) -> new_lt(yvy7010, yvy7210, baf, bag) new_compare4(yvy700, yvy720, bfd) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) new_lt1(yvy700, yvy720, bfa, bfb) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(ty_@2, fg), fh), fb) -> new_lt1(yvy7011, yvy7211, fg, fh) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(ty_@2, bab), bac)) -> new_ltEs1(yvy7011, yvy7211, bab, bac) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(ty_[], gb)), fb)) -> new_lt3(yvy7011, yvy7211, gb) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(yvy7011, yvy7211, fc, fd, ff) new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(yvy7010, yvy7210, bcb, bcc, bcd) new_primCompAux(yvy7000, yvy7200, yvy196, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare2(yvy7000, yvy7200, bde, bdf, bdg) new_compare(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs0(yvy7011, yvy7211, hg, hh, baa) new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(ty_@2, bce), bcf))) -> new_ltEs1(yvy7010, yvy7210, bce, bcf) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(ty_Maybe, ga)), fb)) -> new_lt2(yvy7011, yvy7211, ga) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(ty_[], gb), fb) -> new_lt3(yvy7011, yvy7211, gb) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(ty_@2, ed), ee)) -> new_ltEs1(yvy7012, yvy7212, ed, ee) new_lt(yvy700, yvy720, bed, bee) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) new_primCompAux(yvy7000, yvy7200, yvy196, app(ty_[], bec)) -> new_compare(yvy7000, yvy7200, bec) new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(yvy7010, yvy7210, h, ba) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(ty_Maybe, ef)) -> new_ltEs2(yvy7012, yvy7212, ef) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(ty_@2, gh), ha), df, fb) -> new_lt1(yvy7010, yvy7210, gh, ha) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(ty_[], eg)) -> new_ltEs3(yvy7012, yvy7212, eg) new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bfe, app(ty_[], bda)) -> new_compare(yvy701, yvy721, bda) new_compare(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_compare(yvy7001, yvy7201, bdb) new_lt3(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) new_compare1(yvy700, yvy720, bed, bee) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) new_lt0(yvy700, yvy720, bef, beg, beh) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(ty_Maybe, ga), fb) -> new_lt2(yvy7011, yvy7211, ga) new_compare22(@2(:(yvy7000, yvy7001), yvy701), @2(:(yvy7200, yvy7201), yvy721), False, app(ty_[], bdb), bfc) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(ty_Either, bbh), bca)) -> new_ltEs(yvy7010, yvy7210, bbh, bca) new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(ty_[], eg))) -> new_ltEs3(yvy7012, yvy7212, eg) new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(yvy7010, yvy7210, ce, cf, cg) new_ltEs(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bh), bb) -> new_ltEs2(yvy7010, yvy7210, bh) new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(yvy7010, yvy7210, bba, bbb, bbc) new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(ty_Either, bbh), bca))) -> new_ltEs(yvy7010, yvy7210, bbh, bca) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_Either, h), ba), bb) -> new_ltEs7(yvy7010, yvy7210, h, ba) new_ltEs7(Right(yvy7010), Left(yvy7210), cb, bb) -> False new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Float, bb) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Succ(yvy7000)), Pos(yvy720)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_esEs19(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_pePe(True, yvy201) -> True new_esEs22(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bff) -> new_esEs17(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Bool) -> new_esEs8(yvy700, yvy720) new_ltEs18(yvy701, yvy721, app(app(ty_Either, cb), bb)) -> new_ltEs7(yvy701, yvy721, cb, bb) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Maybe, ga)) -> new_lt18(yvy7011, yvy7211, ga) new_ltEs6(GT, GT) -> True new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Right(yvy3000), bha, bff) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bha, bff) -> False new_lt19(yvy7011, yvy7211, ty_Char) -> new_lt14(yvy7011, yvy7211) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(yvy7010, yvy7210, app(ty_[], hc)) -> new_esEs16(yvy7010, yvy7210, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy7200))) -> GT new_esEs29(yvy7010, yvy7210, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy7010, yvy7210, bba, bbb, bbc) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_@0, bb) -> new_ltEs15(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(ty_@2, bfa), bfb)) -> new_esEs6(yvy700, yvy720, bfa, bfb) new_lt13(yvy700, yvy720, ty_Integer) -> new_lt11(yvy700, yvy720) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbh)) -> new_esEs7(yvy4000, yvy3000, cbh) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(ty_Ratio, bhe)) -> new_esEs11(yvy4000, yvy3000, bhe) new_primCmpInt(Neg(Succ(yvy7000)), Neg(yvy720)) -> new_primCmpNat0(yvy720, Succ(yvy7000)) new_esEs22(yvy4000, yvy3000, app(app(ty_Either, cfd), cfe)) -> new_esEs4(yvy4000, yvy3000, cfd, cfe) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Maybe, bcg)) -> new_ltEs5(yvy7010, yvy7210, bcg) new_compare16(yvy70, yvy72) -> new_primCmpInt(yvy70, yvy72) new_ltEs18(yvy701, yvy721, app(ty_[], bda)) -> new_ltEs4(yvy701, yvy721, bda) new_esEs28(yvy7011, yvy7211, app(ty_Maybe, ga)) -> new_esEs7(yvy7011, yvy7211, ga) new_ltEs6(EQ, GT) -> True new_lt10(yvy700, yvy720) -> new_esEs9(new_compare8(yvy700, yvy720), LT) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Double) -> new_ltEs11(yvy7012, yvy7212) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bgb), bff) -> new_esEs11(yvy4000, yvy3000, bgb) new_esEs14(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(yvy700, yvy720, True) -> EQ new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_compare5(yvy700, yvy720) -> new_compare28(yvy700, yvy720, new_esEs9(yvy700, yvy720)) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_ltEs9(False, True) -> True new_compare210(yvy70, yvy72, True, bfe, bfc) -> EQ new_ltEs17(yvy701, yvy721) -> new_fsEs(new_compare30(yvy701, yvy721)) new_lt15(yvy700, yvy720, cdh) -> new_esEs9(new_compare27(yvy700, yvy720, cdh), LT) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_compare29(yvy700, yvy720, bfa, bfb) -> new_compare210(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) new_esEs21(yvy700, yvy720, ty_Int) -> new_esEs13(yvy700, yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Char, bb) -> new_ltEs8(yvy7010, yvy7210) new_lt13(yvy700, yvy720, app(app(ty_@2, bfa), bfb)) -> new_lt12(yvy700, yvy720, bfa, bfb) new_ltEs4(yvy701, yvy721, bda) -> new_fsEs(new_compare0(yvy701, yvy721, bda)) new_esEs8(False, True) -> False new_esEs8(True, False) -> False new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dcb)) -> new_esEs11(yvy4002, yvy3002, dcb) new_lt14(yvy700, yvy720) -> new_esEs9(new_compare7(yvy700, yvy720), LT) new_lt13(yvy700, yvy720, app(app(ty_Either, bed), bee)) -> new_lt5(yvy700, yvy720, bed, bee) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs10(yvy4000, yvy3000) new_not(True) -> False new_esEs28(yvy7011, yvy7211, ty_Char) -> new_esEs17(yvy7011, yvy7211) new_compare24(yvy700, yvy720, False, bfd) -> new_compare12(yvy700, yvy720, new_ltEs5(yvy700, yvy720, bfd), bfd) new_ltEs19(yvy7012, yvy7212, ty_Integer) -> new_ltEs12(yvy7012, yvy7212) new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs20(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_primCompAux00(yvy211, LT) -> LT new_compare17(yvy700, yvy720, False, bed, bee) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs5(yvy4000, yvy3000, ccd, cce, ccf) new_esEs29(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_compare11(yvy700, yvy720, False) -> GT new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs5(yvy4000, yvy3000, cba, cbb, cbc) new_ltEs6(LT, GT) -> True new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bff) -> new_esEs10(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_ltEs19(yvy7012, yvy7212, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs13(yvy7012, yvy7212, ea, eb, ec) new_ltEs20(yvy7011, yvy7211, app(app(ty_Either, he), hf)) -> new_ltEs7(yvy7011, yvy7211, he, hf) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs29(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Double) -> new_ltEs11(yvy7011, yvy7211) new_esEs12(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Integer) -> new_compare18(new_sr0(yvy7000, yvy7201), new_sr0(yvy7200, yvy7001)) new_esEs21(yvy700, yvy720, app(ty_Ratio, cdh)) -> new_esEs11(yvy700, yvy720, cdh) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs13(yvy7010, yvy7210, ce, cf, cg) new_lt13(yvy700, yvy720, ty_@0) -> new_lt10(yvy700, yvy720) new_lt20(yvy7010, yvy7210, app(app(ty_@2, gh), ha)) -> new_lt12(yvy7010, yvy7210, gh, ha) new_primCompAux00(yvy211, GT) -> GT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(yvy4001, yvy3001, dba, dbb, dbc) new_lt20(yvy7010, yvy7210, app(ty_[], hc)) -> new_lt9(yvy7010, yvy7210, hc) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bfh), bga), bff) -> new_esEs6(yvy4000, yvy3000, bfh, bga) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_@2, bce), bcf)) -> new_ltEs14(yvy7010, yvy7210, bce, bcf) new_ltEs18(yvy701, yvy721, ty_Ordering) -> new_ltEs6(yvy701, yvy721) new_lt13(yvy700, yvy720, app(ty_[], bdb)) -> new_lt9(yvy700, yvy720, bdb) new_ltEs20(yvy7011, yvy7211, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(yvy7011, yvy7211, hg, hh, baa) new_ltEs8(yvy701, yvy721) -> new_fsEs(new_compare7(yvy701, yvy721)) new_primCmpInt(Pos(Succ(yvy7000)), Neg(yvy720)) -> GT new_lt12(yvy700, yvy720, bfa, bfb) -> new_esEs9(new_compare29(yvy700, yvy720, bfa, bfb), LT) new_compare27(:%(yvy7000, yvy7001), :%(yvy7200, yvy7201), ty_Int) -> new_compare16(new_sr(yvy7000, yvy7201), new_sr(yvy7200, yvy7001)) new_ltEs13(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, fb) -> new_pePe(new_lt20(yvy7010, yvy7210, de), new_asAs(new_esEs27(yvy7010, yvy7210, de), new_pePe(new_lt19(yvy7011, yvy7211, df), new_asAs(new_esEs28(yvy7011, yvy7211, df), new_ltEs19(yvy7012, yvy7212, fb))))) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(yvy4000, yvy3000, chg, chh, daa) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs14(yvy4002, yvy3002) new_esEs29(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_compare25(yvy700, yvy720, False, bed, bee) -> new_compare17(yvy700, yvy720, new_ltEs7(yvy700, yvy720, bed, bee), bed, bee) new_esEs21(yvy700, yvy720, ty_Ordering) -> new_esEs9(yvy700, yvy720) new_esEs22(yvy4000, yvy3000, app(ty_Ratio, ceg)) -> new_esEs11(yvy4000, yvy3000, ceg) new_primPlusNat1(Succ(yvy82200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat1(yvy82200, yvy21700))) new_esEs19(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs8(yvy4002, yvy3002) new_primCompAux0(yvy7000, yvy7200, yvy196, bdb) -> new_primCompAux00(yvy196, new_compare31(yvy7000, yvy7200, bdb)) new_ltEs20(yvy7011, yvy7211, ty_Integer) -> new_ltEs12(yvy7011, yvy7211) new_lt6(yvy700, yvy720, bef, beg, beh) -> new_esEs9(new_compare10(yvy700, yvy720, bef, beg, beh), LT) new_lt21(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, app(app(ty_Either, bdc), bdd)) -> new_compare6(yvy7000, yvy7200, bdc, bdd) new_primCmpNat0(Zero, Succ(yvy72000)) -> LT new_esEs28(yvy7011, yvy7211, ty_@0) -> new_esEs10(yvy7011, yvy7211) new_compare30(Float(yvy7000, Neg(yvy70010)), Float(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_lt20(yvy7010, yvy7210, ty_Char) -> new_lt14(yvy7010, yvy7210) new_esEs21(yvy700, yvy720, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(yvy700, yvy720, bef, beg, beh) new_esEs28(yvy7011, yvy7211, app(ty_[], gb)) -> new_esEs16(yvy7011, yvy7211, gb) new_primCmpNat0(Succ(yvy70000), Zero) -> GT new_pePe(False, yvy201) -> yvy201 new_ltEs19(yvy7012, yvy7212, app(app(ty_Either, dg), dh)) -> new_ltEs7(yvy7012, yvy7212, dg, dh) new_lt19(yvy7011, yvy7211, ty_Int) -> new_lt16(yvy7011, yvy7211) new_esEs7(Nothing, Just(yvy3000), cbg) -> False new_esEs7(Just(yvy4000), Nothing, cbg) -> False new_esEs22(yvy4000, yvy3000, app(app(ty_@2, cee), cef)) -> new_esEs6(yvy4000, yvy3000, cee, cef) new_lt19(yvy7011, yvy7211, ty_Double) -> new_lt8(yvy7011, yvy7211) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs12(yvy4002, yvy3002) new_lt20(yvy7010, yvy7210, ty_Float) -> new_lt17(yvy7010, yvy7210) new_compare25(yvy700, yvy720, True, bed, bee) -> EQ new_esEs27(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_ltEs9(True, True) -> True new_ltEs18(yvy701, yvy721, ty_Int) -> new_ltEs16(yvy701, yvy721) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(ty_[], dd)) -> new_ltEs4(yvy7010, yvy7210, dd) new_esEs21(yvy700, yvy720, app(app(ty_Either, bed), bee)) -> new_esEs4(yvy700, yvy720, bed, bee) new_esEs22(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_ltEs6(LT, LT) -> True new_lt7(yvy700, yvy720) -> new_esEs9(new_compare14(yvy700, yvy720), LT) new_esEs29(yvy7010, yvy7210, app(ty_Ratio, ddf)) -> new_esEs11(yvy7010, yvy7210, ddf) new_lt20(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_compare211(yvy700, yvy720, True, bef, beg, beh) -> EQ new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs7(Nothing, Nothing, cbg) -> True new_compare24(yvy700, yvy720, True, bfd) -> EQ new_esEs24(yvy4000, yvy3000, app(app(ty_@2, chd), che)) -> new_esEs6(yvy4000, yvy3000, chd, che) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_ltEs20(yvy7011, yvy7211, app(ty_Ratio, ddg)) -> new_ltEs10(yvy7011, yvy7211, ddg) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Bool, bb) -> new_ltEs9(yvy7010, yvy7210) new_compare19(yvy172, yvy173, yvy174, yvy175, False, yvy177, cdb, cdc) -> new_compare110(yvy172, yvy173, yvy174, yvy175, yvy177, cdb, cdc) new_esEs26(yvy4002, yvy3002, app(ty_[], dcf)) -> new_esEs16(yvy4002, yvy3002, dcf) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ceb, cec) -> new_asAs(new_esEs22(yvy4000, yvy3000, ceb), new_esEs23(yvy4001, yvy3001, cec)) new_ltEs19(yvy7012, yvy7212, app(app(ty_@2, ed), ee)) -> new_ltEs14(yvy7012, yvy7212, ed, ee) new_ltEs18(yvy701, yvy721, app(app(app(ty_@3, de), df), fb)) -> new_ltEs13(yvy701, yvy721, de, df, fb) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, ty_Double) -> new_ltEs11(yvy701, yvy721) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy7200))) -> LT new_ltEs5(Just(yvy7010), Nothing, cea) -> False new_ltEs5(Nothing, Nothing, cea) -> True new_primMulInt(Pos(yvy40110), Pos(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, dae)) -> new_esEs7(yvy4001, yvy3001, dae) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(app(ty_Either, cc), cd)) -> new_ltEs7(yvy7010, yvy7210, cc, cd) new_lt18(yvy700, yvy720, bfd) -> new_esEs9(new_compare9(yvy700, yvy720, bfd), LT) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs4(yvy4001, yvy3001, cgf, cgg) new_esEs18(yvy4000, yvy3000, app(ty_[], cbd)) -> new_esEs16(yvy4000, yvy3000, cbd) new_ltEs19(yvy7012, yvy7212, app(ty_Ratio, ddd)) -> new_ltEs10(yvy7012, yvy7212, ddd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs13(yvy4000, yvy3000) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_[], bch)) -> new_ltEs4(yvy7010, yvy7210, bch) new_esEs8(False, False) -> True new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dbh), dca)) -> new_esEs6(yvy4002, yvy3002, dbh, dca) new_compare12(yvy700, yvy720, False, bfd) -> GT new_ltEs18(yvy701, yvy721, ty_Integer) -> new_ltEs12(yvy701, yvy721) new_lt19(yvy7011, yvy7211, ty_Float) -> new_lt17(yvy7011, yvy7211) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Integer, bb) -> new_ltEs12(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy301000)) -> Zero new_lt20(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_primPlusNat0(Zero, yvy301000) -> Succ(yvy301000) new_compare31(yvy7000, yvy7200, app(ty_Ratio, dda)) -> new_compare27(yvy7000, yvy7200, dda) new_lt19(yvy7011, yvy7211, ty_Integer) -> new_lt11(yvy7011, yvy7211) new_ltEs6(LT, EQ) -> True new_esEs22(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_compare18(Integer(yvy7000), Integer(yvy7200)) -> new_primCmpInt(yvy7000, yvy7200) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs5(yvy4001, yvy3001, cgb, cgc, cgd) new_ltEs19(yvy7012, yvy7212, ty_Bool) -> new_ltEs9(yvy7012, yvy7212) new_esEs22(yvy4000, yvy3000, app(ty_Maybe, ced)) -> new_esEs7(yvy4000, yvy3000, ced) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cff)) -> new_esEs7(yvy4001, yvy3001, cff) new_lt20(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_lt9(yvy700, yvy720, bdb) -> new_esEs9(new_compare0(yvy700, yvy720, bdb), LT) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Ordering, bb) -> new_ltEs6(yvy7010, yvy7210) new_compare17(yvy700, yvy720, True, bed, bee) -> LT new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_compare111(yvy700, yvy720, True) -> LT new_lt13(yvy700, yvy720, ty_Ordering) -> new_lt4(yvy700, yvy720) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bff) -> new_esEs9(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_ltEs18(yvy701, yvy721, ty_Char) -> new_ltEs8(yvy701, yvy721) new_compare13(yvy700, yvy720, False, bef, beg, beh) -> GT new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cca), ccb)) -> new_esEs6(yvy4000, yvy3000, cca, ccb) new_primPlusNat1(Succ(yvy82200), Zero) -> Succ(yvy82200) new_primPlusNat1(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_lt20(yvy7010, yvy7210, ty_Int) -> new_lt16(yvy7010, yvy7210) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Ratio, cdf), bb) -> new_ltEs10(yvy7010, yvy7210, cdf) new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4000, yvy3000, bhf, bhg, bhh) new_ltEs11(yvy701, yvy721) -> new_fsEs(new_compare15(yvy701, yvy721)) new_ltEs20(yvy7011, yvy7211, app(app(ty_@2, bab), bac)) -> new_ltEs14(yvy7011, yvy7211, bab, bac) new_esEs28(yvy7011, yvy7211, ty_Double) -> new_esEs14(yvy7011, yvy7211) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, chc)) -> new_esEs7(yvy4000, yvy3000, chc) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], bgf), bff) -> new_esEs16(yvy4000, yvy3000, bgf) new_esEs18(yvy4000, yvy3000, app(ty_Ratio, cah)) -> new_esEs11(yvy4000, yvy3000, cah) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs10(yvy4001, yvy3001) new_esEs16([], [], cad) -> True new_fsEs(yvy183) -> new_not(new_esEs9(yvy183, GT)) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs8(yvy4001, yvy3001) new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_Integer) -> new_lt11(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_compare10(yvy700, yvy720, bef, beg, beh) -> new_compare211(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) new_primMulInt(Neg(yvy40110), Neg(yvy30100)) -> Pos(new_primMulNat0(yvy40110, yvy30100)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy7200))) -> new_primCmpNat0(Zero, Succ(yvy7200)) new_esEs29(yvy7010, yvy7210, ty_Double) -> new_esEs14(yvy7010, yvy7210) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, daf), dag)) -> new_esEs6(yvy4001, yvy3001, daf, dag) new_esEs29(yvy7010, yvy7210, ty_Char) -> new_esEs17(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, ty_@0) -> new_lt10(yvy7010, yvy7210) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare31(yvy7000, yvy7200, ty_Ordering) -> new_compare5(yvy7000, yvy7200) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Int, bb) -> new_ltEs16(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Bool) -> new_compare14(yvy7000, yvy7200) new_compare31(yvy7000, yvy7200, app(app(ty_@2, bdh), bea)) -> new_compare29(yvy7000, yvy7200, bdh, bea) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(ty_Maybe, dc)) -> new_ltEs5(yvy7010, yvy7210, dc) new_ltEs5(Nothing, Just(yvy7210), cea) -> True new_ltEs14(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, bah) -> new_pePe(new_lt21(yvy7010, yvy7210, hd), new_asAs(new_esEs29(yvy7010, yvy7210, hd), new_ltEs20(yvy7011, yvy7211, bah))) new_esEs16(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cad) -> new_asAs(new_esEs18(yvy4000, yvy3000, cad), new_esEs16(yvy4001, yvy3001, cad)) new_esEs21(yvy700, yvy720, ty_Float) -> new_esEs15(yvy700, yvy720) new_esEs27(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Float) -> new_lt17(yvy700, yvy720) new_ltEs18(yvy701, yvy721, ty_Bool) -> new_ltEs9(yvy701, yvy721) new_ltEs7(Left(yvy7010), Right(yvy7210), cb, bb) -> True new_esEs28(yvy7011, yvy7211, app(ty_Ratio, ddc)) -> new_esEs11(yvy7011, yvy7211, ddc) new_primMulInt(Pos(yvy40110), Neg(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_primMulInt(Neg(yvy40110), Pos(yvy30100)) -> Neg(new_primMulNat0(yvy40110, yvy30100)) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cfg), cfh)) -> new_esEs6(yvy4001, yvy3001, cfg, cfh) new_compare28(yvy700, yvy720, True) -> EQ new_ltEs6(GT, EQ) -> False new_ltEs12(yvy701, yvy721) -> new_fsEs(new_compare18(yvy701, yvy721)) new_compare31(yvy7000, yvy7200, app(ty_[], bec)) -> new_compare0(yvy7000, yvy7200, bec) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bff) -> new_esEs15(yvy4000, yvy3000) new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs13(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4000, yvy3000, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs5(yvy4000, yvy3000, ceh, cfa, cfb) new_ltEs18(yvy701, yvy721, app(app(ty_@2, hd), bah)) -> new_ltEs14(yvy701, yvy721, hd, bah) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_sr0(Integer(yvy70000), Integer(yvy72010)) -> Integer(new_primMulInt(yvy70000, yvy72010)) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs13(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bff) -> new_esEs8(yvy4000, yvy3000) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bf), bg), bb) -> new_ltEs14(yvy7010, yvy7210, bf, bg) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfg), bff) -> new_esEs7(yvy4000, yvy3000, bfg) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ccc)) -> new_esEs11(yvy4000, yvy3000, ccc) new_ltEs19(yvy7012, yvy7212, ty_Int) -> new_ltEs16(yvy7012, yvy7212) new_esEs13(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs10(yvy4002, yvy3002) new_ltEs20(yvy7011, yvy7211, ty_Char) -> new_ltEs8(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) new_compare30(Float(yvy7000, Pos(yvy70010)), Float(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_ltEs19(yvy7012, yvy7212, app(ty_Maybe, ef)) -> new_ltEs5(yvy7012, yvy7212, ef) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare6(yvy700, yvy720, bed, bee) -> new_compare25(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare210(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bfe, bfc) -> new_compare19(yvy700, yvy701, yvy720, yvy721, new_lt13(yvy700, yvy720, bfe), new_asAs(new_esEs21(yvy700, yvy720, bfe), new_ltEs18(yvy701, yvy721, bfc)), bfe, bfc) new_compare0([], :(yvy7200, yvy7201), bdb) -> LT new_lt11(yvy700, yvy720) -> new_esEs9(new_compare18(yvy700, yvy720), LT) new_asAs(True, yvy163) -> yvy163 new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bff) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(ty_Ratio, ddc)) -> new_lt15(yvy7011, yvy7211, ddc) new_lt19(yvy7011, yvy7211, ty_Ordering) -> new_lt4(yvy7011, yvy7211) new_lt8(yvy700, yvy720) -> new_esEs9(new_compare15(yvy700, yvy720), LT) new_esEs21(yvy700, yvy720, ty_@0) -> new_esEs10(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Bool) -> new_esEs8(yvy7011, yvy7211) new_compare31(yvy7000, yvy7200, ty_Int) -> new_compare16(yvy7000, yvy7200) new_ltEs20(yvy7011, yvy7211, ty_@0) -> new_ltEs15(yvy7011, yvy7211) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bgg), bgh), bff) -> new_esEs4(yvy4000, yvy3000, bgg, bgh) new_ltEs20(yvy7011, yvy7211, app(ty_Maybe, bad)) -> new_ltEs5(yvy7011, yvy7211, bad) new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(ty_Maybe, bhb)) -> new_esEs7(yvy4000, yvy3000, bhb) new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(app(ty_@2, bhc), bhd)) -> new_esEs6(yvy4000, yvy3000, bhc, bhd) new_esEs27(yvy7010, yvy7210, ty_Integer) -> new_esEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, app(ty_[], bbg)) -> new_lt9(yvy7010, yvy7210, bbg) new_lt13(yvy700, yvy720, app(app(app(ty_@3, bef), beg), beh)) -> new_lt6(yvy700, yvy720, bef, beg, beh) new_lt19(yvy7011, yvy7211, ty_@0) -> new_lt10(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_[], bbg)) -> new_esEs16(yvy7010, yvy7210, bbg) new_ltEs19(yvy7012, yvy7212, ty_@0) -> new_ltEs15(yvy7012, yvy7212) new_ltEs19(yvy7012, yvy7212, ty_Ordering) -> new_ltEs6(yvy7012, yvy7212) new_primCmpInt(Pos(Succ(yvy7000)), Pos(yvy720)) -> new_primCmpNat0(Succ(yvy7000), yvy720) new_ltEs7(Left(yvy7010), Left(yvy7210), ty_Double, bb) -> new_ltEs11(yvy7010, yvy7210) new_compare26(yvy700, yvy720, False) -> new_compare11(yvy700, yvy720, new_ltEs9(yvy700, yvy720)) new_primCompAux00(yvy211, EQ) -> yvy211 new_compare0([], [], bdb) -> EQ new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_@0) -> new_ltEs15(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Int) -> new_lt16(yvy700, yvy720) new_esEs11(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), cdd) -> new_asAs(new_esEs19(yvy4000, yvy3000, cdd), new_esEs20(yvy4001, yvy3001, cdd)) new_ltEs16(yvy701, yvy721) -> new_fsEs(new_compare16(yvy701, yvy721)) new_sr(yvy4011, yvy3010) -> new_primMulInt(yvy4011, yvy3010) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cch), cda)) -> new_esEs4(yvy4000, yvy3000, cch, cda) new_esEs27(yvy7010, yvy7210, app(app(ty_@2, gh), ha)) -> new_esEs6(yvy7010, yvy7210, gh, ha) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cga)) -> new_esEs11(yvy4001, yvy3001, cga) new_esEs28(yvy7011, yvy7211, ty_Float) -> new_esEs15(yvy7011, yvy7211) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt21(yvy7010, yvy7210, ty_Double) -> new_lt8(yvy7010, yvy7210) new_esEs24(yvy4000, yvy3000, app(ty_[], dab)) -> new_esEs16(yvy4000, yvy3000, dab) new_compare111(yvy700, yvy720, False) -> GT new_ltEs20(yvy7011, yvy7211, ty_Bool) -> new_ltEs9(yvy7011, yvy7211) new_ltEs20(yvy7011, yvy7211, ty_Int) -> new_ltEs16(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Maybe, bfd)) -> new_lt18(yvy700, yvy720, bfd) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt13(yvy700, yvy720, ty_Char) -> new_lt14(yvy700, yvy720) new_ltEs6(EQ, LT) -> False new_ltEs19(yvy7012, yvy7212, ty_Char) -> new_ltEs8(yvy7012, yvy7212) new_lt21(yvy7010, yvy7210, app(app(ty_@2, bbd), bbe)) -> new_lt12(yvy7010, yvy7210, bbd, bbe) new_lt13(yvy700, yvy720, ty_Bool) -> new_lt7(yvy700, yvy720) new_compare31(yvy7000, yvy7200, ty_Double) -> new_compare15(yvy7000, yvy7200) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_compare9(yvy700, yvy720, bfd) -> new_compare24(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, dbe), dbf)) -> new_esEs4(yvy4001, yvy3001, dbe, dbf) new_esEs22(yvy4000, yvy3000, ty_@0) -> new_esEs10(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Ratio, ddb)) -> new_lt15(yvy7010, yvy7210, ddb) new_lt20(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_esEs22(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(app(ty_Either, cab), cac)) -> new_esEs4(yvy4000, yvy3000, cab, cac) new_compare31(yvy7000, yvy7200, ty_Float) -> new_compare30(yvy7000, yvy7200) new_esEs28(yvy7011, yvy7211, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy7011, yvy7211, fg, fh) new_ltEs18(yvy701, yvy721, app(ty_Ratio, cde)) -> new_ltEs10(yvy701, yvy721, cde) new_ltEs7(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs13(yvy7010, yvy7210, bc, bd, be) new_ltEs9(True, False) -> False new_esEs9(EQ, EQ) -> True new_esEs28(yvy7011, yvy7211, ty_Integer) -> new_esEs12(yvy7011, yvy7211) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare15(Double(yvy7000, Pos(yvy70010)), Double(yvy7200, Pos(yvy72010))) -> new_compare16(new_sr(yvy7000, Pos(yvy72010)), new_sr(Pos(yvy70010), yvy7200)) new_esEs29(yvy7010, yvy7210, app(app(ty_Either, baf), bag)) -> new_esEs4(yvy7010, yvy7210, baf, bag) new_lt21(yvy7010, yvy7210, ty_Ordering) -> new_lt4(yvy7010, yvy7210) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_ltEs18(yvy701, yvy721, ty_@0) -> new_ltEs15(yvy701, yvy721) new_compare31(yvy7000, yvy7200, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare10(yvy7000, yvy7200, bde, bdf, bdg) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy701, yvy721, app(ty_Maybe, cea)) -> new_ltEs5(yvy701, yvy721, cea) new_ltEs5(Just(yvy7010), Just(yvy7210), app(ty_Ratio, dde)) -> new_ltEs10(yvy7010, yvy7210, dde) new_esEs21(yvy700, yvy720, app(ty_Maybe, bfd)) -> new_esEs7(yvy700, yvy720, bfd) new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_compare28(yvy700, yvy720, False) -> new_compare111(yvy700, yvy720, new_ltEs6(yvy700, yvy720)) new_lt19(yvy7011, yvy7211, app(ty_[], gb)) -> new_lt9(yvy7011, yvy7211, gb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bff) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy700, yvy720, ty_Char) -> new_esEs17(yvy700, yvy720) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs27(yvy7010, yvy7210, app(ty_Ratio, ddb)) -> new_esEs11(yvy7010, yvy7210, ddb) new_lt21(yvy7010, yvy7210, app(ty_Ratio, ddf)) -> new_lt15(yvy7010, yvy7210, ddf) new_primCmpInt(Neg(Zero), Neg(Succ(yvy7200))) -> new_primCmpNat0(Succ(yvy7200), Zero) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_[], dbd)) -> new_esEs16(yvy4001, yvy3001, dbd) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Float) -> new_ltEs17(yvy7010, yvy7210) new_compare13(yvy700, yvy720, True, bef, beg, beh) -> LT new_esEs24(yvy4000, yvy3000, app(app(ty_Either, dac), dad)) -> new_esEs4(yvy4000, yvy3000, dac, dad) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dbg)) -> new_esEs7(yvy4002, yvy3002, dbg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(yvy4000, yvy3000, app(app(ty_Either, cbe), cbf)) -> new_esEs4(yvy4000, yvy3000, cbe, cbf) new_compare31(yvy7000, yvy7200, ty_Char) -> new_compare7(yvy7000, yvy7200) new_lt4(yvy700, yvy720) -> new_esEs9(new_compare5(yvy700, yvy720), LT) new_lt19(yvy7011, yvy7211, ty_Bool) -> new_lt7(yvy7011, yvy7211) new_compare12(yvy700, yvy720, True, bfd) -> LT new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy7010, yvy7210, app(ty_Maybe, hb)) -> new_esEs7(yvy7010, yvy7210, hb) new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bff) -> new_esEs14(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy7011, yvy7211, app(app(ty_@2, fg), fh)) -> new_lt12(yvy7011, yvy7211, fg, fh) new_lt19(yvy7011, yvy7211, app(app(app(ty_@3, fc), fd), ff)) -> new_lt6(yvy7011, yvy7211, fc, fd, ff) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_not(False) -> True new_esEs21(yvy700, yvy720, ty_Double) -> new_esEs14(yvy700, yvy720) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_compare15(Double(yvy7000, Neg(yvy70010)), Double(yvy7200, Neg(yvy72010))) -> new_compare16(new_sr(yvy7000, Neg(yvy72010)), new_sr(Neg(yvy70010), yvy7200)) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_[], ca), bb) -> new_ltEs4(yvy7010, yvy7210, ca) new_esEs22(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs13(yvy4000, yvy3000) new_esEs9(GT, GT) -> True new_lt19(yvy7011, yvy7211, app(app(ty_Either, eh), fa)) -> new_lt5(yvy7011, yvy7211, eh, fa) new_compare0(:(yvy7000, yvy7001), [], bdb) -> GT new_compare14(yvy700, yvy720) -> new_compare26(yvy700, yvy720, new_esEs8(yvy700, yvy720)) new_esEs28(yvy7011, yvy7211, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(yvy7011, yvy7211, fc, fd, ff) new_esEs10(@0, @0) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], ccg)) -> new_esEs16(yvy4000, yvy3000, ccg) new_ltEs10(yvy701, yvy721, cde) -> new_fsEs(new_compare27(yvy701, yvy721, cde)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs14(yvy4001, yvy3001) new_lt17(yvy700, yvy720) -> new_esEs9(new_compare30(yvy700, yvy720), LT) new_esEs27(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_compare110(yvy172, yvy173, yvy174, yvy175, False, cdb, cdc) -> GT new_primPlusNat0(Succ(yvy2220), yvy301000) -> Succ(Succ(new_primPlusNat1(yvy2220, yvy301000))) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cgh, cha, chb) -> new_asAs(new_esEs24(yvy4000, yvy3000, cgh), new_asAs(new_esEs25(yvy4001, yvy3001, cha), new_esEs26(yvy4002, yvy3002, chb))) new_esEs29(yvy7010, yvy7210, ty_@0) -> new_esEs10(yvy7010, yvy7210) new_esEs29(yvy7010, yvy7210, app(app(ty_@2, bbd), bbe)) -> new_esEs6(yvy7010, yvy7210, bbd, bbe) new_ltEs18(yvy701, yvy721, ty_Float) -> new_ltEs17(yvy701, yvy721) new_esEs8(True, True) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Ordering) -> new_ltEs6(yvy7010, yvy7210) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs13(yvy4002, yvy3002) new_compare0(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_primCompAux0(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Bool) -> new_ltEs9(yvy7010, yvy7210) new_lt16(yvy700, yvy720) -> new_esEs9(new_compare16(yvy700, yvy720), LT) new_esEs28(yvy7011, yvy7211, app(app(ty_Either, eh), fa)) -> new_esEs4(yvy7011, yvy7211, eh, fa) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(app(ty_@2, da), db)) -> new_ltEs14(yvy7010, yvy7210, da, db) new_esEs21(yvy700, yvy720, app(ty_[], bdb)) -> new_esEs16(yvy700, yvy720, bdb) new_esEs28(yvy7011, yvy7211, ty_Ordering) -> new_esEs9(yvy7011, yvy7211) new_compare11(yvy700, yvy720, True) -> LT new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_lt21(yvy7010, yvy7210, app(ty_Maybe, bbf)) -> new_lt18(yvy7010, yvy7210, bbf) new_esEs21(yvy700, yvy720, ty_Integer) -> new_esEs12(yvy700, yvy720) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dcg), dch)) -> new_esEs4(yvy4002, yvy3002, dcg, dch) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Integer) -> new_ltEs12(yvy7010, yvy7210) new_lt21(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_primMulNat0(Succ(yvy401100), Succ(yvy301000)) -> new_primPlusNat0(new_primMulNat0(yvy401100, Succ(yvy301000)), yvy301000) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, app(ty_Ratio, cdg)) -> new_ltEs10(yvy7010, yvy7210, cdg) new_compare7(Char(yvy7000), Char(yvy7200)) -> new_primCmpNat0(yvy7000, yvy7200) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Char) -> new_ltEs8(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_@0) -> new_compare8(yvy7000, yvy7200) new_primCmpNat0(Succ(yvy70000), Succ(yvy72000)) -> new_primCmpNat0(yvy70000, yvy72000) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs5(yvy4002, yvy3002, dcc, dcd, dce) new_lt21(yvy7010, yvy7210, app(app(app(ty_@3, bba), bbb), bbc)) -> new_lt6(yvy7010, yvy7210, bba, bbb, bbc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs14(yvy4000, yvy3000) new_compare19(yvy172, yvy173, yvy174, yvy175, True, yvy177, cdb, cdc) -> new_compare110(yvy172, yvy173, yvy174, yvy175, True, cdb, cdc) new_esEs20(yvy4001, yvy3001, ty_Integer) -> new_esEs12(yvy4001, yvy3001) new_compare110(yvy172, yvy173, yvy174, yvy175, True, cdb, cdc) -> LT new_esEs24(yvy4000, yvy3000, app(ty_Ratio, chf)) -> new_esEs11(yvy4000, yvy3000, chf) new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_lt13(yvy700, yvy720, ty_Double) -> new_lt8(yvy700, yvy720) new_esEs28(yvy7011, yvy7211, ty_Int) -> new_esEs13(yvy7011, yvy7211) new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_lt20(yvy7010, yvy7210, app(ty_Maybe, hb)) -> new_lt18(yvy7010, yvy7210, hb) new_ltEs20(yvy7011, yvy7211, ty_Ordering) -> new_ltEs6(yvy7011, yvy7211) new_lt13(yvy700, yvy720, app(ty_Ratio, cdh)) -> new_lt15(yvy700, yvy720, cdh) new_compare31(yvy7000, yvy7200, app(ty_Maybe, beb)) -> new_compare9(yvy7000, yvy7200, beb) new_lt20(yvy7010, yvy7210, ty_Bool) -> new_lt7(yvy7010, yvy7210) new_compare31(yvy7000, yvy7200, ty_Integer) -> new_compare18(yvy7000, yvy7200) new_ltEs15(yvy701, yvy721) -> new_fsEs(new_compare8(yvy701, yvy721)) new_esEs16(:(yvy4000, yvy4001), [], cad) -> False new_esEs16([], :(yvy3000, yvy3001), cad) -> False new_lt5(yvy700, yvy720, bed, bee) -> new_esEs9(new_compare6(yvy700, yvy720, bed, bee), LT) new_esEs23(yvy4001, yvy3001, app(ty_[], cge)) -> new_esEs16(yvy4001, yvy3001, cge) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bgc), bgd), bge), bff) -> new_esEs5(yvy4000, yvy3000, bgc, bgd, bge) new_esEs27(yvy7010, yvy7210, ty_Float) -> new_esEs15(yvy7010, yvy7210) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs7(Right(yvy7010), Right(yvy7210), cb, ty_Int) -> new_ltEs16(yvy7010, yvy7210) new_compare8(@0, @0) -> EQ new_esEs18(yvy4000, yvy3000, app(ty_Maybe, cae)) -> new_esEs7(yvy4000, yvy3000, cae) new_lt21(yvy7010, yvy7210, app(app(ty_Either, baf), bag)) -> new_lt5(yvy7010, yvy7210, baf, bag) new_lt20(yvy7010, yvy7210, app(app(app(ty_@3, ge), gf), gg)) -> new_lt6(yvy7010, yvy7210, ge, gf, gg) new_ltEs20(yvy7011, yvy7211, app(ty_[], bae)) -> new_ltEs4(yvy7011, yvy7211, bae) new_esEs27(yvy7010, yvy7210, ty_Int) -> new_esEs13(yvy7010, yvy7210) new_primEqNat0(Zero, Zero) -> True new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, dah)) -> new_esEs11(yvy4001, yvy3001, dah) new_esEs18(yvy4000, yvy3000, app(app(ty_@2, caf), cag)) -> new_esEs6(yvy4000, yvy3000, caf, cag) new_compare211(yvy700, yvy720, False, bef, beg, beh) -> new_compare13(yvy700, yvy720, new_ltEs13(yvy700, yvy720, bef, beg, beh), bef, beg, beh) new_lt20(yvy7010, yvy7210, app(app(ty_Either, gc), gd)) -> new_lt5(yvy7010, yvy7210, gc, gd) new_ltEs7(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bh), bb) -> new_ltEs5(yvy7010, yvy7210, bh) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, app(ty_[], cfc)) -> new_esEs16(yvy4000, yvy3000, cfc) new_ltEs19(yvy7012, yvy7212, app(ty_[], eg)) -> new_ltEs4(yvy7012, yvy7212, eg) new_asAs(False, yvy163) -> False new_esEs29(yvy7010, yvy7210, ty_Ordering) -> new_esEs9(yvy7010, yvy7210) new_ltEs20(yvy7011, yvy7211, ty_Float) -> new_ltEs17(yvy7011, yvy7211) new_esEs29(yvy7010, yvy7210, app(ty_Maybe, bbf)) -> new_esEs7(yvy7010, yvy7210, bbf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs27(yvy7010, yvy7210, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy7010, yvy7210, gc, gd) new_ltEs5(Just(yvy7010), Just(yvy7210), ty_Double) -> new_ltEs11(yvy7010, yvy7210) new_esEs4(Right(yvy4000), Right(yvy3000), bha, app(ty_[], caa)) -> new_esEs16(yvy4000, yvy3000, caa) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs13(yvy7010, yvy7210, bcb, bcc, bcd) new_esEs29(yvy7010, yvy7210, ty_Bool) -> new_esEs8(yvy7010, yvy7210) new_ltEs5(Just(yvy7010), Just(yvy7210), app(app(ty_Either, bbh), bca)) -> new_ltEs7(yvy7010, yvy7210, bbh, bca) new_ltEs6(GT, LT) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bha, ty_Bool) -> new_esEs8(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs19(yvy7012, yvy7212, ty_Float) -> new_ltEs17(yvy7012, yvy7212) new_esEs27(yvy7010, yvy7210, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs5(yvy7010, yvy7210, ge, gf, gg) The set Q consists of the following terms: new_compare7(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_compare26(x0, x1, True) new_lt19(x0, x1, ty_Char) new_ltEs5(Nothing, Nothing, x0) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Integer(x0), Integer(x1)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Zero) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt19(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs5(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare29(x0, x1, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(LT, LT) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare25(x0, x1, True, x2, x3) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs22(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt13(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare111(x0, x1, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) new_compare31(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_compare16(x0, x1) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulNat0(Zero, Succ(x0)) new_compare31(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare28(x0, x1, True) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs7(Nothing, Nothing, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs5(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs9(True, True) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare31(x0, x1, ty_@0) new_esEs9(LT, LT) new_esEs21(x0, x1, ty_Int) new_compare211(x0, x1, True, x2, x3, x4) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Char) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Int) new_ltEs12(x0, x1) new_lt15(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs8(False, True) new_esEs8(True, False) new_compare13(x0, x1, True, x2, x3, x4) new_esEs8(True, True) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCompAux00(x0, GT) new_pePe(False, x0) new_lt19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs17(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(@0, @0) new_lt8(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCompAux00(x0, EQ) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, ty_Integer) new_compare10(x0, x1, x2, x3, x4) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Integer) new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1, x2) new_primPlusNat1(Succ(x0), Zero) new_compare26(x0, x1, False) new_compare31(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, False) new_esEs22(x0, x1, ty_Integer) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(True, x0) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs19(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt13(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs27(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_lt7(x0, x1) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_Integer) new_esEs16([], [], x0) new_ltEs9(False, True) new_lt19(x0, x1, ty_@0) new_ltEs9(True, False) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Just(x0), Just(x1), ty_Double) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs4(x0, x1, x2) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_ltEs6(LT, GT) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, True, x2, x3) new_ltEs6(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Ordering) new_compare111(x0, x1, False) new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(EQ, GT) new_ltEs6(GT, EQ) new_esEs7(Nothing, Just(x0), x1) new_lt13(x0, x1, ty_Integer) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, True, x2) new_esEs26(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_primPlusNat0(Zero, x0) new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_esEs10(@0, @0) new_esEs24(x0, x1, ty_@0) new_lt13(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Float) new_esEs13(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_compare24(x0, x1, False, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16([], :(x0, x1), x2) new_esEs19(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Int) new_esEs9(EQ, EQ) new_ltEs18(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_compare6(x0, x1, x2, x3) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs7(Just(x0), Nothing, x1) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs25(x0, x1, ty_Int) new_compare5(x0, x1) new_lt13(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs23(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(EQ, EQ) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt13(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCompAux00(x0, LT) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Int) new_ltEs11(x0, x1) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Nothing, Just(x0), x1) new_lt13(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_compare17(x0, x1, False, x2, x3) new_compare211(x0, x1, False, x2, x3, x4) new_lt21(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt17(x0, x1) new_not(True) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, False, x2, x3, x4) new_lt9(x0, x1, x2) new_esEs23(x0, x1, ty_Bool) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], [], x0) new_esEs18(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs15(x0, x1) new_compare110(x0, x1, x2, x3, False, x4, x5) new_esEs28(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_compare12(x0, x1, False, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare31(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs17(x0, x1) new_ltEs18(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt11(x0, x1) new_esEs9(GT, GT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs16(:(x0, x1), [], x2) new_compare11(x0, x1, True) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs5(Just(x0), Nothing, x1) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Just(x0), Just(x1), ty_Char) new_ltEs6(GT, GT) new_esEs28(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Bool) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare25(x0, x1, False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare24(x0, x1, True, x2) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_lt21(x0, x1, ty_Double) new_lt18(x0, x1, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs5(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False) new_lt13(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Bool) new_compare0([], :(x0, x1), x2) new_esEs29(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs16(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs14(Double(x0, x1), Double(x2, x3)) new_compare210(x0, x1, True, x2, x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs9(False, False) new_not(False) new_lt16(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Char) new_ltEs5(Just(x0), Just(x1), ty_Bool) new_esEs8(False, False) new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs8(x0, x1) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare0(:(x0, x1), [], x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs18(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare9(x0, x1, x2) new_esEs24(x0, x1, ty_Float) new_lt12(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_lt5(x0, x1, x2, x3) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (89) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_ltEs3(yvy701, yvy721, bda) -> new_compare(yvy701, yvy721, bda) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare4(yvy700, yvy720, bfd) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt1(yvy700, yvy720, bfa, bfb) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(yvy7012, yvy7212, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(yvy7012, yvy7212, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(app(ty_@2, ed), ee)) -> new_ltEs1(yvy7012, yvy7212, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(yvy700, yvy720, False, bef, beg, beh) -> new_ltEs0(yvy700, yvy720, bef, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt0(yvy700, yvy720, bef, beg, beh) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(ty_Either, bbh), bca)) -> new_ltEs(yvy7010, yvy7210, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(yvy7010, yvy7210, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Just(yvy7010), Just(yvy7210), app(app(ty_@2, bce), bcf)) -> new_ltEs1(yvy7010, yvy7210, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(yvy700, yvy720, False, bed, bee) -> new_ltEs(yvy700, yvy720, bed, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(ty_Either, he), hf)) -> new_ltEs(yvy7011, yvy7211, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(yvy7011, yvy7211, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(app(ty_@2, bab), bac)) -> new_ltEs1(yvy7011, yvy7211, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt(yvy700, yvy720, bed, bee) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt2(yvy700, yvy720, bfd) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare23(yvy700, yvy720, False, bfd) -> new_ltEs2(yvy700, yvy720, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(ty_Maybe, bfd), bfc) -> new_compare23(yvy700, yvy720, new_esEs7(yvy700, yvy720, bfd), bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_primCompAux(yvy7000, yvy7200, yvy196, app(app(app(ty_@3, bde), bdf), bdg)) -> new_compare2(yvy7000, yvy7200, bde, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_lt3(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_compare(yvy7001, yvy7201, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare3(yvy700, yvy720, bfa, bfb) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(ty_@2, bfa), bfb), bfc) -> new_compare22(yvy700, yvy720, new_esEs6(yvy700, yvy720, bfa, bfb), bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare1(yvy700, yvy720, bed, bee) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(@2(:(yvy7000, yvy7001), yvy701), @2(:(yvy7200, yvy7201), yvy721), False, app(ty_[], bdb), bfc) -> new_primCompAux(yvy7000, yvy7200, new_compare0(yvy7001, yvy7201, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(ty_[], bbg), bah) -> new_lt3(yvy7010, yvy7210, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(yvy7000, yvy7001), :(yvy7200, yvy7201), bdb) -> new_compare(yvy7001, yvy7201, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(app(ty_@3, bef), beg), beh), bfc) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_compare2(yvy700, yvy720, bef, beg, beh) -> new_compare21(yvy700, yvy720, new_esEs5(yvy700, yvy720, bef, beg, beh), bef, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, app(app(ty_Either, bed), bee), bfc) -> new_compare20(yvy700, yvy720, new_esEs4(yvy700, yvy720, bed, bee), bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(ty_[], eg)) -> new_ltEs3(yvy7012, yvy7212, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(yvy7010), Just(yvy7210), app(ty_[], bch)) -> new_ltEs3(yvy7010, yvy7210, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(yvy7010), Just(yvy7210), app(ty_Maybe, bcg)) -> new_ltEs2(yvy7010, yvy7210, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(ty_[], bae)) -> new_ltEs3(yvy7011, yvy7211, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, df, app(ty_Maybe, ef)) -> new_ltEs2(yvy7012, yvy7212, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), hd, app(ty_Maybe, bad)) -> new_ltEs2(yvy7011, yvy7211, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(ty_Maybe, bbf), bah) -> new_lt2(yvy7010, yvy7210, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(yvy7000, yvy7200, yvy196, app(app(ty_@2, bdh), bea)) -> new_compare3(yvy7000, yvy7200, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(yvy7000, yvy7200, yvy196, app(ty_Maybe, beb)) -> new_compare4(yvy7000, yvy7200, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(ty_@2, bbd), bbe), bah) -> new_lt1(yvy7010, yvy7210, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(yvy7000, yvy7200, yvy196, app(ty_[], bec)) -> new_compare(yvy7000, yvy7200, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(yvy7000, yvy7200, yvy196, app(app(ty_Either, bdc), bdd)) -> new_compare1(yvy7000, yvy7200, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(ty_Either, baf), bag), bah) -> new_lt(yvy7010, yvy7210, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(yvy7010, yvy7011), @2(yvy7210, yvy7211), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(yvy7010, yvy7210, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Left(yvy7010), Left(yvy7210), app(app(ty_Either, h), ba), bb) -> new_ltEs(yvy7010, yvy7210, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(yvy7010, yvy7210, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(ty_Either, he), hf))) -> new_ltEs(yvy7011, yvy7211, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(yvy7012, yvy7212, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(yvy7010, yvy7210, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(yvy7010, yvy7210, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(ty_Either, bbh), bca))) -> new_ltEs(yvy7010, yvy7210, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(yvy7010), Left(yvy7210), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(yvy7010, yvy7210, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(yvy7010, yvy7210, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(app(ty_@2, da), db)) -> new_ltEs1(yvy7010, yvy7210, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(yvy7010), Left(yvy7210), app(app(ty_@2, bf), bg), bb) -> new_ltEs1(yvy7010, yvy7210, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(yvy7010), Left(yvy7210), app(ty_[], ca), bb) -> new_ltEs3(yvy7010, yvy7210, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(ty_[], dd)) -> new_ltEs3(yvy7010, yvy7210, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Right(yvy7010), Right(yvy7210), cb, app(ty_Maybe, dc)) -> new_ltEs2(yvy7010, yvy7210, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(yvy7010), Left(yvy7210), app(ty_Maybe, bh), bb) -> new_ltEs2(yvy7010, yvy7210, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(ty_[], hc), df, fb) -> new_lt3(yvy7010, yvy7210, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(ty_[], gb), fb) -> new_lt3(yvy7011, yvy7211, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(ty_Maybe, hb), df, fb) -> new_lt2(yvy7010, yvy7210, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(ty_Maybe, ga), fb) -> new_lt2(yvy7011, yvy7211, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(ty_@2, fg), fh), fb) -> new_lt1(yvy7011, yvy7211, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(ty_@2, gh), ha), df, fb) -> new_lt1(yvy7010, yvy7210, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(ty_Either, eh), fa), fb) -> new_lt(yvy7011, yvy7211, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(ty_Either, gc), gd), df, fb) -> new_lt(yvy7010, yvy7210, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_lt0(yvy7010, yvy7210, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy7010, yvy7011, yvy7012), @3(yvy7210, yvy7211, yvy7212), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(yvy7011, yvy7211, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(yvy7010, yvy7210, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(yvy7012, yvy7212, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(yvy7010, yvy7210, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(yvy7010, yvy7210, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs0(yvy7011, yvy7211, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(app(ty_@2, da), db))) -> new_ltEs1(yvy7010, yvy7210, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(app(ty_@2, bab), bac))) -> new_ltEs1(yvy7011, yvy7211, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(app(ty_@2, bf), bg)), bb)) -> new_ltEs1(yvy7010, yvy7210, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(app(ty_@2, ed), ee))) -> new_ltEs1(yvy7012, yvy7212, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(app(ty_@2, bce), bcf))) -> new_ltEs1(yvy7010, yvy7210, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(ty_[], bbg)), bah)) -> new_lt3(yvy7010, yvy7210, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(ty_[], hc)), df), fb)) -> new_lt3(yvy7010, yvy7210, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(ty_[], gb)), fb)) -> new_lt3(yvy7011, yvy7211, gb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(ty_[], bae))) -> new_ltEs3(yvy7011, yvy7211, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(ty_[], ca)), bb)) -> new_ltEs3(yvy7010, yvy7210, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(ty_[], dd))) -> new_ltEs3(yvy7010, yvy7210, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(ty_[], bch))) -> new_ltEs3(yvy7010, yvy7210, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(ty_[], eg))) -> new_ltEs3(yvy7012, yvy7212, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, hd), app(ty_Maybe, bad))) -> new_ltEs2(yvy7011, yvy7211, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), df), app(ty_Maybe, ef))) -> new_ltEs2(yvy7012, yvy7212, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Just(yvy7010)), @2(yvy720, Just(yvy7210)), False, bfe, app(ty_Maybe, app(ty_Maybe, bcg))) -> new_ltEs2(yvy7010, yvy7210, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Right(yvy7010)), @2(yvy720, Right(yvy7210)), False, bfe, app(app(ty_Either, cb), app(ty_Maybe, dc))) -> new_ltEs2(yvy7010, yvy7210, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, Left(yvy7010)), @2(yvy720, Left(yvy7210)), False, bfe, app(app(ty_Either, app(ty_Maybe, bh)), bb)) -> new_ltEs2(yvy7010, yvy7210, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(ty_Maybe, hb)), df), fb)) -> new_lt2(yvy7010, yvy7210, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(ty_Maybe, bbf)), bah)) -> new_lt2(yvy7010, yvy7210, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(ty_Maybe, ga)), fb)) -> new_lt2(yvy7011, yvy7211, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), bah)) -> new_lt1(yvy7010, yvy7210, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), df), fb)) -> new_lt1(yvy7010, yvy7210, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(ty_@2, fg), fh)), fb)) -> new_lt1(yvy7011, yvy7211, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(:(yvy7000, yvy7001), yvy701), @2(:(yvy7200, yvy7201), yvy721), False, app(ty_[], bdb), bfc) -> new_compare(yvy7001, yvy7201, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(@2(yvy700, yvy701), @2(yvy720, yvy721), False, bfe, app(ty_[], bda)) -> new_compare(yvy701, yvy721, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_lt(yvy7010, yvy7210, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(yvy7011, yvy7211, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(ty_Either, baf), bag)), bah)) -> new_lt(yvy7010, yvy7210, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(@2(yvy700, @2(yvy7010, yvy7011)), @2(yvy720, @2(yvy7210, yvy7211)), False, bfe, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah)) -> new_lt0(yvy7010, yvy7210, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(yvy7011, yvy7211, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(@2(yvy700, @3(yvy7010, yvy7011, yvy7012)), @2(yvy720, @3(yvy7210, yvy7211, yvy7212)), False, bfe, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_lt0(yvy7010, yvy7210, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 ---------------------------------------- (90) YES