/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 9 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 105 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) DependencyGraphProof [EQUIVALENT, 0 ms] (40) AND (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPOrderProof [EQUIVALENT, 96 ms] (49) QDP (50) DependencyGraphProof [EQUIVALENT, 0 ms] (51) AND (52) QDP (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] (54) YES (55) QDP (56) QDPOrderProof [EQUIVALENT, 0 ms] (57) QDP (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] (59) YES (60) QDP (61) DependencyGraphProof [EQUIVALENT, 0 ms] (62) AND (63) QDP (64) QDPSizeChangeProof [EQUIVALENT, 0 ms] (65) YES (66) QDP (67) QDPSizeChangeProof [EQUIVALENT, 0 ms] (68) YES (69) QDP (70) QDPSizeChangeProof [EQUIVALENT, 0 ms] (71) YES (72) QDP (73) QDPSizeChangeProof [EQUIVALENT, 0 ms] (74) YES (75) QDP (76) QDPSizeChangeProof [EQUIVALENT, 0 ms] (77) YES (78) QDP (79) QDPSizeChangeProof [EQUIVALENT, 0 ms] (80) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C (\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 b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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 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 = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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; } ---------------------------------------- (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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) | sIZE_RATIO * size_l < size_r = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; " "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wwz wxu = gcd3 wwz wxu; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } ; " "gcd1 True wwz wxu = error []; gcd1 wxv wxw wxx = gcd0 wxw wxx; " "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; gcd2 wxy wxz wyu = gcd0 wxz wyu; " "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; gcd3 wyv wyw = gcd0 wyv wyw; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; " The following Function with conditions "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz)|sIZE_RATIO * size_l < size_rmkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz|sIZE_RATIO * size_r < size_lmkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz))|otherwisemkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " is transformed to "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; " "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; " The following Function with conditions "splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key|split_key > keysplitGT fm_r split_key|split_key < keymkVBalBranch key elt (splitGT fm_l split_key) fm_r|otherwisefm_r; " is transformed to "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; " "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; " "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; " "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); " "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); " "splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; " The following Function with conditions "splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key|split_key < keysplitLT fm_l split_key|split_key > keymkVBalBranch key elt fm_l (splitLT fm_r split_key)|otherwisefm_l; " is transformed to "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; " "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; " "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); " "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; " "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); " "splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: 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'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D xxv xxw = gcd xxv xxw; " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; " "mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); " "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); " "mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; " "mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); " "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; " "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; " "mkBranchBalance_ok xyv xyw xyx = True; " "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; " "mkBranchRight_size xyv xyw xyx = sizeFM xyv; " "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchLeft_size xyv xyw xyx = sizeFM xyx; " "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; " The bindings of the following Let/Where expression "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; ; lts = splitLT fm1 split_key; } " are unpacked to the following functions on top level "plusFMGts xzw xzx = splitGT xzw xzx; " "plusFMLts xzw xzx = splitLT xzw xzx; " The bindings of the following Let/Where expression "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } " are unpacked to the following functions on top level "mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); " "mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; " "mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); " "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyx; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyv; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: 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; } ---------------------------------------- (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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap 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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xxx xxy fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyx; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyv; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: 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"];4536[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4536[label="",style="solid", color="burlywood", weight=9]; 4536 -> 5[label="",style="solid", color="burlywood", weight=3]; 4537[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4537[label="",style="solid", color="burlywood", weight=9]; 4537 -> 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"];4538[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4538[label="",style="solid", color="burlywood", weight=9]; 4538 -> 8[label="",style="solid", color="burlywood", weight=3]; 4539[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4539[label="",style="solid", color="burlywood", weight=9]; 4539 -> 9[label="",style="solid", color="burlywood", weight=3]; 7[label="yvy4",fontsize=16,color="green",shape="box"];8[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) (FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43) (FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44)",fontsize=16,color="magenta"];11 -> 13[label="",style="dashed", color="magenta", weight=3]; 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 13 -> 4[label="",style="dashed", color="red", weight=0]; 13[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 14 -> 4[label="",style="dashed", color="red", weight=0]; 14[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];4540[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4540[label="",style="solid", color="burlywood", weight=9]; 4540 -> 19[label="",style="solid", color="burlywood", weight=3]; 4541[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4541[label="",style="solid", color="burlywood", weight=9]; 4541 -> 20[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 16[label="yvy44",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 18[label="yvy43",fontsize=16,color="green",shape="box"];19[label="FiniteMap.mkVBalBranch yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];4542[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4542[label="",style="solid", color="burlywood", weight=9]; 4542 -> 24[label="",style="solid", color="burlywood", weight=3]; 4543[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4543[label="",style="solid", color="burlywood", weight=9]; 4543 -> 25[label="",style="solid", color="burlywood", weight=3]; 21[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 24[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];24 -> 29[label="",style="solid", color="black", weight=3]; 25[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];25 -> 30[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 27[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.mkVBalBranch4 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];29 -> 34[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.mkVBalBranch3 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];30 -> 35[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="black",shape="box"];31 -> 36[label="",style="solid", color="black", weight=3]; 32[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="black",shape="box"];32 -> 37[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];4544[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4544[label="",style="solid", color="burlywood", weight=9]; 4544 -> 38[label="",style="solid", color="burlywood", weight=3]; 4545[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4545[label="",style="solid", color="burlywood", weight=9]; 4545 -> 39[label="",style="solid", color="burlywood", weight=3]; 34 -> 28[label="",style="dashed", color="red", weight=0]; 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 40[label="",style="dashed", color="magenta", weight=3]; 35[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="black",shape="box"];35 -> 41[label="",style="solid", color="black", weight=3]; 36[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];36 -> 42[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",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.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];42 -> 47[label="",style="solid", color="black", weight=3]; 43[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == LT)",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.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4546[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4546[label="",style="solid", color="burlywood", weight=9]; 4546 -> 52[label="",style="solid", color="burlywood", weight=3]; 4547[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 53[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4548[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 54[label="",style="solid", color="burlywood", weight=3]; 4549[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 55[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];49 -> 56[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 -> 57[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 -> 58[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing yvy30 (Nothing == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4550[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];52 -> 4550[label="",style="solid", color="burlywood", weight=9]; 4550 -> 59[label="",style="solid", color="burlywood", weight=3]; 4551[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 4551[label="",style="solid", color="burlywood", weight=9]; 4551 -> 60[label="",style="solid", color="burlywood", weight=3]; 53[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];4552[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 4552[label="",style="solid", color="burlywood", weight=9]; 4552 -> 61[label="",style="solid", color="burlywood", weight=3]; 4553[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 4553[label="",style="solid", color="burlywood", weight=9]; 4553 -> 62[label="",style="solid", color="burlywood", weight=3]; 54[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing yvy30 (Nothing == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4554[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];54 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 63[label="",style="solid", color="burlywood", weight=3]; 4555[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 4555[label="",style="solid", color="burlywood", weight=9]; 4555 -> 64[label="",style="solid", color="burlywood", weight=3]; 55[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];4556[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];55 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 65[label="",style="solid", color="burlywood", weight=3]; 4557[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 66[label="",style="solid", color="burlywood", weight=3]; 56[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];56 -> 67[label="",style="dashed", color="green", weight=3]; 56 -> 68[label="",style="dashed", color="green", weight=3]; 57[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];57 -> 69[label="",style="solid", color="black", weight=3]; 58[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"];58 -> 70[label="",style="solid", color="black", weight=3]; 59[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == GT)",fontsize=16,color="black",shape="box"];59 -> 71[label="",style="solid", color="black", weight=3]; 60[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) (Nothing == Just yvy300) == GT)",fontsize=16,color="black",shape="box"];60 -> 72[label="",style="solid", color="black", weight=3]; 61[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == GT)",fontsize=16,color="black",shape="box"];61 -> 73[label="",style="solid", color="black", weight=3]; 62[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300) == GT)",fontsize=16,color="black",shape="box"];62 -> 74[label="",style="solid", color="black", weight=3]; 63[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];63 -> 75[label="",style="solid", color="black", weight=3]; 64[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) (Nothing == Just yvy300) == LT)",fontsize=16,color="black",shape="box"];64 -> 76[label="",style="solid", color="black", weight=3]; 65[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == LT)",fontsize=16,color="black",shape="box"];65 -> 77[label="",style="solid", color="black", weight=3]; 66[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300) == LT)",fontsize=16,color="black",shape="box"];66 -> 78[label="",style="solid", color="black", weight=3]; 67[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];67 -> 79[label="",style="solid", color="black", weight=3]; 68 -> 67[label="",style="dashed", color="red", weight=0]; 68[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];69[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare3 yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];69 -> 80[label="",style="solid", color="black", weight=3]; 70[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.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"];70 -> 81[label="",style="solid", color="black", weight=3]; 71[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing True == GT)",fontsize=16,color="black",shape="box"];71 -> 82[label="",style="solid", color="black", weight=3]; 72 -> 211[label="",style="dashed", color="red", weight=0]; 72[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) False == GT)",fontsize=16,color="magenta"];72 -> 212[label="",style="dashed", color="magenta", weight=3]; 73 -> 220[label="",style="dashed", color="red", weight=0]; 73[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing False == GT)",fontsize=16,color="magenta"];73 -> 221[label="",style="dashed", color="magenta", weight=3]; 74 -> 266[label="",style="dashed", color="red", weight=0]; 74[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];74 -> 267[label="",style="dashed", color="magenta", weight=3]; 74 -> 268[label="",style="dashed", color="magenta", weight=3]; 74 -> 269[label="",style="dashed", color="magenta", weight=3]; 74 -> 270[label="",style="dashed", color="magenta", weight=3]; 74 -> 271[label="",style="dashed", color="magenta", weight=3]; 74 -> 272[label="",style="dashed", color="magenta", weight=3]; 74 -> 273[label="",style="dashed", color="magenta", weight=3]; 75[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];75 -> 93[label="",style="solid", color="black", weight=3]; 76 -> 178[label="",style="dashed", color="red", weight=0]; 76[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (compare2 Nothing (Just yvy300) False == LT)",fontsize=16,color="magenta"];76 -> 179[label="",style="dashed", color="magenta", weight=3]; 77 -> 186[label="",style="dashed", color="red", weight=0]; 77[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) Nothing False == LT)",fontsize=16,color="magenta"];77 -> 187[label="",style="dashed", color="magenta", weight=3]; 78 -> 295[label="",style="dashed", color="red", weight=0]; 78[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 (Just yvy400) (compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];78 -> 296[label="",style="dashed", color="magenta", weight=3]; 78 -> 297[label="",style="dashed", color="magenta", weight=3]; 78 -> 298[label="",style="dashed", color="magenta", weight=3]; 78 -> 299[label="",style="dashed", color="magenta", weight=3]; 78 -> 300[label="",style="dashed", color="magenta", weight=3]; 78 -> 301[label="",style="dashed", color="magenta", weight=3]; 78 -> 302[label="",style="dashed", color="magenta", weight=3]; 79[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];80[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"];4558[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];80 -> 4558[label="",style="solid", color="burlywood", weight=9]; 4558 -> 104[label="",style="solid", color="burlywood", weight=3]; 4559[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 4559[label="",style="solid", color="burlywood", weight=9]; 4559 -> 105[label="",style="solid", color="burlywood", weight=3]; 81[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"];4560[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 106[label="",style="solid", color="burlywood", weight=3]; 4561[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 107[label="",style="solid", color="burlywood", weight=3]; 82[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (EQ == GT)",fontsize=16,color="black",shape="box"];82 -> 108[label="",style="solid", color="black", weight=3]; 212 -> 115[label="",style="dashed", color="red", weight=0]; 212[label="compare2 Nothing (Just yvy300) False == GT",fontsize=16,color="magenta"];212 -> 216[label="",style="dashed", color="magenta", weight=3]; 212 -> 217[label="",style="dashed", color="magenta", weight=3]; 211[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy41",fontsize=16,color="burlywood",shape="triangle"];4562[label="yvy41/False",fontsize=10,color="white",style="solid",shape="box"];211 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 218[label="",style="solid", color="burlywood", weight=3]; 4563[label="yvy41/True",fontsize=10,color="white",style="solid",shape="box"];211 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 219[label="",style="solid", color="burlywood", weight=3]; 221 -> 115[label="",style="dashed", color="red", weight=0]; 221[label="compare2 (Just yvy400) Nothing False == GT",fontsize=16,color="magenta"];221 -> 225[label="",style="dashed", color="magenta", weight=3]; 221 -> 226[label="",style="dashed", color="magenta", weight=3]; 220[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy42",fontsize=16,color="burlywood",shape="triangle"];4564[label="yvy42/False",fontsize=10,color="white",style="solid",shape="box"];220 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 227[label="",style="solid", color="burlywood", weight=3]; 4565[label="yvy42/True",fontsize=10,color="white",style="solid",shape="box"];220 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 228[label="",style="solid", color="burlywood", weight=3]; 267[label="yvy300",fontsize=16,color="green",shape="box"];268[label="yvy34",fontsize=16,color="green",shape="box"];269[label="yvy32",fontsize=16,color="green",shape="box"];270 -> 115[label="",style="dashed", color="red", weight=0]; 270[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];270 -> 277[label="",style="dashed", color="magenta", weight=3]; 270 -> 278[label="",style="dashed", color="magenta", weight=3]; 271[label="yvy33",fontsize=16,color="green",shape="box"];272[label="yvy400",fontsize=16,color="green",shape="box"];273[label="yvy31",fontsize=16,color="green",shape="box"];266[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) yvy43",fontsize=16,color="burlywood",shape="triangle"];4566[label="yvy43/False",fontsize=10,color="white",style="solid",shape="box"];266 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 279[label="",style="solid", color="burlywood", weight=3]; 4567[label="yvy43/True",fontsize=10,color="white",style="solid",shape="box"];266 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 280[label="",style="solid", color="burlywood", weight=3]; 93[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (EQ == LT)",fontsize=16,color="black",shape="box"];93 -> 127[label="",style="solid", color="black", weight=3]; 179 -> 115[label="",style="dashed", color="red", weight=0]; 179[label="compare2 Nothing (Just yvy300) False == LT",fontsize=16,color="magenta"];179 -> 182[label="",style="dashed", color="magenta", weight=3]; 179 -> 183[label="",style="dashed", color="magenta", weight=3]; 178[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy37",fontsize=16,color="burlywood",shape="triangle"];4568[label="yvy37/False",fontsize=10,color="white",style="solid",shape="box"];178 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 184[label="",style="solid", color="burlywood", weight=3]; 4569[label="yvy37/True",fontsize=10,color="white",style="solid",shape="box"];178 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 185[label="",style="solid", color="burlywood", weight=3]; 187 -> 115[label="",style="dashed", color="red", weight=0]; 187[label="compare2 (Just yvy400) Nothing False == LT",fontsize=16,color="magenta"];187 -> 190[label="",style="dashed", color="magenta", weight=3]; 187 -> 191[label="",style="dashed", color="magenta", weight=3]; 186[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy38",fontsize=16,color="burlywood",shape="triangle"];4570[label="yvy38/False",fontsize=10,color="white",style="solid",shape="box"];186 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 192[label="",style="solid", color="burlywood", weight=3]; 4571[label="yvy38/True",fontsize=10,color="white",style="solid",shape="box"];186 -> 4571[label="",style="solid", color="burlywood", weight=9]; 4571 -> 193[label="",style="solid", color="burlywood", weight=3]; 296[label="yvy32",fontsize=16,color="green",shape="box"];297[label="yvy31",fontsize=16,color="green",shape="box"];298[label="yvy400",fontsize=16,color="green",shape="box"];299[label="yvy300",fontsize=16,color="green",shape="box"];300 -> 115[label="",style="dashed", color="red", weight=0]; 300[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];300 -> 306[label="",style="dashed", color="magenta", weight=3]; 300 -> 307[label="",style="dashed", color="magenta", weight=3]; 301[label="yvy33",fontsize=16,color="green",shape="box"];302[label="yvy34",fontsize=16,color="green",shape="box"];295[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) yvy44",fontsize=16,color="burlywood",shape="triangle"];4572[label="yvy44/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 4572[label="",style="solid", color="burlywood", weight=9]; 4572 -> 308[label="",style="solid", color="burlywood", weight=3]; 4573[label="yvy44/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 4573[label="",style="solid", color="burlywood", weight=9]; 4573 -> 309[label="",style="solid", color="burlywood", weight=3]; 104[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing yvy50 (Nothing == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4574[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];104 -> 4574[label="",style="solid", color="burlywood", weight=9]; 4574 -> 146[label="",style="solid", color="burlywood", weight=3]; 4575[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];104 -> 4575[label="",style="solid", color="burlywood", weight=9]; 4575 -> 147[label="",style="solid", color="burlywood", weight=3]; 105[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) yvy50 (Just yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];4576[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];105 -> 4576[label="",style="solid", color="burlywood", weight=9]; 4576 -> 148[label="",style="solid", color="burlywood", weight=3]; 4577[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];105 -> 4577[label="",style="solid", color="burlywood", weight=9]; 4577 -> 149[label="",style="solid", color="burlywood", weight=3]; 106[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"];106 -> 150[label="",style="solid", color="black", weight=3]; 107[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"];107 -> 151[label="",style="solid", color="black", weight=3]; 108[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];108 -> 152[label="",style="solid", color="black", weight=3]; 216[label="GT",fontsize=16,color="green",shape="box"];217 -> 2502[label="",style="dashed", color="red", weight=0]; 217[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];217 -> 2503[label="",style="dashed", color="magenta", weight=3]; 217 -> 2504[label="",style="dashed", color="magenta", weight=3]; 217 -> 2505[label="",style="dashed", color="magenta", weight=3]; 115[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4578[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];115 -> 4578[label="",style="solid", color="burlywood", weight=9]; 4578 -> 161[label="",style="solid", color="burlywood", weight=3]; 4579[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];115 -> 4579[label="",style="solid", color="burlywood", weight=9]; 4579 -> 162[label="",style="solid", color="burlywood", weight=3]; 4580[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];115 -> 4580[label="",style="solid", color="burlywood", weight=9]; 4580 -> 163[label="",style="solid", color="burlywood", weight=3]; 218[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];218 -> 229[label="",style="solid", color="black", weight=3]; 219[label="FiniteMap.splitGT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];219 -> 230[label="",style="solid", color="black", weight=3]; 225[label="GT",fontsize=16,color="green",shape="box"];226 -> 2502[label="",style="dashed", color="red", weight=0]; 226[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];226 -> 2506[label="",style="dashed", color="magenta", weight=3]; 226 -> 2507[label="",style="dashed", color="magenta", weight=3]; 226 -> 2508[label="",style="dashed", color="magenta", weight=3]; 227[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];227 -> 281[label="",style="solid", color="black", weight=3]; 228[label="FiniteMap.splitGT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];228 -> 282[label="",style="solid", color="black", weight=3]; 277[label="GT",fontsize=16,color="green",shape="box"];278 -> 2502[label="",style="dashed", color="red", weight=0]; 278[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];278 -> 2509[label="",style="dashed", color="magenta", weight=3]; 278 -> 2510[label="",style="dashed", color="magenta", weight=3]; 278 -> 2511[label="",style="dashed", color="magenta", weight=3]; 279[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) False",fontsize=16,color="black",shape="box"];279 -> 317[label="",style="solid", color="black", weight=3]; 280[label="FiniteMap.splitGT2 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];280 -> 318[label="",style="solid", color="black", weight=3]; 127[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];127 -> 177[label="",style="solid", color="black", weight=3]; 182[label="LT",fontsize=16,color="green",shape="box"];183 -> 2502[label="",style="dashed", color="red", weight=0]; 183[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];183 -> 2512[label="",style="dashed", color="magenta", weight=3]; 183 -> 2513[label="",style="dashed", color="magenta", weight=3]; 183 -> 2514[label="",style="dashed", color="magenta", weight=3]; 184[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];184 -> 195[label="",style="solid", color="black", weight=3]; 185[label="FiniteMap.splitLT2 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];185 -> 196[label="",style="solid", color="black", weight=3]; 190[label="LT",fontsize=16,color="green",shape="box"];191 -> 2502[label="",style="dashed", color="red", weight=0]; 191[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];191 -> 2515[label="",style="dashed", color="magenta", weight=3]; 191 -> 2516[label="",style="dashed", color="magenta", weight=3]; 191 -> 2517[label="",style="dashed", color="magenta", weight=3]; 192[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];192 -> 206[label="",style="solid", color="black", weight=3]; 193[label="FiniteMap.splitLT2 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];193 -> 207[label="",style="solid", color="black", weight=3]; 306[label="LT",fontsize=16,color="green",shape="box"];307 -> 2502[label="",style="dashed", color="red", weight=0]; 307[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];307 -> 2518[label="",style="dashed", color="magenta", weight=3]; 307 -> 2519[label="",style="dashed", color="magenta", weight=3]; 307 -> 2520[label="",style="dashed", color="magenta", weight=3]; 308[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) False",fontsize=16,color="black",shape="box"];308 -> 319[label="",style="solid", color="black", weight=3]; 309[label="FiniteMap.splitLT2 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];309 -> 320[label="",style="solid", color="black", weight=3]; 146[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];146 -> 199[label="",style="solid", color="black", weight=3]; 147[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing (Just yvy500) (Nothing == Just yvy500) == LT)",fontsize=16,color="black",shape="box"];147 -> 200[label="",style="solid", color="black", weight=3]; 148[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) Nothing (Just yvy400 == Nothing) == LT)",fontsize=16,color="black",shape="box"];148 -> 201[label="",style="solid", color="black", weight=3]; 149[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) (Just yvy500) (Just yvy400 == Just yvy500) == LT)",fontsize=16,color="black",shape="box"];149 -> 202[label="",style="solid", color="black", weight=3]; 150 -> 203[label="",style="dashed", color="red", weight=0]; 150[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"];150 -> 204[label="",style="dashed", color="magenta", weight=3]; 151 -> 208[label="",style="dashed", color="red", weight=0]; 151[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"];151 -> 209[label="",style="dashed", color="magenta", weight=3]; 152 -> 376[label="",style="dashed", color="red", weight=0]; 152[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (Nothing < Nothing)",fontsize=16,color="magenta"];152 -> 377[label="",style="dashed", color="magenta", weight=3]; 2503[label="Just yvy300",fontsize=16,color="green",shape="box"];2504[label="False",fontsize=16,color="green",shape="box"];2505[label="Nothing",fontsize=16,color="green",shape="box"];2502[label="compare2 yvy490 yvy500 yvy170",fontsize=16,color="burlywood",shape="triangle"];4581[label="yvy170/False",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4581[label="",style="solid", color="burlywood", weight=9]; 4581 -> 2558[label="",style="solid", color="burlywood", weight=3]; 4582[label="yvy170/True",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4582[label="",style="solid", color="burlywood", weight=9]; 4582 -> 2559[label="",style="solid", color="burlywood", weight=3]; 161[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4583[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];161 -> 4583[label="",style="solid", color="burlywood", weight=9]; 4583 -> 231[label="",style="solid", color="burlywood", weight=3]; 4584[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];161 -> 4584[label="",style="solid", color="burlywood", weight=9]; 4584 -> 232[label="",style="solid", color="burlywood", weight=3]; 4585[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];161 -> 4585[label="",style="solid", color="burlywood", weight=9]; 4585 -> 233[label="",style="solid", color="burlywood", weight=3]; 162[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4586[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 4586[label="",style="solid", color="burlywood", weight=9]; 4586 -> 234[label="",style="solid", color="burlywood", weight=3]; 4587[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 4587[label="",style="solid", color="burlywood", weight=9]; 4587 -> 235[label="",style="solid", color="burlywood", weight=3]; 4588[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 4588[label="",style="solid", color="burlywood", weight=9]; 4588 -> 236[label="",style="solid", color="burlywood", weight=3]; 163[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4589[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];163 -> 4589[label="",style="solid", color="burlywood", weight=9]; 4589 -> 237[label="",style="solid", color="burlywood", weight=3]; 4590[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];163 -> 4590[label="",style="solid", color="burlywood", weight=9]; 4590 -> 238[label="",style="solid", color="burlywood", weight=3]; 4591[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];163 -> 4591[label="",style="solid", color="burlywood", weight=9]; 4591 -> 239[label="",style="solid", color="burlywood", weight=3]; 229 -> 391[label="",style="dashed", color="red", weight=0]; 229[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (Nothing < Just yvy300)",fontsize=16,color="magenta"];229 -> 392[label="",style="dashed", color="magenta", weight=3]; 230[label="FiniteMap.splitGT yvy34 Nothing",fontsize=16,color="burlywood",shape="triangle"];4592[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];230 -> 4592[label="",style="solid", color="burlywood", weight=9]; 4592 -> 284[label="",style="solid", color="burlywood", weight=3]; 4593[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];230 -> 4593[label="",style="solid", color="burlywood", weight=9]; 4593 -> 285[label="",style="solid", color="burlywood", weight=3]; 2506[label="Nothing",fontsize=16,color="green",shape="box"];2507[label="False",fontsize=16,color="green",shape="box"];2508[label="Just yvy400",fontsize=16,color="green",shape="box"];281 -> 399[label="",style="dashed", color="red", weight=0]; 281[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (Just yvy400 < Nothing)",fontsize=16,color="magenta"];281 -> 400[label="",style="dashed", color="magenta", weight=3]; 282[label="FiniteMap.splitGT yvy34 (Just yvy400)",fontsize=16,color="burlywood",shape="triangle"];4594[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];282 -> 4594[label="",style="solid", color="burlywood", weight=9]; 4594 -> 322[label="",style="solid", color="burlywood", weight=3]; 4595[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];282 -> 4595[label="",style="solid", color="burlywood", weight=9]; 4595 -> 323[label="",style="solid", color="burlywood", weight=3]; 2509[label="Just yvy300",fontsize=16,color="green",shape="box"];2510[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4596[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2560[label="",style="solid", color="blue", weight=3]; 4597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2561[label="",style="solid", color="blue", weight=3]; 4598[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2562[label="",style="solid", color="blue", weight=3]; 4599[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2563[label="",style="solid", color="blue", weight=3]; 4600[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2564[label="",style="solid", color="blue", weight=3]; 4601[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2565[label="",style="solid", color="blue", weight=3]; 4602[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2566[label="",style="solid", color="blue", weight=3]; 4603[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2567[label="",style="solid", color="blue", weight=3]; 4604[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2568[label="",style="solid", color="blue", weight=3]; 4605[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 2569[label="",style="solid", color="blue", weight=3]; 4606[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 2570[label="",style="solid", color="blue", weight=3]; 4607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 2571[label="",style="solid", color="blue", weight=3]; 4608[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 2572[label="",style="solid", color="blue", weight=3]; 4609[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2573[label="",style="solid", color="blue", weight=3]; 2511[label="Just yvy400",fontsize=16,color="green",shape="box"];317 -> 426[label="",style="dashed", color="red", weight=0]; 317[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) (Just yvy20 < Just yvy15)",fontsize=16,color="magenta"];317 -> 427[label="",style="dashed", color="magenta", weight=3]; 318 -> 282[label="",style="dashed", color="red", weight=0]; 318[label="FiniteMap.splitGT yvy19 (Just yvy20)",fontsize=16,color="magenta"];318 -> 357[label="",style="dashed", color="magenta", weight=3]; 318 -> 358[label="",style="dashed", color="magenta", weight=3]; 177 -> 432[label="",style="dashed", color="red", weight=0]; 177[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing (Nothing > Nothing)",fontsize=16,color="magenta"];177 -> 433[label="",style="dashed", color="magenta", weight=3]; 2512[label="Just yvy300",fontsize=16,color="green",shape="box"];2513[label="False",fontsize=16,color="green",shape="box"];2514[label="Nothing",fontsize=16,color="green",shape="box"];195 -> 439[label="",style="dashed", color="red", weight=0]; 195[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing (Nothing > Just yvy300)",fontsize=16,color="magenta"];195 -> 440[label="",style="dashed", color="magenta", weight=3]; 196[label="FiniteMap.splitLT yvy33 Nothing",fontsize=16,color="burlywood",shape="triangle"];4610[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];196 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 289[label="",style="solid", color="burlywood", weight=3]; 4611[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];196 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 290[label="",style="solid", color="burlywood", weight=3]; 2515[label="Nothing",fontsize=16,color="green",shape="box"];2516[label="False",fontsize=16,color="green",shape="box"];2517[label="Just yvy400",fontsize=16,color="green",shape="box"];206 -> 448[label="",style="dashed", color="red", weight=0]; 206[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) (Just yvy400 > Nothing)",fontsize=16,color="magenta"];206 -> 449[label="",style="dashed", color="magenta", weight=3]; 207[label="FiniteMap.splitLT yvy33 (Just yvy400)",fontsize=16,color="burlywood",shape="triangle"];4612[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];207 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 293[label="",style="solid", color="burlywood", weight=3]; 4613[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];207 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 294[label="",style="solid", color="burlywood", weight=3]; 2518[label="Just yvy300",fontsize=16,color="green",shape="box"];2519[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4614[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 2574[label="",style="solid", color="blue", weight=3]; 4615[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 2575[label="",style="solid", color="blue", weight=3]; 4616[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 2576[label="",style="solid", color="blue", weight=3]; 4617[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 2577[label="",style="solid", color="blue", weight=3]; 4618[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 2578[label="",style="solid", color="blue", weight=3]; 4619[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 2579[label="",style="solid", color="blue", weight=3]; 4620[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 2580[label="",style="solid", color="blue", weight=3]; 4621[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 2581[label="",style="solid", color="blue", weight=3]; 4622[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 2582[label="",style="solid", color="blue", weight=3]; 4623[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 2583[label="",style="solid", color="blue", weight=3]; 4624[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 2584[label="",style="solid", color="blue", weight=3]; 4625[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 2585[label="",style="solid", color="blue", weight=3]; 4626[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 2586[label="",style="solid", color="blue", weight=3]; 4627[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 2587[label="",style="solid", color="blue", weight=3]; 2520[label="Just yvy400",fontsize=16,color="green",shape="box"];319 -> 456[label="",style="dashed", color="red", weight=0]; 319[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) (Just yvy35 > Just yvy30)",fontsize=16,color="magenta"];319 -> 457[label="",style="dashed", color="magenta", weight=3]; 320 -> 207[label="",style="dashed", color="red", weight=0]; 320[label="FiniteMap.splitLT yvy33 (Just yvy35)",fontsize=16,color="magenta"];320 -> 360[label="",style="dashed", color="magenta", weight=3]; 320 -> 361[label="",style="dashed", color="magenta", weight=3]; 199 -> 354[label="",style="dashed", color="red", weight=0]; 199[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing Nothing True == LT)",fontsize=16,color="magenta"];199 -> 355[label="",style="dashed", color="magenta", weight=3]; 200 -> 362[label="",style="dashed", color="red", weight=0]; 200[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (compare2 Nothing (Just yvy500) False == LT)",fontsize=16,color="magenta"];200 -> 363[label="",style="dashed", color="magenta", weight=3]; 201 -> 364[label="",style="dashed", color="red", weight=0]; 201[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) Nothing False == LT)",fontsize=16,color="magenta"];201 -> 365[label="",style="dashed", color="magenta", weight=3]; 202 -> 366[label="",style="dashed", color="red", weight=0]; 202[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];202 -> 367[label="",style="dashed", color="magenta", weight=3]; 204 -> 115[label="",style="dashed", color="red", weight=0]; 204[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"];204 -> 368[label="",style="dashed", color="magenta", weight=3]; 204 -> 369[label="",style="dashed", color="magenta", weight=3]; 203[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 yvy39",fontsize=16,color="burlywood",shape="triangle"];4628[label="yvy39/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 4628[label="",style="solid", color="burlywood", weight=9]; 4628 -> 370[label="",style="solid", color="burlywood", weight=3]; 4629[label="yvy39/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 4629[label="",style="solid", color="burlywood", weight=9]; 4629 -> 371[label="",style="solid", color="burlywood", weight=3]; 209 -> 115[label="",style="dashed", color="red", weight=0]; 209[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"];209 -> 372[label="",style="dashed", color="magenta", weight=3]; 209 -> 373[label="",style="dashed", color="magenta", weight=3]; 208[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 yvy40",fontsize=16,color="burlywood",shape="triangle"];4630[label="yvy40/False",fontsize=10,color="white",style="solid",shape="box"];208 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 374[label="",style="solid", color="burlywood", weight=3]; 4631[label="yvy40/True",fontsize=10,color="white",style="solid",shape="box"];208 -> 4631[label="",style="solid", color="burlywood", weight=9]; 4631 -> 375[label="",style="solid", color="burlywood", weight=3]; 377[label="Nothing < Nothing",fontsize=16,color="black",shape="box"];377 -> 379[label="",style="solid", color="black", weight=3]; 376[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing yvy59",fontsize=16,color="burlywood",shape="triangle"];4632[label="yvy59/False",fontsize=10,color="white",style="solid",shape="box"];376 -> 4632[label="",style="solid", color="burlywood", weight=9]; 4632 -> 380[label="",style="solid", color="burlywood", weight=3]; 4633[label="yvy59/True",fontsize=10,color="white",style="solid",shape="box"];376 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 381[label="",style="solid", color="burlywood", weight=3]; 2558[label="compare2 yvy490 yvy500 False",fontsize=16,color="black",shape="box"];2558 -> 2613[label="",style="solid", color="black", weight=3]; 2559[label="compare2 yvy490 yvy500 True",fontsize=16,color="black",shape="box"];2559 -> 2614[label="",style="solid", color="black", weight=3]; 231[label="LT == LT",fontsize=16,color="black",shape="box"];231 -> 382[label="",style="solid", color="black", weight=3]; 232[label="LT == EQ",fontsize=16,color="black",shape="box"];232 -> 383[label="",style="solid", color="black", weight=3]; 233[label="LT == GT",fontsize=16,color="black",shape="box"];233 -> 384[label="",style="solid", color="black", weight=3]; 234[label="EQ == LT",fontsize=16,color="black",shape="box"];234 -> 385[label="",style="solid", color="black", weight=3]; 235[label="EQ == EQ",fontsize=16,color="black",shape="box"];235 -> 386[label="",style="solid", color="black", weight=3]; 236[label="EQ == GT",fontsize=16,color="black",shape="box"];236 -> 387[label="",style="solid", color="black", weight=3]; 237[label="GT == LT",fontsize=16,color="black",shape="box"];237 -> 388[label="",style="solid", color="black", weight=3]; 238[label="GT == EQ",fontsize=16,color="black",shape="box"];238 -> 389[label="",style="solid", color="black", weight=3]; 239[label="GT == GT",fontsize=16,color="black",shape="box"];239 -> 390[label="",style="solid", color="black", weight=3]; 392[label="Nothing < Just yvy300",fontsize=16,color="black",shape="box"];392 -> 394[label="",style="solid", color="black", weight=3]; 391[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy60",fontsize=16,color="burlywood",shape="triangle"];4634[label="yvy60/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 4634[label="",style="solid", color="burlywood", weight=9]; 4634 -> 395[label="",style="solid", color="burlywood", weight=3]; 4635[label="yvy60/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 4635[label="",style="solid", color="burlywood", weight=9]; 4635 -> 396[label="",style="solid", color="burlywood", weight=3]; 284[label="FiniteMap.splitGT FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];284 -> 397[label="",style="solid", color="black", weight=3]; 285[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) Nothing",fontsize=16,color="black",shape="box"];285 -> 398[label="",style="solid", color="black", weight=3]; 400[label="Just yvy400 < Nothing",fontsize=16,color="black",shape="box"];400 -> 402[label="",style="solid", color="black", weight=3]; 399[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy61",fontsize=16,color="burlywood",shape="triangle"];4636[label="yvy61/False",fontsize=10,color="white",style="solid",shape="box"];399 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 403[label="",style="solid", color="burlywood", weight=3]; 4637[label="yvy61/True",fontsize=10,color="white",style="solid",shape="box"];399 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 404[label="",style="solid", color="burlywood", weight=3]; 322[label="FiniteMap.splitGT FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];322 -> 405[label="",style="solid", color="black", weight=3]; 323[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Just yvy400)",fontsize=16,color="black",shape="box"];323 -> 406[label="",style="solid", color="black", weight=3]; 2560[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4638[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4638[label="",style="solid", color="burlywood", weight=9]; 4638 -> 2615[label="",style="solid", color="burlywood", weight=3]; 2561[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4639[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4639[label="",style="solid", color="burlywood", weight=9]; 4639 -> 2616[label="",style="solid", color="burlywood", weight=3]; 2562[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4640[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2562 -> 4640[label="",style="solid", color="burlywood", weight=9]; 4640 -> 2617[label="",style="solid", color="burlywood", weight=3]; 4641[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2562 -> 4641[label="",style="solid", color="burlywood", weight=9]; 4641 -> 2618[label="",style="solid", color="burlywood", weight=3]; 2563[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4642[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2563 -> 4642[label="",style="solid", color="burlywood", weight=9]; 4642 -> 2619[label="",style="solid", color="burlywood", weight=3]; 4643[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2563 -> 4643[label="",style="solid", color="burlywood", weight=9]; 4643 -> 2620[label="",style="solid", color="burlywood", weight=3]; 2564 -> 115[label="",style="dashed", color="red", weight=0]; 2564[label="yvy400 == yvy300",fontsize=16,color="magenta"];2565[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2565 -> 2621[label="",style="solid", color="black", weight=3]; 2566[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4644[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2566 -> 4644[label="",style="solid", color="burlywood", weight=9]; 4644 -> 2622[label="",style="solid", color="burlywood", weight=3]; 2567[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4645[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 2623[label="",style="solid", color="burlywood", weight=3]; 2568[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4646[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 2624[label="",style="solid", color="burlywood", weight=3]; 2569[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4647[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 2625[label="",style="solid", color="burlywood", weight=3]; 4648[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 2626[label="",style="solid", color="burlywood", weight=3]; 2570[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2570 -> 2627[label="",style="solid", color="black", weight=3]; 2571[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2571 -> 2628[label="",style="solid", color="black", weight=3]; 2572[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4649[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2572 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 2629[label="",style="solid", color="burlywood", weight=3]; 4650[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2572 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 2630[label="",style="solid", color="burlywood", weight=3]; 2573[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2573 -> 2631[label="",style="solid", color="black", weight=3]; 427[label="Just yvy20 < Just yvy15",fontsize=16,color="black",shape="box"];427 -> 429[label="",style="solid", color="black", weight=3]; 426[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) yvy62",fontsize=16,color="burlywood",shape="triangle"];4651[label="yvy62/False",fontsize=10,color="white",style="solid",shape="box"];426 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 430[label="",style="solid", color="burlywood", weight=3]; 4652[label="yvy62/True",fontsize=10,color="white",style="solid",shape="box"];426 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 431[label="",style="solid", color="burlywood", weight=3]; 357[label="yvy19",fontsize=16,color="green",shape="box"];358[label="yvy20",fontsize=16,color="green",shape="box"];433[label="Nothing > Nothing",fontsize=16,color="black",shape="triangle"];433 -> 435[label="",style="solid", color="black", weight=3]; 432[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing yvy63",fontsize=16,color="burlywood",shape="triangle"];4653[label="yvy63/False",fontsize=10,color="white",style="solid",shape="box"];432 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 436[label="",style="solid", color="burlywood", weight=3]; 4654[label="yvy63/True",fontsize=10,color="white",style="solid",shape="box"];432 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 437[label="",style="solid", color="burlywood", weight=3]; 440[label="Nothing > Just yvy300",fontsize=16,color="black",shape="triangle"];440 -> 442[label="",style="solid", color="black", weight=3]; 439[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing yvy64",fontsize=16,color="burlywood",shape="triangle"];4655[label="yvy64/False",fontsize=10,color="white",style="solid",shape="box"];439 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 443[label="",style="solid", color="burlywood", weight=3]; 4656[label="yvy64/True",fontsize=10,color="white",style="solid",shape="box"];439 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 444[label="",style="solid", color="burlywood", weight=3]; 289[label="FiniteMap.splitLT FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];289 -> 445[label="",style="solid", color="black", weight=3]; 290[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) Nothing",fontsize=16,color="black",shape="box"];290 -> 446[label="",style="solid", color="black", weight=3]; 449[label="Just yvy400 > Nothing",fontsize=16,color="black",shape="triangle"];449 -> 451[label="",style="solid", color="black", weight=3]; 448[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) yvy65",fontsize=16,color="burlywood",shape="triangle"];4657[label="yvy65/False",fontsize=10,color="white",style="solid",shape="box"];448 -> 4657[label="",style="solid", color="burlywood", weight=9]; 4657 -> 452[label="",style="solid", color="burlywood", weight=3]; 4658[label="yvy65/True",fontsize=10,color="white",style="solid",shape="box"];448 -> 4658[label="",style="solid", color="burlywood", weight=9]; 4658 -> 453[label="",style="solid", color="burlywood", weight=3]; 293[label="FiniteMap.splitLT FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];293 -> 454[label="",style="solid", color="black", weight=3]; 294[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Just yvy400)",fontsize=16,color="black",shape="box"];294 -> 455[label="",style="solid", color="black", weight=3]; 2574 -> 2560[label="",style="dashed", color="red", weight=0]; 2574[label="yvy400 == yvy300",fontsize=16,color="magenta"];2575 -> 2561[label="",style="dashed", color="red", weight=0]; 2575[label="yvy400 == yvy300",fontsize=16,color="magenta"];2576 -> 2562[label="",style="dashed", color="red", weight=0]; 2576[label="yvy400 == yvy300",fontsize=16,color="magenta"];2577 -> 2563[label="",style="dashed", color="red", weight=0]; 2577[label="yvy400 == yvy300",fontsize=16,color="magenta"];2578 -> 115[label="",style="dashed", color="red", weight=0]; 2578[label="yvy400 == yvy300",fontsize=16,color="magenta"];2579 -> 2565[label="",style="dashed", color="red", weight=0]; 2579[label="yvy400 == yvy300",fontsize=16,color="magenta"];2580 -> 2566[label="",style="dashed", color="red", weight=0]; 2580[label="yvy400 == yvy300",fontsize=16,color="magenta"];2581 -> 2567[label="",style="dashed", color="red", weight=0]; 2581[label="yvy400 == yvy300",fontsize=16,color="magenta"];2582 -> 2568[label="",style="dashed", color="red", weight=0]; 2582[label="yvy400 == yvy300",fontsize=16,color="magenta"];2583 -> 2569[label="",style="dashed", color="red", weight=0]; 2583[label="yvy400 == yvy300",fontsize=16,color="magenta"];2584 -> 2570[label="",style="dashed", color="red", weight=0]; 2584[label="yvy400 == yvy300",fontsize=16,color="magenta"];2585 -> 2571[label="",style="dashed", color="red", weight=0]; 2585[label="yvy400 == yvy300",fontsize=16,color="magenta"];2586 -> 2572[label="",style="dashed", color="red", weight=0]; 2586[label="yvy400 == yvy300",fontsize=16,color="magenta"];2587 -> 2573[label="",style="dashed", color="red", weight=0]; 2587[label="yvy400 == yvy300",fontsize=16,color="magenta"];457[label="Just yvy35 > Just yvy30",fontsize=16,color="black",shape="triangle"];457 -> 459[label="",style="solid", color="black", weight=3]; 456[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) yvy66",fontsize=16,color="burlywood",shape="triangle"];4659[label="yvy66/False",fontsize=10,color="white",style="solid",shape="box"];456 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 460[label="",style="solid", color="burlywood", weight=3]; 4660[label="yvy66/True",fontsize=10,color="white",style="solid",shape="box"];456 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 461[label="",style="solid", color="burlywood", weight=3]; 360[label="yvy35",fontsize=16,color="green",shape="box"];361[label="yvy33",fontsize=16,color="green",shape="box"];355 -> 115[label="",style="dashed", color="red", weight=0]; 355[label="compare2 Nothing Nothing True == LT",fontsize=16,color="magenta"];355 -> 462[label="",style="dashed", color="magenta", weight=3]; 355 -> 463[label="",style="dashed", color="magenta", weight=3]; 354[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy52",fontsize=16,color="burlywood",shape="triangle"];4661[label="yvy52/False",fontsize=10,color="white",style="solid",shape="box"];354 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 464[label="",style="solid", color="burlywood", weight=3]; 4662[label="yvy52/True",fontsize=10,color="white",style="solid",shape="box"];354 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 465[label="",style="solid", color="burlywood", weight=3]; 363 -> 115[label="",style="dashed", color="red", weight=0]; 363[label="compare2 Nothing (Just yvy500) False == LT",fontsize=16,color="magenta"];363 -> 466[label="",style="dashed", color="magenta", weight=3]; 363 -> 467[label="",style="dashed", color="magenta", weight=3]; 362[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy53",fontsize=16,color="burlywood",shape="triangle"];4663[label="yvy53/False",fontsize=10,color="white",style="solid",shape="box"];362 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 468[label="",style="solid", color="burlywood", weight=3]; 4664[label="yvy53/True",fontsize=10,color="white",style="solid",shape="box"];362 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 469[label="",style="solid", color="burlywood", weight=3]; 365 -> 115[label="",style="dashed", color="red", weight=0]; 365[label="compare2 (Just yvy400) Nothing False == LT",fontsize=16,color="magenta"];365 -> 470[label="",style="dashed", color="magenta", weight=3]; 365 -> 471[label="",style="dashed", color="magenta", weight=3]; 364[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy55",fontsize=16,color="burlywood",shape="triangle"];4665[label="yvy55/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 472[label="",style="solid", color="burlywood", weight=3]; 4666[label="yvy55/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 473[label="",style="solid", color="burlywood", weight=3]; 367 -> 115[label="",style="dashed", color="red", weight=0]; 367[label="compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];367 -> 474[label="",style="dashed", color="magenta", weight=3]; 367 -> 475[label="",style="dashed", color="magenta", weight=3]; 366[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy57",fontsize=16,color="burlywood",shape="triangle"];4667[label="yvy57/False",fontsize=10,color="white",style="solid",shape="box"];366 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 476[label="",style="solid", color="burlywood", weight=3]; 4668[label="yvy57/True",fontsize=10,color="white",style="solid",shape="box"];366 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 477[label="",style="solid", color="burlywood", weight=3]; 368[label="LT",fontsize=16,color="green",shape="box"];369[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"];4669[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];369 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 478[label="",style="solid", color="burlywood", weight=3]; 4670[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 479[label="",style="solid", color="burlywood", weight=3]; 370[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"];370 -> 480[label="",style="solid", color="black", weight=3]; 371[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"];371 -> 481[label="",style="solid", color="black", weight=3]; 372[label="LT",fontsize=16,color="green",shape="box"];373[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"];4671[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];373 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 482[label="",style="solid", color="burlywood", weight=3]; 4672[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 483[label="",style="solid", color="burlywood", weight=3]; 374[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"];374 -> 484[label="",style="solid", color="black", weight=3]; 375[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"];375 -> 485[label="",style="solid", color="black", weight=3]; 379 -> 115[label="",style="dashed", color="red", weight=0]; 379[label="compare Nothing Nothing == LT",fontsize=16,color="magenta"];379 -> 486[label="",style="dashed", color="magenta", weight=3]; 379 -> 487[label="",style="dashed", color="magenta", weight=3]; 380[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];380 -> 488[label="",style="solid", color="black", weight=3]; 381[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];381 -> 489[label="",style="solid", color="black", weight=3]; 2613[label="compare1 yvy490 yvy500 (yvy490 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4673[label="yvy490/Nothing",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 2684[label="",style="solid", color="burlywood", weight=3]; 4674[label="yvy490/Just yvy4900",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 2685[label="",style="solid", color="burlywood", weight=3]; 2614[label="EQ",fontsize=16,color="green",shape="box"];382[label="True",fontsize=16,color="green",shape="box"];383[label="False",fontsize=16,color="green",shape="box"];384[label="False",fontsize=16,color="green",shape="box"];385[label="False",fontsize=16,color="green",shape="box"];386[label="True",fontsize=16,color="green",shape="box"];387[label="False",fontsize=16,color="green",shape="box"];388[label="False",fontsize=16,color="green",shape="box"];389[label="False",fontsize=16,color="green",shape="box"];390[label="True",fontsize=16,color="green",shape="box"];394 -> 115[label="",style="dashed", color="red", weight=0]; 394[label="compare Nothing (Just yvy300) == LT",fontsize=16,color="magenta"];394 -> 490[label="",style="dashed", color="magenta", weight=3]; 394 -> 491[label="",style="dashed", color="magenta", weight=3]; 395[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];395 -> 492[label="",style="solid", color="black", weight=3]; 396[label="FiniteMap.splitGT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];396 -> 493[label="",style="solid", color="black", weight=3]; 397[label="FiniteMap.splitGT4 FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];397 -> 494[label="",style="solid", color="black", weight=3]; 398 -> 26[label="",style="dashed", color="red", weight=0]; 398[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) Nothing",fontsize=16,color="magenta"];398 -> 495[label="",style="dashed", color="magenta", weight=3]; 398 -> 496[label="",style="dashed", color="magenta", weight=3]; 398 -> 497[label="",style="dashed", color="magenta", weight=3]; 398 -> 498[label="",style="dashed", color="magenta", weight=3]; 398 -> 499[label="",style="dashed", color="magenta", weight=3]; 398 -> 500[label="",style="dashed", color="magenta", weight=3]; 402 -> 115[label="",style="dashed", color="red", weight=0]; 402[label="compare (Just yvy400) Nothing == LT",fontsize=16,color="magenta"];402 -> 501[label="",style="dashed", color="magenta", weight=3]; 402 -> 502[label="",style="dashed", color="magenta", weight=3]; 403[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];403 -> 503[label="",style="solid", color="black", weight=3]; 404[label="FiniteMap.splitGT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];404 -> 504[label="",style="solid", color="black", weight=3]; 405[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];405 -> 505[label="",style="solid", color="black", weight=3]; 406 -> 26[label="",style="dashed", color="red", weight=0]; 406[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Just yvy400)",fontsize=16,color="magenta"];406 -> 506[label="",style="dashed", color="magenta", weight=3]; 406 -> 507[label="",style="dashed", color="magenta", weight=3]; 406 -> 508[label="",style="dashed", color="magenta", weight=3]; 406 -> 509[label="",style="dashed", color="magenta", weight=3]; 406 -> 510[label="",style="dashed", color="magenta", weight=3]; 406 -> 511[label="",style="dashed", color="magenta", weight=3]; 2615[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4675[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 2686[label="",style="solid", color="burlywood", weight=3]; 2616[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4676[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 2687[label="",style="solid", color="burlywood", weight=3]; 2617[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4677[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2688[label="",style="solid", color="burlywood", weight=3]; 4678[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2689[label="",style="solid", color="burlywood", weight=3]; 2618[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4679[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 2690[label="",style="solid", color="burlywood", weight=3]; 4680[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 2691[label="",style="solid", color="burlywood", weight=3]; 2619[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4681[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 2692[label="",style="solid", color="burlywood", weight=3]; 4682[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2619 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 2693[label="",style="solid", color="burlywood", weight=3]; 2620[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4683[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 2694[label="",style="solid", color="burlywood", weight=3]; 4684[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2620 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 2695[label="",style="solid", color="burlywood", weight=3]; 2621[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4685[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2621 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 2696[label="",style="solid", color="burlywood", weight=3]; 2622[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4686[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2622 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 2697[label="",style="solid", color="burlywood", weight=3]; 2623[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4687[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2623 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 2698[label="",style="solid", color="burlywood", weight=3]; 2624[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4688[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2624 -> 4688[label="",style="solid", color="burlywood", weight=9]; 4688 -> 2699[label="",style="solid", color="burlywood", weight=3]; 2625[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4689[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2625 -> 4689[label="",style="solid", color="burlywood", weight=9]; 4689 -> 2700[label="",style="solid", color="burlywood", weight=3]; 4690[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2625 -> 4690[label="",style="solid", color="burlywood", weight=9]; 4690 -> 2701[label="",style="solid", color="burlywood", weight=3]; 2626[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4691[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2626 -> 4691[label="",style="solid", color="burlywood", weight=9]; 4691 -> 2702[label="",style="solid", color="burlywood", weight=3]; 4692[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2626 -> 4692[label="",style="solid", color="burlywood", weight=9]; 4692 -> 2703[label="",style="solid", color="burlywood", weight=3]; 2627[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4693[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4693[label="",style="solid", color="burlywood", weight=9]; 4693 -> 2704[label="",style="solid", color="burlywood", weight=3]; 4694[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4694[label="",style="solid", color="burlywood", weight=9]; 4694 -> 2705[label="",style="solid", color="burlywood", weight=3]; 2628[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4695[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2628 -> 4695[label="",style="solid", color="burlywood", weight=9]; 4695 -> 2706[label="",style="solid", color="burlywood", weight=3]; 2629[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4696[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4696[label="",style="solid", color="burlywood", weight=9]; 4696 -> 2707[label="",style="solid", color="burlywood", weight=3]; 4697[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4697[label="",style="solid", color="burlywood", weight=9]; 4697 -> 2708[label="",style="solid", color="burlywood", weight=3]; 2630[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4698[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2630 -> 4698[label="",style="solid", color="burlywood", weight=9]; 4698 -> 2709[label="",style="solid", color="burlywood", weight=3]; 4699[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2630 -> 4699[label="",style="solid", color="burlywood", weight=9]; 4699 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2631[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4700[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2631 -> 4700[label="",style="solid", color="burlywood", weight=9]; 4700 -> 2711[label="",style="solid", color="burlywood", weight=3]; 429 -> 115[label="",style="dashed", color="red", weight=0]; 429[label="compare (Just yvy20) (Just yvy15) == LT",fontsize=16,color="magenta"];429 -> 539[label="",style="dashed", color="magenta", weight=3]; 429 -> 540[label="",style="dashed", color="magenta", weight=3]; 430[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) False",fontsize=16,color="black",shape="box"];430 -> 541[label="",style="solid", color="black", weight=3]; 431[label="FiniteMap.splitGT1 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];431 -> 542[label="",style="solid", color="black", weight=3]; 435 -> 115[label="",style="dashed", color="red", weight=0]; 435[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];435 -> 543[label="",style="dashed", color="magenta", weight=3]; 435 -> 544[label="",style="dashed", color="magenta", weight=3]; 436[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];436 -> 545[label="",style="solid", color="black", weight=3]; 437[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];437 -> 546[label="",style="solid", color="black", weight=3]; 442 -> 115[label="",style="dashed", color="red", weight=0]; 442[label="compare Nothing (Just yvy300) == GT",fontsize=16,color="magenta"];442 -> 547[label="",style="dashed", color="magenta", weight=3]; 442 -> 548[label="",style="dashed", color="magenta", weight=3]; 443[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing False",fontsize=16,color="black",shape="box"];443 -> 549[label="",style="solid", color="black", weight=3]; 444[label="FiniteMap.splitLT1 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];444 -> 550[label="",style="solid", color="black", weight=3]; 445[label="FiniteMap.splitLT4 FiniteMap.EmptyFM Nothing",fontsize=16,color="black",shape="box"];445 -> 551[label="",style="solid", color="black", weight=3]; 446 -> 27[label="",style="dashed", color="red", weight=0]; 446[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) Nothing",fontsize=16,color="magenta"];446 -> 552[label="",style="dashed", color="magenta", weight=3]; 446 -> 553[label="",style="dashed", color="magenta", weight=3]; 446 -> 554[label="",style="dashed", color="magenta", weight=3]; 446 -> 555[label="",style="dashed", color="magenta", weight=3]; 446 -> 556[label="",style="dashed", color="magenta", weight=3]; 446 -> 557[label="",style="dashed", color="magenta", weight=3]; 451 -> 115[label="",style="dashed", color="red", weight=0]; 451[label="compare (Just yvy400) Nothing == GT",fontsize=16,color="magenta"];451 -> 559[label="",style="dashed", color="magenta", weight=3]; 451 -> 560[label="",style="dashed", color="magenta", weight=3]; 452[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) False",fontsize=16,color="black",shape="box"];452 -> 561[label="",style="solid", color="black", weight=3]; 453[label="FiniteMap.splitLT1 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];453 -> 562[label="",style="solid", color="black", weight=3]; 454[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Just yvy400)",fontsize=16,color="black",shape="box"];454 -> 563[label="",style="solid", color="black", weight=3]; 455 -> 27[label="",style="dashed", color="red", weight=0]; 455[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Just yvy400)",fontsize=16,color="magenta"];455 -> 564[label="",style="dashed", color="magenta", weight=3]; 455 -> 565[label="",style="dashed", color="magenta", weight=3]; 455 -> 566[label="",style="dashed", color="magenta", weight=3]; 455 -> 567[label="",style="dashed", color="magenta", weight=3]; 455 -> 568[label="",style="dashed", color="magenta", weight=3]; 455 -> 569[label="",style="dashed", color="magenta", weight=3]; 459 -> 115[label="",style="dashed", color="red", weight=0]; 459[label="compare (Just yvy35) (Just yvy30) == GT",fontsize=16,color="magenta"];459 -> 570[label="",style="dashed", color="magenta", weight=3]; 459 -> 571[label="",style="dashed", color="magenta", weight=3]; 460[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) False",fontsize=16,color="black",shape="box"];460 -> 572[label="",style="solid", color="black", weight=3]; 461[label="FiniteMap.splitLT1 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];461 -> 573[label="",style="solid", color="black", weight=3]; 462[label="LT",fontsize=16,color="green",shape="box"];463 -> 2502[label="",style="dashed", color="red", weight=0]; 463[label="compare2 Nothing Nothing True",fontsize=16,color="magenta"];463 -> 2530[label="",style="dashed", color="magenta", weight=3]; 463 -> 2531[label="",style="dashed", color="magenta", weight=3]; 463 -> 2532[label="",style="dashed", color="magenta", weight=3]; 464[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];464 -> 575[label="",style="solid", color="black", weight=3]; 465[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];465 -> 576[label="",style="solid", color="black", weight=3]; 466[label="LT",fontsize=16,color="green",shape="box"];467 -> 2502[label="",style="dashed", color="red", weight=0]; 467[label="compare2 Nothing (Just yvy500) False",fontsize=16,color="magenta"];467 -> 2533[label="",style="dashed", color="magenta", weight=3]; 467 -> 2534[label="",style="dashed", color="magenta", weight=3]; 467 -> 2535[label="",style="dashed", color="magenta", weight=3]; 468[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];468 -> 578[label="",style="solid", color="black", weight=3]; 469[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];469 -> 579[label="",style="solid", color="black", weight=3]; 470[label="LT",fontsize=16,color="green",shape="box"];471 -> 2502[label="",style="dashed", color="red", weight=0]; 471[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];471 -> 2536[label="",style="dashed", color="magenta", weight=3]; 471 -> 2537[label="",style="dashed", color="magenta", weight=3]; 471 -> 2538[label="",style="dashed", color="magenta", weight=3]; 472[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];472 -> 580[label="",style="solid", color="black", weight=3]; 473[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];473 -> 581[label="",style="solid", color="black", weight=3]; 474[label="LT",fontsize=16,color="green",shape="box"];475 -> 2502[label="",style="dashed", color="red", weight=0]; 475[label="compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];475 -> 2539[label="",style="dashed", color="magenta", weight=3]; 475 -> 2540[label="",style="dashed", color="magenta", weight=3]; 475 -> 2541[label="",style="dashed", color="magenta", weight=3]; 476[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];476 -> 585[label="",style="solid", color="black", weight=3]; 477[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];477 -> 586[label="",style="solid", color="black", weight=3]; 478[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"];478 -> 587[label="",style="solid", color="black", weight=3]; 479[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"];479 -> 588[label="",style="solid", color="black", weight=3]; 480 -> 713[label="",style="dashed", color="red", weight=0]; 480[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"];480 -> 714[label="",style="dashed", color="magenta", weight=3]; 481 -> 590[label="",style="dashed", color="red", weight=0]; 481[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];481 -> 591[label="",style="dashed", color="magenta", weight=3]; 482[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"];482 -> 601[label="",style="solid", color="black", weight=3]; 483[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"];483 -> 602[label="",style="solid", color="black", weight=3]; 484 -> 724[label="",style="dashed", color="red", weight=0]; 484[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"];484 -> 725[label="",style="dashed", color="magenta", weight=3]; 485 -> 590[label="",style="dashed", color="red", weight=0]; 485[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];485 -> 592[label="",style="dashed", color="magenta", weight=3]; 486[label="LT",fontsize=16,color="green",shape="box"];487[label="compare Nothing Nothing",fontsize=16,color="black",shape="triangle"];487 -> 604[label="",style="solid", color="black", weight=3]; 488[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];488 -> 605[label="",style="solid", color="black", weight=3]; 489 -> 12[label="",style="dashed", color="red", weight=0]; 489[label="FiniteMap.mkVBalBranch Nothing yvy31 (FiniteMap.splitGT yvy33 Nothing) yvy34",fontsize=16,color="magenta"];489 -> 606[label="",style="dashed", color="magenta", weight=3]; 489 -> 607[label="",style="dashed", color="magenta", weight=3]; 489 -> 608[label="",style="dashed", color="magenta", weight=3]; 489 -> 609[label="",style="dashed", color="magenta", weight=3]; 2684[label="compare1 Nothing yvy500 (Nothing <= yvy500)",fontsize=16,color="burlywood",shape="box"];4701[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4701[label="",style="solid", color="burlywood", weight=9]; 4701 -> 2750[label="",style="solid", color="burlywood", weight=3]; 4702[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 2751[label="",style="solid", color="burlywood", weight=3]; 2685[label="compare1 (Just yvy4900) yvy500 (Just yvy4900 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4703[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 2752[label="",style="solid", color="burlywood", weight=3]; 4704[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 2753[label="",style="solid", color="burlywood", weight=3]; 490[label="LT",fontsize=16,color="green",shape="box"];491[label="compare Nothing (Just yvy300)",fontsize=16,color="black",shape="triangle"];491 -> 610[label="",style="solid", color="black", weight=3]; 492[label="FiniteMap.splitGT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];492 -> 611[label="",style="solid", color="black", weight=3]; 493 -> 12[label="",style="dashed", color="red", weight=0]; 493[label="FiniteMap.mkVBalBranch (Just yvy300) yvy31 (FiniteMap.splitGT yvy33 Nothing) yvy34",fontsize=16,color="magenta"];493 -> 612[label="",style="dashed", color="magenta", weight=3]; 493 -> 613[label="",style="dashed", color="magenta", weight=3]; 493 -> 614[label="",style="dashed", color="magenta", weight=3]; 493 -> 615[label="",style="dashed", color="magenta", weight=3]; 494 -> 67[label="",style="dashed", color="red", weight=0]; 494[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];495[label="Nothing",fontsize=16,color="green",shape="box"];496[label="yvy341",fontsize=16,color="green",shape="box"];497[label="yvy344",fontsize=16,color="green",shape="box"];498[label="yvy340",fontsize=16,color="green",shape="box"];499[label="yvy342",fontsize=16,color="green",shape="box"];500[label="yvy343",fontsize=16,color="green",shape="box"];501[label="LT",fontsize=16,color="green",shape="box"];502[label="compare (Just yvy400) Nothing",fontsize=16,color="black",shape="triangle"];502 -> 616[label="",style="solid", color="black", weight=3]; 503[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) otherwise",fontsize=16,color="black",shape="box"];503 -> 617[label="",style="solid", color="black", weight=3]; 504 -> 12[label="",style="dashed", color="red", weight=0]; 504[label="FiniteMap.mkVBalBranch Nothing yvy31 (FiniteMap.splitGT yvy33 (Just yvy400)) yvy34",fontsize=16,color="magenta"];504 -> 618[label="",style="dashed", color="magenta", weight=3]; 504 -> 619[label="",style="dashed", color="magenta", weight=3]; 504 -> 620[label="",style="dashed", color="magenta", weight=3]; 504 -> 621[label="",style="dashed", color="magenta", weight=3]; 505 -> 67[label="",style="dashed", color="red", weight=0]; 505[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];506[label="Just yvy400",fontsize=16,color="green",shape="box"];507[label="yvy341",fontsize=16,color="green",shape="box"];508[label="yvy344",fontsize=16,color="green",shape="box"];509[label="yvy340",fontsize=16,color="green",shape="box"];510[label="yvy342",fontsize=16,color="green",shape="box"];511[label="yvy343",fontsize=16,color="green",shape="box"];2686[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];2686 -> 2754[label="",style="solid", color="black", weight=3]; 2687[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];2687 -> 2755[label="",style="solid", color="black", weight=3]; 2688[label="False == False",fontsize=16,color="black",shape="box"];2688 -> 2756[label="",style="solid", color="black", weight=3]; 2689[label="False == True",fontsize=16,color="black",shape="box"];2689 -> 2757[label="",style="solid", color="black", weight=3]; 2690[label="True == False",fontsize=16,color="black",shape="box"];2690 -> 2758[label="",style="solid", color="black", weight=3]; 2691[label="True == True",fontsize=16,color="black",shape="box"];2691 -> 2759[label="",style="solid", color="black", weight=3]; 2692[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2692 -> 2760[label="",style="solid", color="black", weight=3]; 2693[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];2693 -> 2761[label="",style="solid", color="black", weight=3]; 2694[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];2694 -> 2762[label="",style="solid", color="black", weight=3]; 2695[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];2695 -> 2763[label="",style="solid", color="black", weight=3]; 2696[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4705[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2696 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 2764[label="",style="solid", color="burlywood", weight=3]; 2697[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];2697 -> 2765[label="",style="solid", color="black", weight=3]; 2698[label="() == ()",fontsize=16,color="black",shape="box"];2698 -> 2766[label="",style="solid", color="black", weight=3]; 2699[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];2699 -> 2767[label="",style="solid", color="black", weight=3]; 2700[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2700 -> 2768[label="",style="solid", color="black", weight=3]; 2701[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2701 -> 2769[label="",style="solid", color="black", weight=3]; 2702[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2702 -> 2770[label="",style="solid", color="black", weight=3]; 2703[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2703 -> 2771[label="",style="solid", color="black", weight=3]; 2704[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4706[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2704 -> 4706[label="",style="solid", color="burlywood", weight=9]; 4706 -> 2772[label="",style="solid", color="burlywood", weight=3]; 4707[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2704 -> 4707[label="",style="solid", color="burlywood", weight=9]; 4707 -> 2773[label="",style="solid", color="burlywood", weight=3]; 2705[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4708[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4708[label="",style="solid", color="burlywood", weight=9]; 4708 -> 2774[label="",style="solid", color="burlywood", weight=3]; 4709[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4709[label="",style="solid", color="burlywood", weight=9]; 4709 -> 2775[label="",style="solid", color="burlywood", weight=3]; 2706[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4710[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4710[label="",style="solid", color="burlywood", weight=9]; 4710 -> 2776[label="",style="solid", color="burlywood", weight=3]; 2707[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2707 -> 2777[label="",style="solid", color="black", weight=3]; 2708[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];2708 -> 2778[label="",style="solid", color="black", weight=3]; 2709[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2709 -> 2779[label="",style="solid", color="black", weight=3]; 2710[label="[] == []",fontsize=16,color="black",shape="box"];2710 -> 2780[label="",style="solid", color="black", weight=3]; 2711[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4711[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4711[label="",style="solid", color="burlywood", weight=9]; 4711 -> 2781[label="",style="solid", color="burlywood", weight=3]; 539[label="LT",fontsize=16,color="green",shape="box"];540[label="compare (Just yvy20) (Just yvy15)",fontsize=16,color="black",shape="triangle"];540 -> 660[label="",style="solid", color="black", weight=3]; 541[label="FiniteMap.splitGT0 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) otherwise",fontsize=16,color="black",shape="box"];541 -> 661[label="",style="solid", color="black", weight=3]; 542 -> 12[label="",style="dashed", color="red", weight=0]; 542[label="FiniteMap.mkVBalBranch (Just yvy15) yvy16 (FiniteMap.splitGT yvy18 (Just yvy20)) yvy19",fontsize=16,color="magenta"];542 -> 662[label="",style="dashed", color="magenta", weight=3]; 542 -> 663[label="",style="dashed", color="magenta", weight=3]; 542 -> 664[label="",style="dashed", color="magenta", weight=3]; 542 -> 665[label="",style="dashed", color="magenta", weight=3]; 543[label="GT",fontsize=16,color="green",shape="box"];544 -> 487[label="",style="dashed", color="red", weight=0]; 544[label="compare Nothing Nothing",fontsize=16,color="magenta"];545[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];545 -> 666[label="",style="solid", color="black", weight=3]; 546 -> 12[label="",style="dashed", color="red", weight=0]; 546[label="FiniteMap.mkVBalBranch Nothing yvy31 yvy33 (FiniteMap.splitLT yvy34 Nothing)",fontsize=16,color="magenta"];546 -> 667[label="",style="dashed", color="magenta", weight=3]; 546 -> 668[label="",style="dashed", color="magenta", weight=3]; 546 -> 669[label="",style="dashed", color="magenta", weight=3]; 546 -> 670[label="",style="dashed", color="magenta", weight=3]; 547[label="GT",fontsize=16,color="green",shape="box"];548 -> 491[label="",style="dashed", color="red", weight=0]; 548[label="compare Nothing (Just yvy300)",fontsize=16,color="magenta"];549[label="FiniteMap.splitLT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing otherwise",fontsize=16,color="black",shape="box"];549 -> 671[label="",style="solid", color="black", weight=3]; 550 -> 12[label="",style="dashed", color="red", weight=0]; 550[label="FiniteMap.mkVBalBranch (Just yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 Nothing)",fontsize=16,color="magenta"];550 -> 672[label="",style="dashed", color="magenta", weight=3]; 550 -> 673[label="",style="dashed", color="magenta", weight=3]; 550 -> 674[label="",style="dashed", color="magenta", weight=3]; 550 -> 675[label="",style="dashed", color="magenta", weight=3]; 551 -> 67[label="",style="dashed", color="red", weight=0]; 551[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];552[label="Nothing",fontsize=16,color="green",shape="box"];553[label="yvy331",fontsize=16,color="green",shape="box"];554[label="yvy334",fontsize=16,color="green",shape="box"];555[label="yvy330",fontsize=16,color="green",shape="box"];556[label="yvy332",fontsize=16,color="green",shape="box"];557[label="yvy333",fontsize=16,color="green",shape="box"];559[label="GT",fontsize=16,color="green",shape="box"];560 -> 502[label="",style="dashed", color="red", weight=0]; 560[label="compare (Just yvy400) Nothing",fontsize=16,color="magenta"];561[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) otherwise",fontsize=16,color="black",shape="box"];561 -> 677[label="",style="solid", color="black", weight=3]; 562 -> 12[label="",style="dashed", color="red", weight=0]; 562[label="FiniteMap.mkVBalBranch Nothing yvy31 yvy33 (FiniteMap.splitLT yvy34 (Just yvy400))",fontsize=16,color="magenta"];562 -> 678[label="",style="dashed", color="magenta", weight=3]; 562 -> 679[label="",style="dashed", color="magenta", weight=3]; 562 -> 680[label="",style="dashed", color="magenta", weight=3]; 562 -> 681[label="",style="dashed", color="magenta", weight=3]; 563 -> 67[label="",style="dashed", color="red", weight=0]; 563[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];564[label="Just yvy400",fontsize=16,color="green",shape="box"];565[label="yvy331",fontsize=16,color="green",shape="box"];566[label="yvy334",fontsize=16,color="green",shape="box"];567[label="yvy330",fontsize=16,color="green",shape="box"];568[label="yvy332",fontsize=16,color="green",shape="box"];569[label="yvy333",fontsize=16,color="green",shape="box"];570[label="GT",fontsize=16,color="green",shape="box"];571 -> 540[label="",style="dashed", color="red", weight=0]; 571[label="compare (Just yvy35) (Just yvy30)",fontsize=16,color="magenta"];571 -> 682[label="",style="dashed", color="magenta", weight=3]; 571 -> 683[label="",style="dashed", color="magenta", weight=3]; 572[label="FiniteMap.splitLT0 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) otherwise",fontsize=16,color="black",shape="box"];572 -> 684[label="",style="solid", color="black", weight=3]; 573 -> 12[label="",style="dashed", color="red", weight=0]; 573[label="FiniteMap.mkVBalBranch (Just yvy30) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Just yvy35))",fontsize=16,color="magenta"];573 -> 685[label="",style="dashed", color="magenta", weight=3]; 573 -> 686[label="",style="dashed", color="magenta", weight=3]; 573 -> 687[label="",style="dashed", color="magenta", weight=3]; 573 -> 688[label="",style="dashed", color="magenta", weight=3]; 2530[label="Nothing",fontsize=16,color="green",shape="box"];2531[label="True",fontsize=16,color="green",shape="box"];2532[label="Nothing",fontsize=16,color="green",shape="box"];575 -> 689[label="",style="dashed", color="red", weight=0]; 575[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (Nothing > Nothing)",fontsize=16,color="magenta"];575 -> 690[label="",style="dashed", color="magenta", weight=3]; 576 -> 590[label="",style="dashed", color="red", weight=0]; 576[label="FiniteMap.mkBalBranch Nothing yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41) yvy54",fontsize=16,color="magenta"];576 -> 593[label="",style="dashed", color="magenta", weight=3]; 576 -> 594[label="",style="dashed", color="magenta", weight=3]; 2533[label="Just yvy500",fontsize=16,color="green",shape="box"];2534[label="False",fontsize=16,color="green",shape="box"];2535[label="Nothing",fontsize=16,color="green",shape="box"];578 -> 691[label="",style="dashed", color="red", weight=0]; 578[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 (Nothing > Just yvy500)",fontsize=16,color="magenta"];578 -> 692[label="",style="dashed", color="magenta", weight=3]; 579 -> 590[label="",style="dashed", color="red", weight=0]; 579[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41) yvy54",fontsize=16,color="magenta"];579 -> 595[label="",style="dashed", color="magenta", weight=3]; 579 -> 596[label="",style="dashed", color="magenta", weight=3]; 2536[label="Nothing",fontsize=16,color="green",shape="box"];2537[label="False",fontsize=16,color="green",shape="box"];2538[label="Just yvy400",fontsize=16,color="green",shape="box"];580 -> 693[label="",style="dashed", color="red", weight=0]; 580[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (Just yvy400 > Nothing)",fontsize=16,color="magenta"];580 -> 694[label="",style="dashed", color="magenta", weight=3]; 581 -> 590[label="",style="dashed", color="red", weight=0]; 581[label="FiniteMap.mkBalBranch Nothing yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41) yvy54",fontsize=16,color="magenta"];581 -> 597[label="",style="dashed", color="magenta", weight=3]; 581 -> 598[label="",style="dashed", color="magenta", weight=3]; 2539[label="Just yvy500",fontsize=16,color="green",shape="box"];2540[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];4712[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4712[label="",style="solid", color="blue", weight=9]; 4712 -> 2588[label="",style="solid", color="blue", weight=3]; 4713[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4713[label="",style="solid", color="blue", weight=9]; 4713 -> 2589[label="",style="solid", color="blue", weight=3]; 4714[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4714[label="",style="solid", color="blue", weight=9]; 4714 -> 2590[label="",style="solid", color="blue", weight=3]; 4715[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4715[label="",style="solid", color="blue", weight=9]; 4715 -> 2591[label="",style="solid", color="blue", weight=3]; 4716[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4716[label="",style="solid", color="blue", weight=9]; 4716 -> 2592[label="",style="solid", color="blue", weight=3]; 4717[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4717[label="",style="solid", color="blue", weight=9]; 4717 -> 2593[label="",style="solid", color="blue", weight=3]; 4718[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4718[label="",style="solid", color="blue", weight=9]; 4718 -> 2594[label="",style="solid", color="blue", weight=3]; 4719[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4719[label="",style="solid", color="blue", weight=9]; 4719 -> 2595[label="",style="solid", color="blue", weight=3]; 4720[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4720[label="",style="solid", color="blue", weight=9]; 4720 -> 2596[label="",style="solid", color="blue", weight=3]; 4721[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4721[label="",style="solid", color="blue", weight=9]; 4721 -> 2597[label="",style="solid", color="blue", weight=3]; 4722[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4722[label="",style="solid", color="blue", weight=9]; 4722 -> 2598[label="",style="solid", color="blue", weight=3]; 4723[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4723[label="",style="solid", color="blue", weight=9]; 4723 -> 2599[label="",style="solid", color="blue", weight=3]; 4724[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4724[label="",style="solid", color="blue", weight=9]; 4724 -> 2600[label="",style="solid", color="blue", weight=3]; 4725[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4725[label="",style="solid", color="blue", weight=9]; 4725 -> 2601[label="",style="solid", color="blue", weight=3]; 2541[label="Just yvy400",fontsize=16,color="green",shape="box"];585 -> 709[label="",style="dashed", color="red", weight=0]; 585[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 (Just yvy400 > Just yvy500)",fontsize=16,color="magenta"];585 -> 710[label="",style="dashed", color="magenta", weight=3]; 586 -> 590[label="",style="dashed", color="red", weight=0]; 586[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41) yvy54",fontsize=16,color="magenta"];586 -> 599[label="",style="dashed", color="magenta", weight=3]; 586 -> 600[label="",style="dashed", color="magenta", weight=3]; 587[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"];587 -> 711[label="",style="solid", color="black", weight=3]; 588[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];588 -> 712[label="",style="solid", color="black", weight=3]; 714 -> 3335[label="",style="dashed", color="red", weight=0]; 714[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="magenta"];714 -> 3336[label="",style="dashed", color="magenta", weight=3]; 714 -> 3337[label="",style="dashed", color="magenta", weight=3]; 713[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 yvy79",fontsize=16,color="burlywood",shape="triangle"];4726[label="yvy79/False",fontsize=10,color="white",style="solid",shape="box"];713 -> 4726[label="",style="solid", color="burlywood", weight=9]; 4726 -> 717[label="",style="solid", color="burlywood", weight=3]; 4727[label="yvy79/True",fontsize=10,color="white",style="solid",shape="box"];713 -> 4727[label="",style="solid", color="burlywood", weight=9]; 4727 -> 718[label="",style="solid", color="burlywood", weight=3]; 591 -> 12[label="",style="dashed", color="red", weight=0]; 591[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];591 -> 719[label="",style="dashed", color="magenta", weight=3]; 591 -> 720[label="",style="dashed", color="magenta", weight=3]; 590[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];590 -> 721[label="",style="solid", color="black", weight=3]; 601[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"];601 -> 722[label="",style="solid", color="black", weight=3]; 602[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];602 -> 723[label="",style="solid", color="black", weight=3]; 725 -> 3335[label="",style="dashed", color="red", weight=0]; 725[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="magenta"];725 -> 3338[label="",style="dashed", color="magenta", weight=3]; 725 -> 3339[label="",style="dashed", color="magenta", weight=3]; 724[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 yvy80",fontsize=16,color="burlywood",shape="triangle"];4728[label="yvy80/False",fontsize=10,color="white",style="solid",shape="box"];724 -> 4728[label="",style="solid", color="burlywood", weight=9]; 4728 -> 728[label="",style="solid", color="burlywood", weight=3]; 4729[label="yvy80/True",fontsize=10,color="white",style="solid",shape="box"];724 -> 4729[label="",style="solid", color="burlywood", weight=9]; 4729 -> 729[label="",style="solid", color="burlywood", weight=3]; 592 -> 12[label="",style="dashed", color="red", weight=0]; 592[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];592 -> 730[label="",style="dashed", color="magenta", weight=3]; 592 -> 731[label="",style="dashed", color="magenta", weight=3]; 604[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];604 -> 732[label="",style="solid", color="black", weight=3]; 605[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];605 -> 733[label="",style="solid", color="black", weight=3]; 606[label="Nothing",fontsize=16,color="green",shape="box"];607[label="yvy34",fontsize=16,color="green",shape="box"];608 -> 230[label="",style="dashed", color="red", weight=0]; 608[label="FiniteMap.splitGT yvy33 Nothing",fontsize=16,color="magenta"];608 -> 734[label="",style="dashed", color="magenta", weight=3]; 609[label="yvy31",fontsize=16,color="green",shape="box"];2750[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2750 -> 2815[label="",style="solid", color="black", weight=3]; 2751[label="compare1 Nothing (Just yvy5000) (Nothing <= Just yvy5000)",fontsize=16,color="black",shape="box"];2751 -> 2816[label="",style="solid", color="black", weight=3]; 2752[label="compare1 (Just yvy4900) Nothing (Just yvy4900 <= Nothing)",fontsize=16,color="black",shape="box"];2752 -> 2817[label="",style="solid", color="black", weight=3]; 2753[label="compare1 (Just yvy4900) (Just yvy5000) (Just yvy4900 <= Just yvy5000)",fontsize=16,color="black",shape="box"];2753 -> 2818[label="",style="solid", color="black", weight=3]; 610[label="compare3 Nothing (Just yvy300)",fontsize=16,color="black",shape="box"];610 -> 735[label="",style="solid", color="black", weight=3]; 611[label="FiniteMap.splitGT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];611 -> 736[label="",style="solid", color="black", weight=3]; 612[label="Just yvy300",fontsize=16,color="green",shape="box"];613[label="yvy34",fontsize=16,color="green",shape="box"];614 -> 230[label="",style="dashed", color="red", weight=0]; 614[label="FiniteMap.splitGT yvy33 Nothing",fontsize=16,color="magenta"];614 -> 737[label="",style="dashed", color="magenta", weight=3]; 615[label="yvy31",fontsize=16,color="green",shape="box"];616[label="compare3 (Just yvy400) Nothing",fontsize=16,color="black",shape="box"];616 -> 738[label="",style="solid", color="black", weight=3]; 617[label="FiniteMap.splitGT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];617 -> 739[label="",style="solid", color="black", weight=3]; 618[label="Nothing",fontsize=16,color="green",shape="box"];619[label="yvy34",fontsize=16,color="green",shape="box"];620 -> 282[label="",style="dashed", color="red", weight=0]; 620[label="FiniteMap.splitGT yvy33 (Just yvy400)",fontsize=16,color="magenta"];620 -> 740[label="",style="dashed", color="magenta", weight=3]; 621[label="yvy31",fontsize=16,color="green",shape="box"];2754 -> 2911[label="",style="dashed", color="red", weight=0]; 2754[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2754 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2627[label="",style="dashed", color="red", weight=0]; 2755[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];2755 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2756[label="True",fontsize=16,color="green",shape="box"];2757[label="False",fontsize=16,color="green",shape="box"];2758[label="False",fontsize=16,color="green",shape="box"];2759[label="True",fontsize=16,color="green",shape="box"];2760[label="True",fontsize=16,color="green",shape="box"];2761[label="False",fontsize=16,color="green",shape="box"];2762[label="False",fontsize=16,color="green",shape="box"];2763[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4730[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2827[label="",style="solid", color="blue", weight=3]; 4731[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2828[label="",style="solid", color="blue", weight=3]; 4732[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2829[label="",style="solid", color="blue", weight=3]; 4733[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2830[label="",style="solid", color="blue", weight=3]; 4734[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2831[label="",style="solid", color="blue", weight=3]; 4735[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2832[label="",style="solid", color="blue", weight=3]; 4736[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2833[label="",style="solid", color="blue", weight=3]; 4737[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2834[label="",style="solid", color="blue", weight=3]; 4738[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 2835[label="",style="solid", color="blue", weight=3]; 4739[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 2836[label="",style="solid", color="blue", weight=3]; 4740[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 2837[label="",style="solid", color="blue", weight=3]; 4741[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 2838[label="",style="solid", color="blue", weight=3]; 4742[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 2839[label="",style="solid", color="blue", weight=3]; 4743[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 2840[label="",style="solid", color="blue", weight=3]; 2764[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2764 -> 2841[label="",style="solid", color="black", weight=3]; 2765 -> 2911[label="",style="dashed", color="red", weight=0]; 2765[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2765 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2766[label="True",fontsize=16,color="green",shape="box"];2767 -> 2911[label="",style="dashed", color="red", weight=0]; 2767[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2767 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2768[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4744[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4744[label="",style="solid", color="blue", weight=9]; 4744 -> 2852[label="",style="solid", color="blue", weight=3]; 4745[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4745[label="",style="solid", color="blue", weight=9]; 4745 -> 2853[label="",style="solid", color="blue", weight=3]; 4746[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4746[label="",style="solid", color="blue", weight=9]; 4746 -> 2854[label="",style="solid", color="blue", weight=3]; 4747[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4747[label="",style="solid", color="blue", weight=9]; 4747 -> 2855[label="",style="solid", color="blue", weight=3]; 4748[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4748[label="",style="solid", color="blue", weight=9]; 4748 -> 2856[label="",style="solid", color="blue", weight=3]; 4749[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4749[label="",style="solid", color="blue", weight=9]; 4749 -> 2857[label="",style="solid", color="blue", weight=3]; 4750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4750[label="",style="solid", color="blue", weight=9]; 4750 -> 2858[label="",style="solid", color="blue", weight=3]; 4751[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4751[label="",style="solid", color="blue", weight=9]; 4751 -> 2859[label="",style="solid", color="blue", weight=3]; 4752[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4752[label="",style="solid", color="blue", weight=9]; 4752 -> 2860[label="",style="solid", color="blue", weight=3]; 4753[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4753[label="",style="solid", color="blue", weight=9]; 4753 -> 2861[label="",style="solid", color="blue", weight=3]; 4754[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4754[label="",style="solid", color="blue", weight=9]; 4754 -> 2862[label="",style="solid", color="blue", weight=3]; 4755[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4755[label="",style="solid", color="blue", weight=9]; 4755 -> 2863[label="",style="solid", color="blue", weight=3]; 4756[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4756[label="",style="solid", color="blue", weight=9]; 4756 -> 2864[label="",style="solid", color="blue", weight=3]; 4757[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2768 -> 4757[label="",style="solid", color="blue", weight=9]; 4757 -> 2865[label="",style="solid", color="blue", weight=3]; 2769[label="False",fontsize=16,color="green",shape="box"];2770[label="False",fontsize=16,color="green",shape="box"];2771[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4758[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4758[label="",style="solid", color="blue", weight=9]; 4758 -> 2866[label="",style="solid", color="blue", weight=3]; 4759[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4759[label="",style="solid", color="blue", weight=9]; 4759 -> 2867[label="",style="solid", color="blue", weight=3]; 4760[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4760[label="",style="solid", color="blue", weight=9]; 4760 -> 2868[label="",style="solid", color="blue", weight=3]; 4761[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4761[label="",style="solid", color="blue", weight=9]; 4761 -> 2869[label="",style="solid", color="blue", weight=3]; 4762[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4762[label="",style="solid", color="blue", weight=9]; 4762 -> 2870[label="",style="solid", color="blue", weight=3]; 4763[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4763[label="",style="solid", color="blue", weight=9]; 4763 -> 2871[label="",style="solid", color="blue", weight=3]; 4764[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4764[label="",style="solid", color="blue", weight=9]; 4764 -> 2872[label="",style="solid", color="blue", weight=3]; 4765[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4765[label="",style="solid", color="blue", weight=9]; 4765 -> 2873[label="",style="solid", color="blue", weight=3]; 4766[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4766[label="",style="solid", color="blue", weight=9]; 4766 -> 2874[label="",style="solid", color="blue", weight=3]; 4767[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4767[label="",style="solid", color="blue", weight=9]; 4767 -> 2875[label="",style="solid", color="blue", weight=3]; 4768[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4768[label="",style="solid", color="blue", weight=9]; 4768 -> 2876[label="",style="solid", color="blue", weight=3]; 4769[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4769[label="",style="solid", color="blue", weight=9]; 4769 -> 2877[label="",style="solid", color="blue", weight=3]; 4770[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4770[label="",style="solid", color="blue", weight=9]; 4770 -> 2878[label="",style="solid", color="blue", weight=3]; 4771[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 4771[label="",style="solid", color="blue", weight=9]; 4771 -> 2879[label="",style="solid", color="blue", weight=3]; 2772[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4772[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4772[label="",style="solid", color="burlywood", weight=9]; 4772 -> 2880[label="",style="solid", color="burlywood", weight=3]; 4773[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4773[label="",style="solid", color="burlywood", weight=9]; 4773 -> 2881[label="",style="solid", color="burlywood", weight=3]; 2773[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4774[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4774[label="",style="solid", color="burlywood", weight=9]; 4774 -> 2882[label="",style="solid", color="burlywood", weight=3]; 4775[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4775[label="",style="solid", color="burlywood", weight=9]; 4775 -> 2883[label="",style="solid", color="burlywood", weight=3]; 2774[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4776[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4776[label="",style="solid", color="burlywood", weight=9]; 4776 -> 2884[label="",style="solid", color="burlywood", weight=3]; 4777[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4777[label="",style="solid", color="burlywood", weight=9]; 4777 -> 2885[label="",style="solid", color="burlywood", weight=3]; 2775[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4778[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 2886[label="",style="solid", color="burlywood", weight=3]; 4779[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 2887[label="",style="solid", color="burlywood", weight=3]; 2776[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];2776 -> 2888[label="",style="solid", color="black", weight=3]; 2777 -> 2911[label="",style="dashed", color="red", weight=0]; 2777[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2777 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2778[label="False",fontsize=16,color="green",shape="box"];2779[label="False",fontsize=16,color="green",shape="box"];2780[label="True",fontsize=16,color="green",shape="box"];2781[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2781 -> 2889[label="",style="solid", color="black", weight=3]; 660[label="compare3 (Just yvy20) (Just yvy15)",fontsize=16,color="black",shape="box"];660 -> 828[label="",style="solid", color="black", weight=3]; 661[label="FiniteMap.splitGT0 (Just yvy15) yvy16 yvy17 yvy18 yvy19 (Just yvy20) True",fontsize=16,color="black",shape="box"];661 -> 829[label="",style="solid", color="black", weight=3]; 662[label="Just yvy15",fontsize=16,color="green",shape="box"];663[label="yvy19",fontsize=16,color="green",shape="box"];664 -> 282[label="",style="dashed", color="red", weight=0]; 664[label="FiniteMap.splitGT yvy18 (Just yvy20)",fontsize=16,color="magenta"];664 -> 830[label="",style="dashed", color="magenta", weight=3]; 664 -> 831[label="",style="dashed", color="magenta", weight=3]; 665[label="yvy16",fontsize=16,color="green",shape="box"];666[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];666 -> 832[label="",style="solid", color="black", weight=3]; 667[label="Nothing",fontsize=16,color="green",shape="box"];668 -> 196[label="",style="dashed", color="red", weight=0]; 668[label="FiniteMap.splitLT yvy34 Nothing",fontsize=16,color="magenta"];668 -> 833[label="",style="dashed", color="magenta", weight=3]; 669[label="yvy33",fontsize=16,color="green",shape="box"];670[label="yvy31",fontsize=16,color="green",shape="box"];671[label="FiniteMap.splitLT0 (Just yvy300) yvy31 yvy32 yvy33 yvy34 Nothing True",fontsize=16,color="black",shape="box"];671 -> 834[label="",style="solid", color="black", weight=3]; 672[label="Just yvy300",fontsize=16,color="green",shape="box"];673 -> 196[label="",style="dashed", color="red", weight=0]; 673[label="FiniteMap.splitLT yvy34 Nothing",fontsize=16,color="magenta"];673 -> 835[label="",style="dashed", color="magenta", weight=3]; 674[label="yvy33",fontsize=16,color="green",shape="box"];675[label="yvy31",fontsize=16,color="green",shape="box"];677[label="FiniteMap.splitLT0 Nothing yvy31 yvy32 yvy33 yvy34 (Just yvy400) True",fontsize=16,color="black",shape="box"];677 -> 836[label="",style="solid", color="black", weight=3]; 678[label="Nothing",fontsize=16,color="green",shape="box"];679 -> 207[label="",style="dashed", color="red", weight=0]; 679[label="FiniteMap.splitLT yvy34 (Just yvy400)",fontsize=16,color="magenta"];679 -> 837[label="",style="dashed", color="magenta", weight=3]; 680[label="yvy33",fontsize=16,color="green",shape="box"];681[label="yvy31",fontsize=16,color="green",shape="box"];682[label="yvy30",fontsize=16,color="green",shape="box"];683[label="yvy35",fontsize=16,color="green",shape="box"];684[label="FiniteMap.splitLT0 (Just yvy30) yvy31 yvy32 yvy33 yvy34 (Just yvy35) True",fontsize=16,color="black",shape="box"];684 -> 838[label="",style="solid", color="black", weight=3]; 685[label="Just yvy30",fontsize=16,color="green",shape="box"];686 -> 207[label="",style="dashed", color="red", weight=0]; 686[label="FiniteMap.splitLT yvy34 (Just yvy35)",fontsize=16,color="magenta"];686 -> 839[label="",style="dashed", color="magenta", weight=3]; 686 -> 840[label="",style="dashed", color="magenta", weight=3]; 687[label="yvy33",fontsize=16,color="green",shape="box"];688[label="yvy31",fontsize=16,color="green",shape="box"];690 -> 433[label="",style="dashed", color="red", weight=0]; 690[label="Nothing > Nothing",fontsize=16,color="magenta"];689[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy75",fontsize=16,color="burlywood",shape="triangle"];4780[label="yvy75/False",fontsize=10,color="white",style="solid",shape="box"];689 -> 4780[label="",style="solid", color="burlywood", weight=9]; 4780 -> 841[label="",style="solid", color="burlywood", weight=3]; 4781[label="yvy75/True",fontsize=10,color="white",style="solid",shape="box"];689 -> 4781[label="",style="solid", color="burlywood", weight=9]; 4781 -> 842[label="",style="solid", color="burlywood", weight=3]; 593[label="Nothing",fontsize=16,color="green",shape="box"];594 -> 33[label="",style="dashed", color="red", weight=0]; 594[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41",fontsize=16,color="magenta"];594 -> 843[label="",style="dashed", color="magenta", weight=3]; 594 -> 844[label="",style="dashed", color="magenta", weight=3]; 692 -> 440[label="",style="dashed", color="red", weight=0]; 692[label="Nothing > Just yvy500",fontsize=16,color="magenta"];692 -> 845[label="",style="dashed", color="magenta", weight=3]; 691[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 yvy76",fontsize=16,color="burlywood",shape="triangle"];4782[label="yvy76/False",fontsize=10,color="white",style="solid",shape="box"];691 -> 4782[label="",style="solid", color="burlywood", weight=9]; 4782 -> 846[label="",style="solid", color="burlywood", weight=3]; 4783[label="yvy76/True",fontsize=10,color="white",style="solid",shape="box"];691 -> 4783[label="",style="solid", color="burlywood", weight=9]; 4783 -> 847[label="",style="solid", color="burlywood", weight=3]; 595[label="Just yvy500",fontsize=16,color="green",shape="box"];596 -> 33[label="",style="dashed", color="red", weight=0]; 596[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 Nothing yvy41",fontsize=16,color="magenta"];596 -> 848[label="",style="dashed", color="magenta", weight=3]; 596 -> 849[label="",style="dashed", color="magenta", weight=3]; 694 -> 449[label="",style="dashed", color="red", weight=0]; 694[label="Just yvy400 > Nothing",fontsize=16,color="magenta"];693[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy77",fontsize=16,color="burlywood",shape="triangle"];4784[label="yvy77/False",fontsize=10,color="white",style="solid",shape="box"];693 -> 4784[label="",style="solid", color="burlywood", weight=9]; 4784 -> 850[label="",style="solid", color="burlywood", weight=3]; 4785[label="yvy77/True",fontsize=10,color="white",style="solid",shape="box"];693 -> 4785[label="",style="solid", color="burlywood", weight=9]; 4785 -> 851[label="",style="solid", color="burlywood", weight=3]; 597[label="Nothing",fontsize=16,color="green",shape="box"];598 -> 33[label="",style="dashed", color="red", weight=0]; 598[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41",fontsize=16,color="magenta"];598 -> 852[label="",style="dashed", color="magenta", weight=3]; 598 -> 853[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2560[label="",style="dashed", color="red", weight=0]; 2588[label="yvy400 == yvy500",fontsize=16,color="magenta"];2588 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2561[label="",style="dashed", color="red", weight=0]; 2589[label="yvy400 == yvy500",fontsize=16,color="magenta"];2589 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2590 -> 2562[label="",style="dashed", color="red", weight=0]; 2590[label="yvy400 == yvy500",fontsize=16,color="magenta"];2590 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2591 -> 2563[label="",style="dashed", color="red", weight=0]; 2591[label="yvy400 == yvy500",fontsize=16,color="magenta"];2591 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2592 -> 115[label="",style="dashed", color="red", weight=0]; 2592[label="yvy400 == yvy500",fontsize=16,color="magenta"];2592 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2565[label="",style="dashed", color="red", weight=0]; 2593[label="yvy400 == yvy500",fontsize=16,color="magenta"];2593 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2566[label="",style="dashed", color="red", weight=0]; 2594[label="yvy400 == yvy500",fontsize=16,color="magenta"];2594 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2567[label="",style="dashed", color="red", weight=0]; 2595[label="yvy400 == yvy500",fontsize=16,color="magenta"];2595 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2568[label="",style="dashed", color="red", weight=0]; 2596[label="yvy400 == yvy500",fontsize=16,color="magenta"];2596 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2569[label="",style="dashed", color="red", weight=0]; 2597[label="yvy400 == yvy500",fontsize=16,color="magenta"];2597 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2570[label="",style="dashed", color="red", weight=0]; 2598[label="yvy400 == yvy500",fontsize=16,color="magenta"];2598 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2571[label="",style="dashed", color="red", weight=0]; 2599[label="yvy400 == yvy500",fontsize=16,color="magenta"];2599 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2572[label="",style="dashed", color="red", weight=0]; 2600[label="yvy400 == yvy500",fontsize=16,color="magenta"];2600 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2573[label="",style="dashed", color="red", weight=0]; 2601[label="yvy400 == yvy500",fontsize=16,color="magenta"];2601 -> 2645[label="",style="dashed", color="magenta", weight=3]; 710 -> 457[label="",style="dashed", color="red", weight=0]; 710[label="Just yvy400 > Just yvy500",fontsize=16,color="magenta"];710 -> 868[label="",style="dashed", color="magenta", weight=3]; 710 -> 869[label="",style="dashed", color="magenta", weight=3]; 709[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 yvy78",fontsize=16,color="burlywood",shape="triangle"];4786[label="yvy78/False",fontsize=10,color="white",style="solid",shape="box"];709 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 870[label="",style="solid", color="burlywood", weight=3]; 4787[label="yvy78/True",fontsize=10,color="white",style="solid",shape="box"];709 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 871[label="",style="solid", color="burlywood", weight=3]; 599[label="Just yvy500",fontsize=16,color="green",shape="box"];600 -> 33[label="",style="dashed", color="red", weight=0]; 600[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Just yvy400) yvy41",fontsize=16,color="magenta"];600 -> 872[label="",style="dashed", color="magenta", weight=3]; 600 -> 873[label="",style="dashed", color="magenta", weight=3]; 711[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"];711 -> 874[label="",style="solid", color="black", weight=3]; 712[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];712 -> 875[label="",style="solid", color="black", weight=3]; 3336 -> 986[label="",style="dashed", color="red", weight=0]; 3336[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3336 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3337[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3337 -> 3346[label="",style="solid", color="black", weight=3]; 3335[label="yvy205 < yvy204",fontsize=16,color="black",shape="triangle"];3335 -> 3347[label="",style="solid", color="black", weight=3]; 717[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"];717 -> 878[label="",style="solid", color="black", weight=3]; 718[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"];718 -> 879[label="",style="solid", color="black", weight=3]; 719[label="yvy53",fontsize=16,color="green",shape="box"];720[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];721[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="box"];721 -> 880[label="",style="solid", color="black", weight=3]; 722[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"];722 -> 881[label="",style="solid", color="black", weight=3]; 723[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];723 -> 882[label="",style="solid", color="black", weight=3]; 3338 -> 986[label="",style="dashed", color="red", weight=0]; 3338[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3338 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3338 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3339[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3339 -> 3350[label="",style="solid", color="black", weight=3]; 728[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"];728 -> 885[label="",style="solid", color="black", weight=3]; 729[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"];729 -> 886[label="",style="solid", color="black", weight=3]; 730[label="yvy53",fontsize=16,color="green",shape="box"];731[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];732 -> 2502[label="",style="dashed", color="red", weight=0]; 732[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];732 -> 2545[label="",style="dashed", color="magenta", weight=3]; 732 -> 2546[label="",style="dashed", color="magenta", weight=3]; 732 -> 2547[label="",style="dashed", color="magenta", weight=3]; 733[label="yvy34",fontsize=16,color="green",shape="box"];734[label="yvy33",fontsize=16,color="green",shape="box"];2815[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2815 -> 2890[label="",style="solid", color="black", weight=3]; 2816[label="compare1 Nothing (Just yvy5000) True",fontsize=16,color="black",shape="box"];2816 -> 2891[label="",style="solid", color="black", weight=3]; 2817[label="compare1 (Just yvy4900) Nothing False",fontsize=16,color="black",shape="box"];2817 -> 2892[label="",style="solid", color="black", weight=3]; 2818 -> 2893[label="",style="dashed", color="red", weight=0]; 2818[label="compare1 (Just yvy4900) (Just yvy5000) (yvy4900 <= yvy5000)",fontsize=16,color="magenta"];2818 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2896[label="",style="dashed", color="magenta", weight=3]; 735 -> 2502[label="",style="dashed", color="red", weight=0]; 735[label="compare2 Nothing (Just yvy300) (Nothing == Just yvy300)",fontsize=16,color="magenta"];735 -> 2548[label="",style="dashed", color="magenta", weight=3]; 735 -> 2549[label="",style="dashed", color="magenta", weight=3]; 735 -> 2550[label="",style="dashed", color="magenta", weight=3]; 736[label="yvy34",fontsize=16,color="green",shape="box"];737[label="yvy33",fontsize=16,color="green",shape="box"];738 -> 2502[label="",style="dashed", color="red", weight=0]; 738[label="compare2 (Just yvy400) Nothing (Just yvy400 == Nothing)",fontsize=16,color="magenta"];738 -> 2551[label="",style="dashed", color="magenta", weight=3]; 738 -> 2552[label="",style="dashed", color="magenta", weight=3]; 738 -> 2553[label="",style="dashed", color="magenta", weight=3]; 739[label="yvy34",fontsize=16,color="green",shape="box"];740[label="yvy33",fontsize=16,color="green",shape="box"];2912 -> 2911[label="",style="dashed", color="red", weight=0]; 2912[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2912 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2912 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2913[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4788[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4788[label="",style="solid", color="blue", weight=9]; 4788 -> 2925[label="",style="solid", color="blue", weight=3]; 4789[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4789[label="",style="solid", color="blue", weight=9]; 4789 -> 2926[label="",style="solid", color="blue", weight=3]; 4790[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4790[label="",style="solid", color="blue", weight=9]; 4790 -> 2927[label="",style="solid", color="blue", weight=3]; 4791[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4791[label="",style="solid", color="blue", weight=9]; 4791 -> 2928[label="",style="solid", color="blue", weight=3]; 4792[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4792[label="",style="solid", color="blue", weight=9]; 4792 -> 2929[label="",style="solid", color="blue", weight=3]; 4793[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4793[label="",style="solid", color="blue", weight=9]; 4793 -> 2930[label="",style="solid", color="blue", weight=3]; 4794[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4794[label="",style="solid", color="blue", weight=9]; 4794 -> 2931[label="",style="solid", color="blue", weight=3]; 4795[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4795[label="",style="solid", color="blue", weight=9]; 4795 -> 2932[label="",style="solid", color="blue", weight=3]; 4796[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4796[label="",style="solid", color="blue", weight=9]; 4796 -> 2933[label="",style="solid", color="blue", weight=3]; 4797[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4797[label="",style="solid", color="blue", weight=9]; 4797 -> 2934[label="",style="solid", color="blue", weight=3]; 4798[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4798[label="",style="solid", color="blue", weight=9]; 4798 -> 2935[label="",style="solid", color="blue", weight=3]; 4799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4799[label="",style="solid", color="blue", weight=9]; 4799 -> 2936[label="",style="solid", color="blue", weight=3]; 4800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4800[label="",style="solid", color="blue", weight=9]; 4800 -> 2937[label="",style="solid", color="blue", weight=3]; 4801[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4801[label="",style="solid", color="blue", weight=9]; 4801 -> 2938[label="",style="solid", color="blue", weight=3]; 2911[label="yvy182 && yvy201",fontsize=16,color="burlywood",shape="triangle"];4802[label="yvy182/False",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4802[label="",style="solid", color="burlywood", weight=9]; 4802 -> 2939[label="",style="solid", color="burlywood", weight=3]; 4803[label="yvy182/True",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4803[label="",style="solid", color="burlywood", weight=9]; 4803 -> 2940[label="",style="solid", color="burlywood", weight=3]; 2825[label="yvy3000",fontsize=16,color="green",shape="box"];2826[label="yvy4000",fontsize=16,color="green",shape="box"];2827 -> 2560[label="",style="dashed", color="red", weight=0]; 2827[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2827 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2561[label="",style="dashed", color="red", weight=0]; 2828[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2828 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2562[label="",style="dashed", color="red", weight=0]; 2829[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2829 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2563[label="",style="dashed", color="red", weight=0]; 2830[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2830 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2831 -> 115[label="",style="dashed", color="red", weight=0]; 2831[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2831 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2565[label="",style="dashed", color="red", weight=0]; 2832[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2832 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2566[label="",style="dashed", color="red", weight=0]; 2833[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2833 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2567[label="",style="dashed", color="red", weight=0]; 2834[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2834 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2568[label="",style="dashed", color="red", weight=0]; 2835[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2835 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2569[label="",style="dashed", color="red", weight=0]; 2836[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2836 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2570[label="",style="dashed", color="red", weight=0]; 2837[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2837 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2571[label="",style="dashed", color="red", weight=0]; 2838[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2838 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2572[label="",style="dashed", color="red", weight=0]; 2839[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2839 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2573[label="",style="dashed", color="red", weight=0]; 2840[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2840 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2570[label="",style="dashed", color="red", weight=0]; 2841[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2841 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2914[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4804[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 2971[label="",style="solid", color="blue", weight=3]; 4805[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 2972[label="",style="solid", color="blue", weight=3]; 4806[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 2973[label="",style="solid", color="blue", weight=3]; 4807[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 2974[label="",style="solid", color="blue", weight=3]; 4808[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 2975[label="",style="solid", color="blue", weight=3]; 4809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 2976[label="",style="solid", color="blue", weight=3]; 4810[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 2977[label="",style="solid", color="blue", weight=3]; 4811[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 2978[label="",style="solid", color="blue", weight=3]; 4812[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 2979[label="",style="solid", color="blue", weight=3]; 4813[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 2980[label="",style="solid", color="blue", weight=3]; 4814[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2981[label="",style="solid", color="blue", weight=3]; 4815[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2982[label="",style="solid", color="blue", weight=3]; 4816[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 2983[label="",style="solid", color="blue", weight=3]; 4817[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 2984[label="",style="solid", color="blue", weight=3]; 2915[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2985[label="",style="solid", color="blue", weight=3]; 4819[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2986[label="",style="solid", color="blue", weight=3]; 4820[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2987[label="",style="solid", color="blue", weight=3]; 4821[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2988[label="",style="solid", color="blue", weight=3]; 4822[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 2989[label="",style="solid", color="blue", weight=3]; 4823[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 2990[label="",style="solid", color="blue", weight=3]; 4824[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 2991[label="",style="solid", color="blue", weight=3]; 4825[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 2992[label="",style="solid", color="blue", weight=3]; 4826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 2993[label="",style="solid", color="blue", weight=3]; 4827[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 2994[label="",style="solid", color="blue", weight=3]; 4828[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 2995[label="",style="solid", color="blue", weight=3]; 4829[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 2996[label="",style="solid", color="blue", weight=3]; 4830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 2997[label="",style="solid", color="blue", weight=3]; 4831[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 2998[label="",style="solid", color="blue", weight=3]; 2916[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4832[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4832[label="",style="solid", color="blue", weight=9]; 4832 -> 2999[label="",style="solid", color="blue", weight=3]; 4833[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4833[label="",style="solid", color="blue", weight=9]; 4833 -> 3000[label="",style="solid", color="blue", weight=3]; 2917[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4834[label="",style="solid", color="blue", weight=9]; 4834 -> 3001[label="",style="solid", color="blue", weight=3]; 4835[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 3002[label="",style="solid", color="blue", weight=3]; 2852 -> 2560[label="",style="dashed", color="red", weight=0]; 2852[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2852 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2852 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2561[label="",style="dashed", color="red", weight=0]; 2853[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2853 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2853 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2562[label="",style="dashed", color="red", weight=0]; 2854[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2854 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2854 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2563[label="",style="dashed", color="red", weight=0]; 2855[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2855 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2856 -> 115[label="",style="dashed", color="red", weight=0]; 2856[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2856 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2856 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2565[label="",style="dashed", color="red", weight=0]; 2857[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2857 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2857 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2566[label="",style="dashed", color="red", weight=0]; 2858[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2858 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2858 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2567[label="",style="dashed", color="red", weight=0]; 2859[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2859 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2859 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2568[label="",style="dashed", color="red", weight=0]; 2860[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2860 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2860 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2569[label="",style="dashed", color="red", weight=0]; 2861[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2861 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2861 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2570[label="",style="dashed", color="red", weight=0]; 2862[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2862 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2862 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2863 -> 2571[label="",style="dashed", color="red", weight=0]; 2863[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2863 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2863 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2572[label="",style="dashed", color="red", weight=0]; 2864[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2864 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2864 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2573[label="",style="dashed", color="red", weight=0]; 2865[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2865 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2560[label="",style="dashed", color="red", weight=0]; 2866[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2866 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2866 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2561[label="",style="dashed", color="red", weight=0]; 2867[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2867 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2867 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2562[label="",style="dashed", color="red", weight=0]; 2868[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2868 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2868 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2563[label="",style="dashed", color="red", weight=0]; 2869[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2869 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2869 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2870 -> 115[label="",style="dashed", color="red", weight=0]; 2870[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2870 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2870 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2565[label="",style="dashed", color="red", weight=0]; 2871[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2871 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2871 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2566[label="",style="dashed", color="red", weight=0]; 2872[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2872 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2872 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2567[label="",style="dashed", color="red", weight=0]; 2873[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2873 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2873 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2568[label="",style="dashed", color="red", weight=0]; 2874[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2874 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2874 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2569[label="",style="dashed", color="red", weight=0]; 2875[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2875 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2875 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2570[label="",style="dashed", color="red", weight=0]; 2876[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2876 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2876 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2571[label="",style="dashed", color="red", weight=0]; 2877[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2877 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2877 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2572[label="",style="dashed", color="red", weight=0]; 2878[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2878 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2878 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2573[label="",style="dashed", color="red", weight=0]; 2879[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2879 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2879 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2880[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4836[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4836[label="",style="solid", color="burlywood", weight=9]; 4836 -> 3059[label="",style="solid", color="burlywood", weight=3]; 4837[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4837[label="",style="solid", color="burlywood", weight=9]; 4837 -> 3060[label="",style="solid", color="burlywood", weight=3]; 2881[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2881 -> 3061[label="",style="solid", color="black", weight=3]; 2882[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4838[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4838[label="",style="solid", color="burlywood", weight=9]; 4838 -> 3062[label="",style="solid", color="burlywood", weight=3]; 4839[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4839[label="",style="solid", color="burlywood", weight=9]; 4839 -> 3063[label="",style="solid", color="burlywood", weight=3]; 2883[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4840[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4840[label="",style="solid", color="burlywood", weight=9]; 4840 -> 3064[label="",style="solid", color="burlywood", weight=3]; 4841[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4841[label="",style="solid", color="burlywood", weight=9]; 4841 -> 3065[label="",style="solid", color="burlywood", weight=3]; 2884[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2884 -> 3066[label="",style="solid", color="black", weight=3]; 2885[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4842[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4842[label="",style="solid", color="burlywood", weight=9]; 4842 -> 3067[label="",style="solid", color="burlywood", weight=3]; 4843[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4843[label="",style="solid", color="burlywood", weight=9]; 4843 -> 3068[label="",style="solid", color="burlywood", weight=3]; 2886[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4844[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4844[label="",style="solid", color="burlywood", weight=9]; 4844 -> 3069[label="",style="solid", color="burlywood", weight=3]; 4845[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4845[label="",style="solid", color="burlywood", weight=9]; 4845 -> 3070[label="",style="solid", color="burlywood", weight=3]; 2887[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4846[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4846[label="",style="solid", color="burlywood", weight=9]; 4846 -> 3071[label="",style="solid", color="burlywood", weight=3]; 4847[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4847[label="",style="solid", color="burlywood", weight=9]; 4847 -> 3072[label="",style="solid", color="burlywood", weight=3]; 2888[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4848[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4848[label="",style="solid", color="burlywood", weight=9]; 4848 -> 3073[label="",style="solid", color="burlywood", weight=3]; 4849[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4849[label="",style="solid", color="burlywood", weight=9]; 4849 -> 3074[label="",style="solid", color="burlywood", weight=3]; 2918 -> 2572[label="",style="dashed", color="red", weight=0]; 2918[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2918 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2919[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4850[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4850[label="",style="solid", color="blue", weight=9]; 4850 -> 3077[label="",style="solid", color="blue", weight=3]; 4851[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 3078[label="",style="solid", color="blue", weight=3]; 4852[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 3079[label="",style="solid", color="blue", weight=3]; 4853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 3080[label="",style="solid", color="blue", weight=3]; 4854[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 3081[label="",style="solid", color="blue", weight=3]; 4855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4855[label="",style="solid", color="blue", weight=9]; 4855 -> 3082[label="",style="solid", color="blue", weight=3]; 4856[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4856[label="",style="solid", color="blue", weight=9]; 4856 -> 3083[label="",style="solid", color="blue", weight=3]; 4857[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4857[label="",style="solid", color="blue", weight=9]; 4857 -> 3084[label="",style="solid", color="blue", weight=3]; 4858[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4858[label="",style="solid", color="blue", weight=9]; 4858 -> 3085[label="",style="solid", color="blue", weight=3]; 4859[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4859[label="",style="solid", color="blue", weight=9]; 4859 -> 3086[label="",style="solid", color="blue", weight=3]; 4860[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 3087[label="",style="solid", color="blue", weight=3]; 4861[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 3088[label="",style="solid", color="blue", weight=3]; 4862[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 3089[label="",style="solid", color="blue", weight=3]; 4863[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 3090[label="",style="solid", color="blue", weight=3]; 2889 -> 2570[label="",style="dashed", color="red", weight=0]; 2889[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2889 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2889 -> 3092[label="",style="dashed", color="magenta", weight=3]; 828 -> 2502[label="",style="dashed", color="red", weight=0]; 828[label="compare2 (Just yvy20) (Just yvy15) (Just yvy20 == Just yvy15)",fontsize=16,color="magenta"];828 -> 2554[label="",style="dashed", color="magenta", weight=3]; 828 -> 2555[label="",style="dashed", color="magenta", weight=3]; 828 -> 2556[label="",style="dashed", color="magenta", weight=3]; 829[label="yvy19",fontsize=16,color="green",shape="box"];830[label="yvy18",fontsize=16,color="green",shape="box"];831[label="yvy20",fontsize=16,color="green",shape="box"];832[label="yvy33",fontsize=16,color="green",shape="box"];833[label="yvy34",fontsize=16,color="green",shape="box"];834[label="yvy33",fontsize=16,color="green",shape="box"];835[label="yvy34",fontsize=16,color="green",shape="box"];836[label="yvy33",fontsize=16,color="green",shape="box"];837[label="yvy34",fontsize=16,color="green",shape="box"];838[label="yvy33",fontsize=16,color="green",shape="box"];839[label="yvy35",fontsize=16,color="green",shape="box"];840[label="yvy34",fontsize=16,color="green",shape="box"];841[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];841 -> 1142[label="",style="solid", color="black", weight=3]; 842[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];842 -> 1143[label="",style="solid", color="black", weight=3]; 843[label="Nothing",fontsize=16,color="green",shape="box"];844[label="yvy53",fontsize=16,color="green",shape="box"];845[label="yvy500",fontsize=16,color="green",shape="box"];846[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];846 -> 1144[label="",style="solid", color="black", weight=3]; 847[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];847 -> 1145[label="",style="solid", color="black", weight=3]; 848[label="Nothing",fontsize=16,color="green",shape="box"];849[label="yvy53",fontsize=16,color="green",shape="box"];850[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];850 -> 1146[label="",style="solid", color="black", weight=3]; 851[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];851 -> 1147[label="",style="solid", color="black", weight=3]; 852[label="Just yvy400",fontsize=16,color="green",shape="box"];853[label="yvy53",fontsize=16,color="green",shape="box"];2632[label="yvy500",fontsize=16,color="green",shape="box"];2633[label="yvy500",fontsize=16,color="green",shape="box"];2634[label="yvy500",fontsize=16,color="green",shape="box"];2635[label="yvy500",fontsize=16,color="green",shape="box"];2636[label="yvy500",fontsize=16,color="green",shape="box"];2637[label="yvy500",fontsize=16,color="green",shape="box"];2638[label="yvy500",fontsize=16,color="green",shape="box"];2639[label="yvy500",fontsize=16,color="green",shape="box"];2640[label="yvy500",fontsize=16,color="green",shape="box"];2641[label="yvy500",fontsize=16,color="green",shape="box"];2642[label="yvy500",fontsize=16,color="green",shape="box"];2643[label="yvy500",fontsize=16,color="green",shape="box"];2644[label="yvy500",fontsize=16,color="green",shape="box"];2645[label="yvy500",fontsize=16,color="green",shape="box"];868[label="yvy400",fontsize=16,color="green",shape="box"];869[label="yvy500",fontsize=16,color="green",shape="box"];870[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];870 -> 1148[label="",style="solid", color="black", weight=3]; 871[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];871 -> 1149[label="",style="solid", color="black", weight=3]; 872[label="Just yvy400",fontsize=16,color="green",shape="box"];873[label="yvy53",fontsize=16,color="green",shape="box"];874[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"];874 -> 1150[label="",style="solid", color="black", weight=3]; 875[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4864[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];875 -> 4864[label="",style="solid", color="burlywood", weight=9]; 4864 -> 1151[label="",style="solid", color="burlywood", weight=3]; 4865[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];875 -> 4865[label="",style="solid", color="burlywood", weight=9]; 4865 -> 1152[label="",style="solid", color="burlywood", weight=3]; 3344 -> 1563[label="",style="dashed", color="red", weight=0]; 3344[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3345 -> 1564[label="",style="dashed", color="red", weight=0]; 3345[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];986[label="yvy4001 * yvy3000",fontsize=16,color="black",shape="triangle"];986 -> 1233[label="",style="solid", color="black", weight=3]; 3346 -> 2434[label="",style="dashed", color="red", weight=0]; 3346[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3346 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3347 -> 115[label="",style="dashed", color="red", weight=0]; 3347[label="compare yvy205 yvy204 == LT",fontsize=16,color="magenta"];3347 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3347 -> 3432[label="",style="dashed", color="magenta", weight=3]; 878[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"];878 -> 1154[label="",style="solid", color="black", weight=3]; 879 -> 590[label="",style="dashed", color="red", weight=0]; 879[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];879 -> 1155[label="",style="dashed", color="magenta", weight=3]; 879 -> 1156[label="",style="dashed", color="magenta", weight=3]; 879 -> 1157[label="",style="dashed", color="magenta", weight=3]; 879 -> 1158[label="",style="dashed", color="magenta", weight=3]; 880 -> 1419[label="",style="dashed", color="red", weight=0]; 880[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];880 -> 1420[label="",style="dashed", color="magenta", weight=3]; 881[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"];881 -> 1160[label="",style="solid", color="black", weight=3]; 882[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4866[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];882 -> 4866[label="",style="solid", color="burlywood", weight=9]; 4866 -> 1161[label="",style="solid", color="burlywood", weight=3]; 4867[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];882 -> 4867[label="",style="solid", color="burlywood", weight=9]; 4867 -> 1162[label="",style="solid", color="burlywood", weight=3]; 3348 -> 1563[label="",style="dashed", color="red", weight=0]; 3348[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3349 -> 1591[label="",style="dashed", color="red", weight=0]; 3349[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3350 -> 2434[label="",style="dashed", color="red", weight=0]; 3350[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3350 -> 3433[label="",style="dashed", color="magenta", weight=3]; 885[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"];885 -> 1164[label="",style="solid", color="black", weight=3]; 886 -> 590[label="",style="dashed", color="red", weight=0]; 886[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];886 -> 1165[label="",style="dashed", color="magenta", weight=3]; 886 -> 1166[label="",style="dashed", color="magenta", weight=3]; 886 -> 1167[label="",style="dashed", color="magenta", weight=3]; 886 -> 1168[label="",style="dashed", color="magenta", weight=3]; 2545[label="Nothing",fontsize=16,color="green",shape="box"];2546[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2546 -> 2602[label="",style="solid", color="black", weight=3]; 2547[label="Nothing",fontsize=16,color="green",shape="box"];2890[label="LT",fontsize=16,color="green",shape="box"];2891[label="LT",fontsize=16,color="green",shape="box"];2892[label="compare0 (Just yvy4900) Nothing otherwise",fontsize=16,color="black",shape="box"];2892 -> 3093[label="",style="solid", color="black", weight=3]; 2894[label="yvy5000",fontsize=16,color="green",shape="box"];2895[label="yvy4900 <= yvy5000",fontsize=16,color="blue",shape="box"];4868[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4868[label="",style="solid", color="blue", weight=9]; 4868 -> 3094[label="",style="solid", color="blue", weight=3]; 4869[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4869[label="",style="solid", color="blue", weight=9]; 4869 -> 3095[label="",style="solid", color="blue", weight=3]; 4870[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4870[label="",style="solid", color="blue", weight=9]; 4870 -> 3096[label="",style="solid", color="blue", weight=3]; 4871[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4871[label="",style="solid", color="blue", weight=9]; 4871 -> 3097[label="",style="solid", color="blue", weight=3]; 4872[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4872[label="",style="solid", color="blue", weight=9]; 4872 -> 3098[label="",style="solid", color="blue", weight=3]; 4873[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4873[label="",style="solid", color="blue", weight=9]; 4873 -> 3099[label="",style="solid", color="blue", weight=3]; 4874[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4874[label="",style="solid", color="blue", weight=9]; 4874 -> 3100[label="",style="solid", color="blue", weight=3]; 4875[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4875[label="",style="solid", color="blue", weight=9]; 4875 -> 3101[label="",style="solid", color="blue", weight=3]; 4876[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4876[label="",style="solid", color="blue", weight=9]; 4876 -> 3102[label="",style="solid", color="blue", weight=3]; 4877[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4877[label="",style="solid", color="blue", weight=9]; 4877 -> 3103[label="",style="solid", color="blue", weight=3]; 4878[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4878[label="",style="solid", color="blue", weight=9]; 4878 -> 3104[label="",style="solid", color="blue", weight=3]; 4879[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4879[label="",style="solid", color="blue", weight=9]; 4879 -> 3105[label="",style="solid", color="blue", weight=3]; 4880[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 3106[label="",style="solid", color="blue", weight=3]; 4881[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 3107[label="",style="solid", color="blue", weight=3]; 2896[label="yvy4900",fontsize=16,color="green",shape="box"];2893[label="compare1 (Just yvy198) (Just yvy199) yvy200",fontsize=16,color="burlywood",shape="triangle"];4882[label="yvy200/False",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4882[label="",style="solid", color="burlywood", weight=9]; 4882 -> 3108[label="",style="solid", color="burlywood", weight=3]; 4883[label="yvy200/True",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4883[label="",style="solid", color="burlywood", weight=9]; 4883 -> 3109[label="",style="solid", color="burlywood", weight=3]; 2548[label="Just yvy300",fontsize=16,color="green",shape="box"];2549[label="Nothing == Just yvy300",fontsize=16,color="black",shape="box"];2549 -> 2603[label="",style="solid", color="black", weight=3]; 2550[label="Nothing",fontsize=16,color="green",shape="box"];2551[label="Nothing",fontsize=16,color="green",shape="box"];2552[label="Just yvy400 == Nothing",fontsize=16,color="black",shape="box"];2552 -> 2604[label="",style="solid", color="black", weight=3]; 2553[label="Just yvy400",fontsize=16,color="green",shape="box"];2923[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4884[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 3135[label="",style="solid", color="blue", weight=3]; 4885[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 3136[label="",style="solid", color="blue", weight=3]; 4886[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 3137[label="",style="solid", color="blue", weight=3]; 4887[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 3138[label="",style="solid", color="blue", weight=3]; 4888[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 3139[label="",style="solid", color="blue", weight=3]; 4889[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 3140[label="",style="solid", color="blue", weight=3]; 4890[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 3141[label="",style="solid", color="blue", weight=3]; 4891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 3142[label="",style="solid", color="blue", weight=3]; 4892[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 3143[label="",style="solid", color="blue", weight=3]; 4893[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 3144[label="",style="solid", color="blue", weight=3]; 4894[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 3145[label="",style="solid", color="blue", weight=3]; 4895[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 3146[label="",style="solid", color="blue", weight=3]; 4896[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 3147[label="",style="solid", color="blue", weight=3]; 4897[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 3148[label="",style="solid", color="blue", weight=3]; 2924[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 3149[label="",style="solid", color="blue", weight=3]; 4899[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 3150[label="",style="solid", color="blue", weight=3]; 4900[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 3151[label="",style="solid", color="blue", weight=3]; 4901[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 3152[label="",style="solid", color="blue", weight=3]; 4902[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 3153[label="",style="solid", color="blue", weight=3]; 4903[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 3154[label="",style="solid", color="blue", weight=3]; 4904[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 3155[label="",style="solid", color="blue", weight=3]; 4905[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 3156[label="",style="solid", color="blue", weight=3]; 4906[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 3157[label="",style="solid", color="blue", weight=3]; 4907[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 3158[label="",style="solid", color="blue", weight=3]; 4908[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 3159[label="",style="solid", color="blue", weight=3]; 4909[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4909[label="",style="solid", color="blue", weight=9]; 4909 -> 3160[label="",style="solid", color="blue", weight=3]; 4910[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4910[label="",style="solid", color="blue", weight=9]; 4910 -> 3161[label="",style="solid", color="blue", weight=3]; 4911[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4911[label="",style="solid", color="blue", weight=9]; 4911 -> 3162[label="",style="solid", color="blue", weight=3]; 2925 -> 2560[label="",style="dashed", color="red", weight=0]; 2925[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2925 -> 3163[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3164[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2561[label="",style="dashed", color="red", weight=0]; 2926[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2926 -> 3165[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3166[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2562[label="",style="dashed", color="red", weight=0]; 2927[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2927 -> 3167[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3168[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2563[label="",style="dashed", color="red", weight=0]; 2928[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2928 -> 3169[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3170[label="",style="dashed", color="magenta", weight=3]; 2929 -> 115[label="",style="dashed", color="red", weight=0]; 2929[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2929 -> 3171[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3172[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2565[label="",style="dashed", color="red", weight=0]; 2930[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2930 -> 3173[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3174[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2566[label="",style="dashed", color="red", weight=0]; 2931[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2931 -> 3175[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3176[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2567[label="",style="dashed", color="red", weight=0]; 2932[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2932 -> 3177[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3178[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2568[label="",style="dashed", color="red", weight=0]; 2933[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2933 -> 3179[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3180[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2569[label="",style="dashed", color="red", weight=0]; 2934[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2934 -> 3181[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3182[label="",style="dashed", color="magenta", weight=3]; 2935 -> 2570[label="",style="dashed", color="red", weight=0]; 2935[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2935 -> 3183[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3184[label="",style="dashed", color="magenta", weight=3]; 2936 -> 2571[label="",style="dashed", color="red", weight=0]; 2936[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2936 -> 3185[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3186[label="",style="dashed", color="magenta", weight=3]; 2937 -> 2572[label="",style="dashed", color="red", weight=0]; 2937[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2937 -> 3187[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3188[label="",style="dashed", color="magenta", weight=3]; 2938 -> 2573[label="",style="dashed", color="red", weight=0]; 2938[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2938 -> 3189[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3190[label="",style="dashed", color="magenta", weight=3]; 2939[label="False && yvy201",fontsize=16,color="black",shape="box"];2939 -> 3191[label="",style="solid", color="black", weight=3]; 2940[label="True && yvy201",fontsize=16,color="black",shape="box"];2940 -> 3192[label="",style="solid", color="black", weight=3]; 2941[label="yvy3000",fontsize=16,color="green",shape="box"];2942[label="yvy4000",fontsize=16,color="green",shape="box"];2943[label="yvy3000",fontsize=16,color="green",shape="box"];2944[label="yvy4000",fontsize=16,color="green",shape="box"];2945[label="yvy3000",fontsize=16,color="green",shape="box"];2946[label="yvy4000",fontsize=16,color="green",shape="box"];2947[label="yvy3000",fontsize=16,color="green",shape="box"];2948[label="yvy4000",fontsize=16,color="green",shape="box"];2949[label="yvy3000",fontsize=16,color="green",shape="box"];2950[label="yvy4000",fontsize=16,color="green",shape="box"];2951[label="yvy3000",fontsize=16,color="green",shape="box"];2952[label="yvy4000",fontsize=16,color="green",shape="box"];2953[label="yvy3000",fontsize=16,color="green",shape="box"];2954[label="yvy4000",fontsize=16,color="green",shape="box"];2955[label="yvy3000",fontsize=16,color="green",shape="box"];2956[label="yvy4000",fontsize=16,color="green",shape="box"];2957[label="yvy3000",fontsize=16,color="green",shape="box"];2958[label="yvy4000",fontsize=16,color="green",shape="box"];2959[label="yvy3000",fontsize=16,color="green",shape="box"];2960[label="yvy4000",fontsize=16,color="green",shape="box"];2961[label="yvy3000",fontsize=16,color="green",shape="box"];2962[label="yvy4000",fontsize=16,color="green",shape="box"];2963[label="yvy3000",fontsize=16,color="green",shape="box"];2964[label="yvy4000",fontsize=16,color="green",shape="box"];2965[label="yvy3000",fontsize=16,color="green",shape="box"];2966[label="yvy4000",fontsize=16,color="green",shape="box"];2967[label="yvy3000",fontsize=16,color="green",shape="box"];2968[label="yvy4000",fontsize=16,color="green",shape="box"];2969 -> 986[label="",style="dashed", color="red", weight=0]; 2969[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2970 -> 986[label="",style="dashed", color="red", weight=0]; 2970[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2970 -> 3193[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3194[label="",style="dashed", color="magenta", weight=3]; 2971 -> 2560[label="",style="dashed", color="red", weight=0]; 2971[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2971 -> 3195[label="",style="dashed", color="magenta", weight=3]; 2971 -> 3196[label="",style="dashed", color="magenta", weight=3]; 2972 -> 2561[label="",style="dashed", color="red", weight=0]; 2972[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2972 -> 3197[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3198[label="",style="dashed", color="magenta", weight=3]; 2973 -> 2562[label="",style="dashed", color="red", weight=0]; 2973[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2973 -> 3199[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3200[label="",style="dashed", color="magenta", weight=3]; 2974 -> 2563[label="",style="dashed", color="red", weight=0]; 2974[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2974 -> 3201[label="",style="dashed", color="magenta", weight=3]; 2974 -> 3202[label="",style="dashed", color="magenta", weight=3]; 2975 -> 115[label="",style="dashed", color="red", weight=0]; 2975[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2975 -> 3203[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3204[label="",style="dashed", color="magenta", weight=3]; 2976 -> 2565[label="",style="dashed", color="red", weight=0]; 2976[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2976 -> 3205[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3206[label="",style="dashed", color="magenta", weight=3]; 2977 -> 2566[label="",style="dashed", color="red", weight=0]; 2977[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2977 -> 3207[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3208[label="",style="dashed", color="magenta", weight=3]; 2978 -> 2567[label="",style="dashed", color="red", weight=0]; 2978[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2978 -> 3209[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3210[label="",style="dashed", color="magenta", weight=3]; 2979 -> 2568[label="",style="dashed", color="red", weight=0]; 2979[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2979 -> 3211[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3212[label="",style="dashed", color="magenta", weight=3]; 2980 -> 2569[label="",style="dashed", color="red", weight=0]; 2980[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2980 -> 3213[label="",style="dashed", color="magenta", weight=3]; 2980 -> 3214[label="",style="dashed", color="magenta", weight=3]; 2981 -> 2570[label="",style="dashed", color="red", weight=0]; 2981[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2981 -> 3215[label="",style="dashed", color="magenta", weight=3]; 2981 -> 3216[label="",style="dashed", color="magenta", weight=3]; 2982 -> 2571[label="",style="dashed", color="red", weight=0]; 2982[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2982 -> 3217[label="",style="dashed", color="magenta", weight=3]; 2982 -> 3218[label="",style="dashed", color="magenta", weight=3]; 2983 -> 2572[label="",style="dashed", color="red", weight=0]; 2983[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2983 -> 3219[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3220[label="",style="dashed", color="magenta", weight=3]; 2984 -> 2573[label="",style="dashed", color="red", weight=0]; 2984[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2984 -> 3221[label="",style="dashed", color="magenta", weight=3]; 2984 -> 3222[label="",style="dashed", color="magenta", weight=3]; 2985 -> 2560[label="",style="dashed", color="red", weight=0]; 2985[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2985 -> 3223[label="",style="dashed", color="magenta", weight=3]; 2985 -> 3224[label="",style="dashed", color="magenta", weight=3]; 2986 -> 2561[label="",style="dashed", color="red", weight=0]; 2986[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2986 -> 3225[label="",style="dashed", color="magenta", weight=3]; 2986 -> 3226[label="",style="dashed", color="magenta", weight=3]; 2987 -> 2562[label="",style="dashed", color="red", weight=0]; 2987[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2987 -> 3227[label="",style="dashed", color="magenta", weight=3]; 2987 -> 3228[label="",style="dashed", color="magenta", weight=3]; 2988 -> 2563[label="",style="dashed", color="red", weight=0]; 2988[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2988 -> 3229[label="",style="dashed", color="magenta", weight=3]; 2988 -> 3230[label="",style="dashed", color="magenta", weight=3]; 2989 -> 115[label="",style="dashed", color="red", weight=0]; 2989[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2989 -> 3231[label="",style="dashed", color="magenta", weight=3]; 2989 -> 3232[label="",style="dashed", color="magenta", weight=3]; 2990 -> 2565[label="",style="dashed", color="red", weight=0]; 2990[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2990 -> 3233[label="",style="dashed", color="magenta", weight=3]; 2990 -> 3234[label="",style="dashed", color="magenta", weight=3]; 2991 -> 2566[label="",style="dashed", color="red", weight=0]; 2991[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2991 -> 3235[label="",style="dashed", color="magenta", weight=3]; 2991 -> 3236[label="",style="dashed", color="magenta", weight=3]; 2992 -> 2567[label="",style="dashed", color="red", weight=0]; 2992[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2992 -> 3237[label="",style="dashed", color="magenta", weight=3]; 2992 -> 3238[label="",style="dashed", color="magenta", weight=3]; 2993 -> 2568[label="",style="dashed", color="red", weight=0]; 2993[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2993 -> 3239[label="",style="dashed", color="magenta", weight=3]; 2993 -> 3240[label="",style="dashed", color="magenta", weight=3]; 2994 -> 2569[label="",style="dashed", color="red", weight=0]; 2994[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2994 -> 3241[label="",style="dashed", color="magenta", weight=3]; 2994 -> 3242[label="",style="dashed", color="magenta", weight=3]; 2995 -> 2570[label="",style="dashed", color="red", weight=0]; 2995[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2995 -> 3243[label="",style="dashed", color="magenta", weight=3]; 2995 -> 3244[label="",style="dashed", color="magenta", weight=3]; 2996 -> 2571[label="",style="dashed", color="red", weight=0]; 2996[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2996 -> 3245[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3246[label="",style="dashed", color="magenta", weight=3]; 2997 -> 2572[label="",style="dashed", color="red", weight=0]; 2997[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2997 -> 3247[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3248[label="",style="dashed", color="magenta", weight=3]; 2998 -> 2573[label="",style="dashed", color="red", weight=0]; 2998[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2998 -> 3249[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3250[label="",style="dashed", color="magenta", weight=3]; 2999 -> 2561[label="",style="dashed", color="red", weight=0]; 2999[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2999 -> 3251[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3000 -> 2570[label="",style="dashed", color="red", weight=0]; 3000[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3000 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3001 -> 2561[label="",style="dashed", color="red", weight=0]; 3001[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3001 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3002 -> 2570[label="",style="dashed", color="red", weight=0]; 3002[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3002 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3003[label="yvy3000",fontsize=16,color="green",shape="box"];3004[label="yvy4000",fontsize=16,color="green",shape="box"];3005[label="yvy3000",fontsize=16,color="green",shape="box"];3006[label="yvy4000",fontsize=16,color="green",shape="box"];3007[label="yvy3000",fontsize=16,color="green",shape="box"];3008[label="yvy4000",fontsize=16,color="green",shape="box"];3009[label="yvy3000",fontsize=16,color="green",shape="box"];3010[label="yvy4000",fontsize=16,color="green",shape="box"];3011[label="yvy3000",fontsize=16,color="green",shape="box"];3012[label="yvy4000",fontsize=16,color="green",shape="box"];3013[label="yvy3000",fontsize=16,color="green",shape="box"];3014[label="yvy4000",fontsize=16,color="green",shape="box"];3015[label="yvy3000",fontsize=16,color="green",shape="box"];3016[label="yvy4000",fontsize=16,color="green",shape="box"];3017[label="yvy3000",fontsize=16,color="green",shape="box"];3018[label="yvy4000",fontsize=16,color="green",shape="box"];3019[label="yvy3000",fontsize=16,color="green",shape="box"];3020[label="yvy4000",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[label="yvy3000",fontsize=16,color="green",shape="box"];3050[label="yvy4000",fontsize=16,color="green",shape="box"];3051[label="yvy3000",fontsize=16,color="green",shape="box"];3052[label="yvy4000",fontsize=16,color="green",shape="box"];3053[label="yvy3000",fontsize=16,color="green",shape="box"];3054[label="yvy4000",fontsize=16,color="green",shape="box"];3055[label="yvy3000",fontsize=16,color="green",shape="box"];3056[label="yvy4000",fontsize=16,color="green",shape="box"];3057[label="yvy3000",fontsize=16,color="green",shape="box"];3058[label="yvy4000",fontsize=16,color="green",shape="box"];3059[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3059 -> 3259[label="",style="solid", color="black", weight=3]; 3060[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3060 -> 3260[label="",style="solid", color="black", weight=3]; 3061[label="False",fontsize=16,color="green",shape="box"];3062[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3062 -> 3261[label="",style="solid", color="black", weight=3]; 3063[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3063 -> 3262[label="",style="solid", color="black", weight=3]; 3064[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3064 -> 3263[label="",style="solid", color="black", weight=3]; 3065[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3065 -> 3264[label="",style="solid", color="black", weight=3]; 3066[label="False",fontsize=16,color="green",shape="box"];3067[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3067 -> 3265[label="",style="solid", color="black", weight=3]; 3068[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3068 -> 3266[label="",style="solid", color="black", weight=3]; 3069[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3069 -> 3267[label="",style="solid", color="black", weight=3]; 3070[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3070 -> 3268[label="",style="solid", color="black", weight=3]; 3071[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3071 -> 3269[label="",style="solid", color="black", weight=3]; 3072[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3072 -> 3270[label="",style="solid", color="black", weight=3]; 3073[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4912[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4912[label="",style="solid", color="burlywood", weight=9]; 4912 -> 3271[label="",style="solid", color="burlywood", weight=3]; 4913[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4913[label="",style="solid", color="burlywood", weight=9]; 4913 -> 3272[label="",style="solid", color="burlywood", weight=3]; 3074[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4914[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4914[label="",style="solid", color="burlywood", weight=9]; 4914 -> 3273[label="",style="solid", color="burlywood", weight=3]; 4915[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 3274[label="",style="solid", color="burlywood", weight=3]; 3075[label="yvy3001",fontsize=16,color="green",shape="box"];3076[label="yvy4001",fontsize=16,color="green",shape="box"];3077 -> 2560[label="",style="dashed", color="red", weight=0]; 3077[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3077 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3078 -> 2561[label="",style="dashed", color="red", weight=0]; 3078[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3078 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3079 -> 2562[label="",style="dashed", color="red", weight=0]; 3079[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3079 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3080 -> 2563[label="",style="dashed", color="red", weight=0]; 3080[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3080 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3081 -> 115[label="",style="dashed", color="red", weight=0]; 3081[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3081 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3082 -> 2565[label="",style="dashed", color="red", weight=0]; 3082[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3082 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3083 -> 2566[label="",style="dashed", color="red", weight=0]; 3083[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3083 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3084 -> 2567[label="",style="dashed", color="red", weight=0]; 3084[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3084 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3085 -> 2568[label="",style="dashed", color="red", weight=0]; 3085[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3085 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3086 -> 2569[label="",style="dashed", color="red", weight=0]; 3086[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3086 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3087 -> 2570[label="",style="dashed", color="red", weight=0]; 3087[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3087 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3088 -> 2571[label="",style="dashed", color="red", weight=0]; 3088[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3088 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3089 -> 2572[label="",style="dashed", color="red", weight=0]; 3089[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3089 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3090 -> 2573[label="",style="dashed", color="red", weight=0]; 3090[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3090 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3091 -> 986[label="",style="dashed", color="red", weight=0]; 3091[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3091 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3092 -> 986[label="",style="dashed", color="red", weight=0]; 3092[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3092 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3306[label="",style="dashed", color="magenta", weight=3]; 2554[label="Just yvy15",fontsize=16,color="green",shape="box"];2555[label="Just yvy20 == Just yvy15",fontsize=16,color="black",shape="box"];2555 -> 2605[label="",style="solid", color="black", weight=3]; 2556[label="Just yvy20",fontsize=16,color="green",shape="box"];1142[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1142 -> 1388[label="",style="solid", color="black", weight=3]; 1143 -> 590[label="",style="dashed", color="red", weight=0]; 1143[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1143 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1144[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1144 -> 1392[label="",style="solid", color="black", weight=3]; 1145 -> 590[label="",style="dashed", color="red", weight=0]; 1145[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1145 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1146[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1146 -> 1396[label="",style="solid", color="black", weight=3]; 1147 -> 590[label="",style="dashed", color="red", weight=0]; 1147[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1147 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1148[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1148 -> 1400[label="",style="solid", color="black", weight=3]; 1149 -> 590[label="",style="dashed", color="red", weight=0]; 1149[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1149 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1150[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"];1150 -> 1404[label="",style="solid", color="black", weight=3]; 1151[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4916[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1151 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 1405[label="",style="solid", color="burlywood", weight=3]; 4917[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1151 -> 4917[label="",style="solid", color="burlywood", weight=9]; 4917 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1152[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4918[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4918[label="",style="solid", color="burlywood", weight=9]; 4918 -> 1407[label="",style="solid", color="burlywood", weight=3]; 4919[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4919[label="",style="solid", color="burlywood", weight=9]; 4919 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1563[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1563 -> 1700[label="",style="solid", color="black", weight=3]; 1564[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1564 -> 1701[label="",style="solid", color="black", weight=3]; 1233[label="primMulInt yvy4001 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4920[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4920[label="",style="solid", color="burlywood", weight=9]; 4920 -> 1506[label="",style="solid", color="burlywood", weight=3]; 4921[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4921[label="",style="solid", color="burlywood", weight=9]; 4921 -> 1507[label="",style="solid", color="burlywood", weight=3]; 3430[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];2434[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4922[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2434 -> 4922[label="",style="solid", color="burlywood", weight=9]; 4922 -> 2456[label="",style="solid", color="burlywood", weight=3]; 4923[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2434 -> 4923[label="",style="solid", color="burlywood", weight=9]; 4923 -> 2457[label="",style="solid", color="burlywood", weight=3]; 3431[label="LT",fontsize=16,color="green",shape="box"];3432 -> 1649[label="",style="dashed", color="red", weight=0]; 3432[label="compare yvy205 yvy204",fontsize=16,color="magenta"];3432 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3446[label="",style="dashed", color="magenta", weight=3]; 1154[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"];1154 -> 1416[label="",style="solid", color="black", weight=3]; 1155[label="yvy60",fontsize=16,color="green",shape="box"];1156 -> 12[label="",style="dashed", color="red", weight=0]; 1156[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1156 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1157[label="yvy63",fontsize=16,color="green",shape="box"];1158[label="yvy61",fontsize=16,color="green",shape="box"];1420 -> 3335[label="",style="dashed", color="red", weight=0]; 1420[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];1420 -> 3340[label="",style="dashed", color="magenta", weight=3]; 1420 -> 3341[label="",style="dashed", color="magenta", weight=3]; 1419[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy106",fontsize=16,color="burlywood",shape="triangle"];4924[label="yvy106/False",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4924[label="",style="solid", color="burlywood", weight=9]; 4924 -> 1424[label="",style="solid", color="burlywood", weight=3]; 4925[label="yvy106/True",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4925[label="",style="solid", color="burlywood", weight=9]; 4925 -> 1425[label="",style="solid", color="burlywood", weight=3]; 1160[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"];1160 -> 1426[label="",style="solid", color="black", weight=3]; 1161[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4926[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4926[label="",style="solid", color="burlywood", weight=9]; 4926 -> 1427[label="",style="solid", color="burlywood", weight=3]; 4927[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4927[label="",style="solid", color="burlywood", weight=9]; 4927 -> 1428[label="",style="solid", color="burlywood", weight=3]; 1162[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4928[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4928[label="",style="solid", color="burlywood", weight=9]; 4928 -> 1429[label="",style="solid", color="burlywood", weight=3]; 4929[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4929[label="",style="solid", color="burlywood", weight=9]; 4929 -> 1430[label="",style="solid", color="burlywood", weight=3]; 1591[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1591 -> 1713[label="",style="solid", color="black", weight=3]; 3433[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];1164[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"];1164 -> 1433[label="",style="solid", color="black", weight=3]; 1165[label="yvy60",fontsize=16,color="green",shape="box"];1166 -> 12[label="",style="dashed", color="red", weight=0]; 1166[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1166 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1167[label="yvy63",fontsize=16,color="green",shape="box"];1168[label="yvy61",fontsize=16,color="green",shape="box"];2602[label="True",fontsize=16,color="green",shape="box"];3093[label="compare0 (Just yvy4900) Nothing True",fontsize=16,color="black",shape="box"];3093 -> 3307[label="",style="solid", color="black", weight=3]; 3094[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3094 -> 3308[label="",style="solid", color="black", weight=3]; 3095[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3095 -> 3309[label="",style="solid", color="black", weight=3]; 3096[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3096 -> 3310[label="",style="solid", color="black", weight=3]; 3097[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3097 -> 3311[label="",style="solid", color="black", weight=3]; 3098[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3098 -> 3312[label="",style="solid", color="black", weight=3]; 3099[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3099 -> 3313[label="",style="solid", color="black", weight=3]; 3100[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4930[label="yvy4900/(yvy49000,yvy49001)",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4930[label="",style="solid", color="burlywood", weight=9]; 4930 -> 3314[label="",style="solid", color="burlywood", weight=3]; 3101[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4931[label="yvy4900/(yvy49000,yvy49001,yvy49002)",fontsize=10,color="white",style="solid",shape="box"];3101 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 3315[label="",style="solid", color="burlywood", weight=3]; 3102[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4932[label="yvy4900/False",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4932[label="",style="solid", color="burlywood", weight=9]; 4932 -> 3316[label="",style="solid", color="burlywood", weight=3]; 4933[label="yvy4900/True",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 3317[label="",style="solid", color="burlywood", weight=3]; 3103[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4934[label="yvy4900/Nothing",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4934[label="",style="solid", color="burlywood", weight=9]; 4934 -> 3318[label="",style="solid", color="burlywood", weight=3]; 4935[label="yvy4900/Just yvy49000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4935[label="",style="solid", color="burlywood", weight=9]; 4935 -> 3319[label="",style="solid", color="burlywood", weight=3]; 3104[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4936[label="yvy4900/Left yvy49000",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4936[label="",style="solid", color="burlywood", weight=9]; 4936 -> 3320[label="",style="solid", color="burlywood", weight=3]; 4937[label="yvy4900/Right yvy49000",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4937[label="",style="solid", color="burlywood", weight=9]; 4937 -> 3321[label="",style="solid", color="burlywood", weight=3]; 3105[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4938[label="yvy4900/LT",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4938[label="",style="solid", color="burlywood", weight=9]; 4938 -> 3322[label="",style="solid", color="burlywood", weight=3]; 4939[label="yvy4900/EQ",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4939[label="",style="solid", color="burlywood", weight=9]; 4939 -> 3323[label="",style="solid", color="burlywood", weight=3]; 4940[label="yvy4900/GT",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4940[label="",style="solid", color="burlywood", weight=9]; 4940 -> 3324[label="",style="solid", color="burlywood", weight=3]; 3106[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3106 -> 3325[label="",style="solid", color="black", weight=3]; 3107[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3107 -> 3326[label="",style="solid", color="black", weight=3]; 3108[label="compare1 (Just yvy198) (Just yvy199) False",fontsize=16,color="black",shape="box"];3108 -> 3327[label="",style="solid", color="black", weight=3]; 3109[label="compare1 (Just yvy198) (Just yvy199) True",fontsize=16,color="black",shape="box"];3109 -> 3328[label="",style="solid", color="black", weight=3]; 2603[label="False",fontsize=16,color="green",shape="box"];2604[label="False",fontsize=16,color="green",shape="box"];3135 -> 2560[label="",style="dashed", color="red", weight=0]; 3135[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3135 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3135 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3136 -> 2561[label="",style="dashed", color="red", weight=0]; 3136[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3136 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3137 -> 2562[label="",style="dashed", color="red", weight=0]; 3137[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3137 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3138 -> 2563[label="",style="dashed", color="red", weight=0]; 3138[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3138 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3139 -> 115[label="",style="dashed", color="red", weight=0]; 3139[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3139 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3140 -> 2565[label="",style="dashed", color="red", weight=0]; 3140[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3140 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3141 -> 2566[label="",style="dashed", color="red", weight=0]; 3141[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3141 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3142 -> 2567[label="",style="dashed", color="red", weight=0]; 3142[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3142 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3143 -> 2568[label="",style="dashed", color="red", weight=0]; 3143[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3143 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3144 -> 2569[label="",style="dashed", color="red", weight=0]; 3144[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3144 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3145 -> 2570[label="",style="dashed", color="red", weight=0]; 3145[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3145 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3146 -> 2571[label="",style="dashed", color="red", weight=0]; 3146[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3146 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3147 -> 2572[label="",style="dashed", color="red", weight=0]; 3147[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3147 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3148 -> 2573[label="",style="dashed", color="red", weight=0]; 3148[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3148 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3149 -> 2560[label="",style="dashed", color="red", weight=0]; 3149[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3149 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3150 -> 2561[label="",style="dashed", color="red", weight=0]; 3150[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3150 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3151 -> 2562[label="",style="dashed", color="red", weight=0]; 3151[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3151 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3152 -> 2563[label="",style="dashed", color="red", weight=0]; 3152[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3152 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3153 -> 115[label="",style="dashed", color="red", weight=0]; 3153[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3153 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3154 -> 2565[label="",style="dashed", color="red", weight=0]; 3154[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3154 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3155 -> 2566[label="",style="dashed", color="red", weight=0]; 3155[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3155 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2567[label="",style="dashed", color="red", weight=0]; 3156[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3156 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3157 -> 2568[label="",style="dashed", color="red", weight=0]; 3157[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3157 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3158 -> 2569[label="",style="dashed", color="red", weight=0]; 3158[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3158 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3159 -> 2570[label="",style="dashed", color="red", weight=0]; 3159[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3159 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3160 -> 2571[label="",style="dashed", color="red", weight=0]; 3160[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3160 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2572[label="",style="dashed", color="red", weight=0]; 3161[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3161 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3162 -> 2573[label="",style="dashed", color="red", weight=0]; 3162[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3162 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3406[label="",style="dashed", color="magenta", weight=3]; 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="yvy3000",fontsize=16,color="green",shape="box"];3188[label="yvy4000",fontsize=16,color="green",shape="box"];3189[label="yvy3000",fontsize=16,color="green",shape="box"];3190[label="yvy4000",fontsize=16,color="green",shape="box"];3191[label="False",fontsize=16,color="green",shape="box"];3192[label="yvy201",fontsize=16,color="green",shape="box"];3193[label="yvy4000",fontsize=16,color="green",shape="box"];3194[label="yvy3001",fontsize=16,color="green",shape="box"];3195[label="yvy3001",fontsize=16,color="green",shape="box"];3196[label="yvy4001",fontsize=16,color="green",shape="box"];3197[label="yvy3001",fontsize=16,color="green",shape="box"];3198[label="yvy4001",fontsize=16,color="green",shape="box"];3199[label="yvy3001",fontsize=16,color="green",shape="box"];3200[label="yvy4001",fontsize=16,color="green",shape="box"];3201[label="yvy3001",fontsize=16,color="green",shape="box"];3202[label="yvy4001",fontsize=16,color="green",shape="box"];3203[label="yvy3001",fontsize=16,color="green",shape="box"];3204[label="yvy4001",fontsize=16,color="green",shape="box"];3205[label="yvy3001",fontsize=16,color="green",shape="box"];3206[label="yvy4001",fontsize=16,color="green",shape="box"];3207[label="yvy3001",fontsize=16,color="green",shape="box"];3208[label="yvy4001",fontsize=16,color="green",shape="box"];3209[label="yvy3001",fontsize=16,color="green",shape="box"];3210[label="yvy4001",fontsize=16,color="green",shape="box"];3211[label="yvy3001",fontsize=16,color="green",shape="box"];3212[label="yvy4001",fontsize=16,color="green",shape="box"];3213[label="yvy3001",fontsize=16,color="green",shape="box"];3214[label="yvy4001",fontsize=16,color="green",shape="box"];3215[label="yvy3001",fontsize=16,color="green",shape="box"];3216[label="yvy4001",fontsize=16,color="green",shape="box"];3217[label="yvy3001",fontsize=16,color="green",shape="box"];3218[label="yvy4001",fontsize=16,color="green",shape="box"];3219[label="yvy3001",fontsize=16,color="green",shape="box"];3220[label="yvy4001",fontsize=16,color="green",shape="box"];3221[label="yvy3001",fontsize=16,color="green",shape="box"];3222[label="yvy4001",fontsize=16,color="green",shape="box"];3223[label="yvy3000",fontsize=16,color="green",shape="box"];3224[label="yvy4000",fontsize=16,color="green",shape="box"];3225[label="yvy3000",fontsize=16,color="green",shape="box"];3226[label="yvy4000",fontsize=16,color="green",shape="box"];3227[label="yvy3000",fontsize=16,color="green",shape="box"];3228[label="yvy4000",fontsize=16,color="green",shape="box"];3229[label="yvy3000",fontsize=16,color="green",shape="box"];3230[label="yvy4000",fontsize=16,color="green",shape="box"];3231[label="yvy3000",fontsize=16,color="green",shape="box"];3232[label="yvy4000",fontsize=16,color="green",shape="box"];3233[label="yvy3000",fontsize=16,color="green",shape="box"];3234[label="yvy4000",fontsize=16,color="green",shape="box"];3235[label="yvy3000",fontsize=16,color="green",shape="box"];3236[label="yvy4000",fontsize=16,color="green",shape="box"];3237[label="yvy3000",fontsize=16,color="green",shape="box"];3238[label="yvy4000",fontsize=16,color="green",shape="box"];3239[label="yvy3000",fontsize=16,color="green",shape="box"];3240[label="yvy4000",fontsize=16,color="green",shape="box"];3241[label="yvy3000",fontsize=16,color="green",shape="box"];3242[label="yvy4000",fontsize=16,color="green",shape="box"];3243[label="yvy3000",fontsize=16,color="green",shape="box"];3244[label="yvy4000",fontsize=16,color="green",shape="box"];3245[label="yvy3000",fontsize=16,color="green",shape="box"];3246[label="yvy4000",fontsize=16,color="green",shape="box"];3247[label="yvy3000",fontsize=16,color="green",shape="box"];3248[label="yvy4000",fontsize=16,color="green",shape="box"];3249[label="yvy3000",fontsize=16,color="green",shape="box"];3250[label="yvy4000",fontsize=16,color="green",shape="box"];3251[label="yvy3001",fontsize=16,color="green",shape="box"];3252[label="yvy4001",fontsize=16,color="green",shape="box"];3253[label="yvy3001",fontsize=16,color="green",shape="box"];3254[label="yvy4001",fontsize=16,color="green",shape="box"];3255[label="yvy3000",fontsize=16,color="green",shape="box"];3256[label="yvy4000",fontsize=16,color="green",shape="box"];3257[label="yvy3000",fontsize=16,color="green",shape="box"];3258[label="yvy4000",fontsize=16,color="green",shape="box"];3259 -> 2888[label="",style="dashed", color="red", weight=0]; 3259[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3259 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3259 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3260[label="False",fontsize=16,color="green",shape="box"];3261[label="False",fontsize=16,color="green",shape="box"];3262[label="True",fontsize=16,color="green",shape="box"];3263[label="False",fontsize=16,color="green",shape="box"];3264[label="True",fontsize=16,color="green",shape="box"];3265 -> 2888[label="",style="dashed", color="red", weight=0]; 3265[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3265 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3265 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3266[label="False",fontsize=16,color="green",shape="box"];3267[label="False",fontsize=16,color="green",shape="box"];3268[label="True",fontsize=16,color="green",shape="box"];3269[label="False",fontsize=16,color="green",shape="box"];3270[label="True",fontsize=16,color="green",shape="box"];3271[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3271 -> 3411[label="",style="solid", color="black", weight=3]; 3272[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3272 -> 3412[label="",style="solid", color="black", weight=3]; 3273[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3273 -> 3413[label="",style="solid", color="black", weight=3]; 3274[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3274 -> 3414[label="",style="solid", color="black", weight=3]; 3275[label="yvy3000",fontsize=16,color="green",shape="box"];3276[label="yvy4000",fontsize=16,color="green",shape="box"];3277[label="yvy3000",fontsize=16,color="green",shape="box"];3278[label="yvy4000",fontsize=16,color="green",shape="box"];3279[label="yvy3000",fontsize=16,color="green",shape="box"];3280[label="yvy4000",fontsize=16,color="green",shape="box"];3281[label="yvy3000",fontsize=16,color="green",shape="box"];3282[label="yvy4000",fontsize=16,color="green",shape="box"];3283[label="yvy3000",fontsize=16,color="green",shape="box"];3284[label="yvy4000",fontsize=16,color="green",shape="box"];3285[label="yvy3000",fontsize=16,color="green",shape="box"];3286[label="yvy4000",fontsize=16,color="green",shape="box"];3287[label="yvy3000",fontsize=16,color="green",shape="box"];3288[label="yvy4000",fontsize=16,color="green",shape="box"];3289[label="yvy3000",fontsize=16,color="green",shape="box"];3290[label="yvy4000",fontsize=16,color="green",shape="box"];3291[label="yvy3000",fontsize=16,color="green",shape="box"];3292[label="yvy4000",fontsize=16,color="green",shape="box"];3293[label="yvy3000",fontsize=16,color="green",shape="box"];3294[label="yvy4000",fontsize=16,color="green",shape="box"];3295[label="yvy3000",fontsize=16,color="green",shape="box"];3296[label="yvy4000",fontsize=16,color="green",shape="box"];3297[label="yvy3000",fontsize=16,color="green",shape="box"];3298[label="yvy4000",fontsize=16,color="green",shape="box"];3299[label="yvy3000",fontsize=16,color="green",shape="box"];3300[label="yvy4000",fontsize=16,color="green",shape="box"];3301[label="yvy3000",fontsize=16,color="green",shape="box"];3302[label="yvy4000",fontsize=16,color="green",shape="box"];3303[label="yvy4001",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="yvy3001",fontsize=16,color="green",shape="box"];2605[label="yvy20 == yvy15",fontsize=16,color="blue",shape="box"];4941[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 2646[label="",style="solid", color="blue", weight=3]; 4942[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4942[label="",style="solid", color="blue", weight=9]; 4942 -> 2647[label="",style="solid", color="blue", weight=3]; 4943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 2648[label="",style="solid", color="blue", weight=3]; 4944[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 2649[label="",style="solid", color="blue", weight=3]; 4945[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 2650[label="",style="solid", color="blue", weight=3]; 4946[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 2651[label="",style="solid", color="blue", weight=3]; 4947[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 2652[label="",style="solid", color="blue", weight=3]; 4948[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 2653[label="",style="solid", color="blue", weight=3]; 4949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 2654[label="",style="solid", color="blue", weight=3]; 4950[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 2655[label="",style="solid", color="blue", weight=3]; 4951[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 2656[label="",style="solid", color="blue", weight=3]; 4952[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 2657[label="",style="solid", color="blue", weight=3]; 4953[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 2658[label="",style="solid", color="blue", weight=3]; 4954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4954[label="",style="solid", color="blue", weight=9]; 4954 -> 2659[label="",style="solid", color="blue", weight=3]; 1388[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1388 -> 1546[label="",style="solid", color="black", weight=3]; 1389[label="Nothing",fontsize=16,color="green",shape="box"];1390 -> 33[label="",style="dashed", color="red", weight=0]; 1390[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1390 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1391[label="yvy53",fontsize=16,color="green",shape="box"];1392[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1392 -> 1549[label="",style="solid", color="black", weight=3]; 1393[label="Just yvy500",fontsize=16,color="green",shape="box"];1394 -> 33[label="",style="dashed", color="red", weight=0]; 1394[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1394 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1395[label="yvy53",fontsize=16,color="green",shape="box"];1396[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1396 -> 1552[label="",style="solid", color="black", weight=3]; 1397[label="Nothing",fontsize=16,color="green",shape="box"];1398 -> 33[label="",style="dashed", color="red", weight=0]; 1398[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1398 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1399[label="yvy53",fontsize=16,color="green",shape="box"];1400[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1400 -> 1555[label="",style="solid", color="black", weight=3]; 1401[label="Just yvy500",fontsize=16,color="green",shape="box"];1402 -> 33[label="",style="dashed", color="red", weight=0]; 1402[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1402 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1403[label="yvy53",fontsize=16,color="green",shape="box"];1404[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"];1404 -> 1558[label="",style="solid", color="black", weight=3]; 1405[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1405 -> 1559[label="",style="solid", color="black", weight=3]; 1406[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1406 -> 1560[label="",style="solid", color="black", weight=3]; 1407[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1407 -> 1561[label="",style="solid", color="black", weight=3]; 1408[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1408 -> 1562[label="",style="solid", color="black", weight=3]; 1700[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1701[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];1701 -> 1837[label="",style="solid", color="black", weight=3]; 1506[label="primMulInt (Pos yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4955[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4955[label="",style="solid", color="burlywood", weight=9]; 4955 -> 1636[label="",style="solid", color="burlywood", weight=3]; 4956[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4956[label="",style="solid", color="burlywood", weight=9]; 4956 -> 1637[label="",style="solid", color="burlywood", weight=3]; 1507[label="primMulInt (Neg yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4957[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4957[label="",style="solid", color="burlywood", weight=9]; 4957 -> 1638[label="",style="solid", color="burlywood", weight=3]; 4958[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4958[label="",style="solid", color="burlywood", weight=9]; 4958 -> 1639[label="",style="solid", color="burlywood", weight=3]; 2456[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2456 -> 2491[label="",style="solid", color="black", weight=3]; 2457[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2457 -> 2492[label="",style="solid", color="black", weight=3]; 3445[label="yvy205",fontsize=16,color="green",shape="box"];3446[label="yvy204",fontsize=16,color="green",shape="box"];1649[label="compare yvy49 yvy50",fontsize=16,color="black",shape="triangle"];1649 -> 1727[label="",style="solid", color="black", weight=3]; 1416 -> 4372[label="",style="dashed", color="red", weight=0]; 1416[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"];1416 -> 4373[label="",style="dashed", color="magenta", weight=3]; 1416 -> 4374[label="",style="dashed", color="magenta", weight=3]; 1416 -> 4375[label="",style="dashed", color="magenta", weight=3]; 1416 -> 4376[label="",style="dashed", color="magenta", weight=3]; 1416 -> 4377[label="",style="dashed", color="magenta", weight=3]; 1417[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1418[label="yvy64",fontsize=16,color="green",shape="box"];3340 -> 3415[label="",style="dashed", color="red", weight=0]; 3340[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3340 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3340 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3341[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1424[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1424 -> 1583[label="",style="solid", color="black", weight=3]; 1425[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1425 -> 1584[label="",style="solid", color="black", weight=3]; 1426[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"];1426 -> 1585[label="",style="solid", color="black", weight=3]; 1427[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1427 -> 1586[label="",style="solid", color="black", weight=3]; 1428[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1428 -> 1587[label="",style="solid", color="black", weight=3]; 1429[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1429 -> 1588[label="",style="solid", color="black", weight=3]; 1430[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1430 -> 1589[label="",style="solid", color="black", weight=3]; 1713 -> 1701[label="",style="dashed", color="red", weight=0]; 1713[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1433 -> 4372[label="",style="dashed", color="red", weight=0]; 1433[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"];1433 -> 4378[label="",style="dashed", color="magenta", weight=3]; 1433 -> 4379[label="",style="dashed", color="magenta", weight=3]; 1433 -> 4380[label="",style="dashed", color="magenta", weight=3]; 1433 -> 4381[label="",style="dashed", color="magenta", weight=3]; 1433 -> 4382[label="",style="dashed", color="magenta", weight=3]; 1434[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1435[label="yvy64",fontsize=16,color="green",shape="box"];3307[label="GT",fontsize=16,color="green",shape="box"];3308 -> 3436[label="",style="dashed", color="red", weight=0]; 3308[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3308 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3436[label="",style="dashed", color="red", weight=0]; 3309[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3309 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3436[label="",style="dashed", color="red", weight=0]; 3310[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3310 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3436[label="",style="dashed", color="red", weight=0]; 3311[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3311 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3436[label="",style="dashed", color="red", weight=0]; 3312[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3312 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3436[label="",style="dashed", color="red", weight=0]; 3313[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3313 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3314[label="(yvy49000,yvy49001) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4959[label="yvy5000/(yvy50000,yvy50001)",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4959[label="",style="solid", color="burlywood", weight=9]; 4959 -> 3447[label="",style="solid", color="burlywood", weight=3]; 3315[label="(yvy49000,yvy49001,yvy49002) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4960[label="yvy5000/(yvy50000,yvy50001,yvy50002)",fontsize=10,color="white",style="solid",shape="box"];3315 -> 4960[label="",style="solid", color="burlywood", weight=9]; 4960 -> 3448[label="",style="solid", color="burlywood", weight=3]; 3316[label="False <= yvy5000",fontsize=16,color="burlywood",shape="box"];4961[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3316 -> 4961[label="",style="solid", color="burlywood", weight=9]; 4961 -> 3449[label="",style="solid", color="burlywood", weight=3]; 4962[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3316 -> 4962[label="",style="solid", color="burlywood", weight=9]; 4962 -> 3450[label="",style="solid", color="burlywood", weight=3]; 3317[label="True <= yvy5000",fontsize=16,color="burlywood",shape="box"];4963[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3317 -> 4963[label="",style="solid", color="burlywood", weight=9]; 4963 -> 3451[label="",style="solid", color="burlywood", weight=3]; 4964[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3317 -> 4964[label="",style="solid", color="burlywood", weight=9]; 4964 -> 3452[label="",style="solid", color="burlywood", weight=3]; 3318[label="Nothing <= yvy5000",fontsize=16,color="burlywood",shape="box"];4965[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4965[label="",style="solid", color="burlywood", weight=9]; 4965 -> 3453[label="",style="solid", color="burlywood", weight=3]; 4966[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4966[label="",style="solid", color="burlywood", weight=9]; 4966 -> 3454[label="",style="solid", color="burlywood", weight=3]; 3319[label="Just yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4967[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3319 -> 4967[label="",style="solid", color="burlywood", weight=9]; 4967 -> 3455[label="",style="solid", color="burlywood", weight=3]; 4968[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3319 -> 4968[label="",style="solid", color="burlywood", weight=9]; 4968 -> 3456[label="",style="solid", color="burlywood", weight=3]; 3320[label="Left yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4969[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4969[label="",style="solid", color="burlywood", weight=9]; 4969 -> 3457[label="",style="solid", color="burlywood", weight=3]; 4970[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3320 -> 4970[label="",style="solid", color="burlywood", weight=9]; 4970 -> 3458[label="",style="solid", color="burlywood", weight=3]; 3321[label="Right yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4971[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3321 -> 4971[label="",style="solid", color="burlywood", weight=9]; 4971 -> 3459[label="",style="solid", color="burlywood", weight=3]; 4972[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3321 -> 4972[label="",style="solid", color="burlywood", weight=9]; 4972 -> 3460[label="",style="solid", color="burlywood", weight=3]; 3322[label="LT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4973[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4973[label="",style="solid", color="burlywood", weight=9]; 4973 -> 3461[label="",style="solid", color="burlywood", weight=3]; 4974[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4974[label="",style="solid", color="burlywood", weight=9]; 4974 -> 3462[label="",style="solid", color="burlywood", weight=3]; 4975[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4975[label="",style="solid", color="burlywood", weight=9]; 4975 -> 3463[label="",style="solid", color="burlywood", weight=3]; 3323[label="EQ <= yvy5000",fontsize=16,color="burlywood",shape="box"];4976[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4976[label="",style="solid", color="burlywood", weight=9]; 4976 -> 3464[label="",style="solid", color="burlywood", weight=3]; 4977[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4977[label="",style="solid", color="burlywood", weight=9]; 4977 -> 3465[label="",style="solid", color="burlywood", weight=3]; 4978[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4978[label="",style="solid", color="burlywood", weight=9]; 4978 -> 3466[label="",style="solid", color="burlywood", weight=3]; 3324[label="GT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4979[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4979[label="",style="solid", color="burlywood", weight=9]; 4979 -> 3467[label="",style="solid", color="burlywood", weight=3]; 4980[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4980[label="",style="solid", color="burlywood", weight=9]; 4980 -> 3468[label="",style="solid", color="burlywood", weight=3]; 4981[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4981[label="",style="solid", color="burlywood", weight=9]; 4981 -> 3469[label="",style="solid", color="burlywood", weight=3]; 3325 -> 3436[label="",style="dashed", color="red", weight=0]; 3325[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3325 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3436[label="",style="dashed", color="red", weight=0]; 3326[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3326 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3327[label="compare0 (Just yvy198) (Just yvy199) otherwise",fontsize=16,color="black",shape="box"];3327 -> 3470[label="",style="solid", color="black", weight=3]; 3328[label="LT",fontsize=16,color="green",shape="box"];3351[label="yvy3002",fontsize=16,color="green",shape="box"];3352[label="yvy4002",fontsize=16,color="green",shape="box"];3353[label="yvy3002",fontsize=16,color="green",shape="box"];3354[label="yvy4002",fontsize=16,color="green",shape="box"];3355[label="yvy3002",fontsize=16,color="green",shape="box"];3356[label="yvy4002",fontsize=16,color="green",shape="box"];3357[label="yvy3002",fontsize=16,color="green",shape="box"];3358[label="yvy4002",fontsize=16,color="green",shape="box"];3359[label="yvy3002",fontsize=16,color="green",shape="box"];3360[label="yvy4002",fontsize=16,color="green",shape="box"];3361[label="yvy3002",fontsize=16,color="green",shape="box"];3362[label="yvy4002",fontsize=16,color="green",shape="box"];3363[label="yvy3002",fontsize=16,color="green",shape="box"];3364[label="yvy4002",fontsize=16,color="green",shape="box"];3365[label="yvy3002",fontsize=16,color="green",shape="box"];3366[label="yvy4002",fontsize=16,color="green",shape="box"];3367[label="yvy3002",fontsize=16,color="green",shape="box"];3368[label="yvy4002",fontsize=16,color="green",shape="box"];3369[label="yvy3002",fontsize=16,color="green",shape="box"];3370[label="yvy4002",fontsize=16,color="green",shape="box"];3371[label="yvy3002",fontsize=16,color="green",shape="box"];3372[label="yvy4002",fontsize=16,color="green",shape="box"];3373[label="yvy3002",fontsize=16,color="green",shape="box"];3374[label="yvy4002",fontsize=16,color="green",shape="box"];3375[label="yvy3002",fontsize=16,color="green",shape="box"];3376[label="yvy4002",fontsize=16,color="green",shape="box"];3377[label="yvy3002",fontsize=16,color="green",shape="box"];3378[label="yvy4002",fontsize=16,color="green",shape="box"];3379[label="yvy3001",fontsize=16,color="green",shape="box"];3380[label="yvy4001",fontsize=16,color="green",shape="box"];3381[label="yvy3001",fontsize=16,color="green",shape="box"];3382[label="yvy4001",fontsize=16,color="green",shape="box"];3383[label="yvy3001",fontsize=16,color="green",shape="box"];3384[label="yvy4001",fontsize=16,color="green",shape="box"];3385[label="yvy3001",fontsize=16,color="green",shape="box"];3386[label="yvy4001",fontsize=16,color="green",shape="box"];3387[label="yvy3001",fontsize=16,color="green",shape="box"];3388[label="yvy4001",fontsize=16,color="green",shape="box"];3389[label="yvy3001",fontsize=16,color="green",shape="box"];3390[label="yvy4001",fontsize=16,color="green",shape="box"];3391[label="yvy3001",fontsize=16,color="green",shape="box"];3392[label="yvy4001",fontsize=16,color="green",shape="box"];3393[label="yvy3001",fontsize=16,color="green",shape="box"];3394[label="yvy4001",fontsize=16,color="green",shape="box"];3395[label="yvy3001",fontsize=16,color="green",shape="box"];3396[label="yvy4001",fontsize=16,color="green",shape="box"];3397[label="yvy3001",fontsize=16,color="green",shape="box"];3398[label="yvy4001",fontsize=16,color="green",shape="box"];3399[label="yvy3001",fontsize=16,color="green",shape="box"];3400[label="yvy4001",fontsize=16,color="green",shape="box"];3401[label="yvy3001",fontsize=16,color="green",shape="box"];3402[label="yvy4001",fontsize=16,color="green",shape="box"];3403[label="yvy3001",fontsize=16,color="green",shape="box"];3404[label="yvy4001",fontsize=16,color="green",shape="box"];3405[label="yvy3001",fontsize=16,color="green",shape="box"];3406[label="yvy4001",fontsize=16,color="green",shape="box"];3407[label="yvy30000",fontsize=16,color="green",shape="box"];3408[label="yvy40000",fontsize=16,color="green",shape="box"];3409[label="yvy30000",fontsize=16,color="green",shape="box"];3410[label="yvy40000",fontsize=16,color="green",shape="box"];3411 -> 2888[label="",style="dashed", color="red", weight=0]; 3411[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3411 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3412[label="False",fontsize=16,color="green",shape="box"];3413[label="False",fontsize=16,color="green",shape="box"];3414[label="True",fontsize=16,color="green",shape="box"];2646 -> 2560[label="",style="dashed", color="red", weight=0]; 2646[label="yvy20 == yvy15",fontsize=16,color="magenta"];2646 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2561[label="",style="dashed", color="red", weight=0]; 2647[label="yvy20 == yvy15",fontsize=16,color="magenta"];2647 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2562[label="",style="dashed", color="red", weight=0]; 2648[label="yvy20 == yvy15",fontsize=16,color="magenta"];2648 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2563[label="",style="dashed", color="red", weight=0]; 2649[label="yvy20 == yvy15",fontsize=16,color="magenta"];2649 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2650 -> 115[label="",style="dashed", color="red", weight=0]; 2650[label="yvy20 == yvy15",fontsize=16,color="magenta"];2650 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2565[label="",style="dashed", color="red", weight=0]; 2651[label="yvy20 == yvy15",fontsize=16,color="magenta"];2651 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2566[label="",style="dashed", color="red", weight=0]; 2652[label="yvy20 == yvy15",fontsize=16,color="magenta"];2652 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2567[label="",style="dashed", color="red", weight=0]; 2653[label="yvy20 == yvy15",fontsize=16,color="magenta"];2653 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2568[label="",style="dashed", color="red", weight=0]; 2654[label="yvy20 == yvy15",fontsize=16,color="magenta"];2654 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2569[label="",style="dashed", color="red", weight=0]; 2655[label="yvy20 == yvy15",fontsize=16,color="magenta"];2655 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2570[label="",style="dashed", color="red", weight=0]; 2656[label="yvy20 == yvy15",fontsize=16,color="magenta"];2656 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2571[label="",style="dashed", color="red", weight=0]; 2657[label="yvy20 == yvy15",fontsize=16,color="magenta"];2657 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2572[label="",style="dashed", color="red", weight=0]; 2658[label="yvy20 == yvy15",fontsize=16,color="magenta"];2658 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2573[label="",style="dashed", color="red", weight=0]; 2659[label="yvy20 == yvy15",fontsize=16,color="magenta"];2659 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2739[label="",style="dashed", color="magenta", weight=3]; 1546[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1546 -> 1694[label="",style="dashed", color="green", weight=3]; 1547[label="Nothing",fontsize=16,color="green",shape="box"];1548[label="yvy54",fontsize=16,color="green",shape="box"];1549[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1549 -> 1695[label="",style="dashed", color="green", weight=3]; 1550[label="Nothing",fontsize=16,color="green",shape="box"];1551[label="yvy54",fontsize=16,color="green",shape="box"];1552[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1552 -> 1696[label="",style="dashed", color="green", weight=3]; 1553[label="Just yvy400",fontsize=16,color="green",shape="box"];1554[label="yvy54",fontsize=16,color="green",shape="box"];1555[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1555 -> 1697[label="",style="dashed", color="green", weight=3]; 1556[label="Just yvy400",fontsize=16,color="green",shape="box"];1557[label="yvy54",fontsize=16,color="green",shape="box"];1558[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"];1558 -> 1698[label="",style="solid", color="black", weight=3]; 1559[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1559 -> 1699[label="",style="solid", color="black", weight=3]; 1560[label="EQ",fontsize=16,color="green",shape="box"];1561[label="GT",fontsize=16,color="green",shape="box"];1562[label="EQ",fontsize=16,color="green",shape="box"];1837[label="yvy52",fontsize=16,color="green",shape="box"];1636[label="primMulInt (Pos yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1636 -> 1719[label="",style="solid", color="black", weight=3]; 1637[label="primMulInt (Pos yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1637 -> 1720[label="",style="solid", color="black", weight=3]; 1638[label="primMulInt (Neg yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1638 -> 1721[label="",style="solid", color="black", weight=3]; 1639[label="primMulInt (Neg yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1639 -> 1722[label="",style="solid", color="black", weight=3]; 2491[label="Pos Zero",fontsize=16,color="green",shape="box"];2492[label="yvy542",fontsize=16,color="green",shape="box"];1727[label="primCmpInt yvy49 yvy50",fontsize=16,color="burlywood",shape="triangle"];4982[label="yvy49/Pos yvy490",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4982[label="",style="solid", color="burlywood", weight=9]; 4982 -> 1861[label="",style="solid", color="burlywood", weight=3]; 4983[label="yvy49/Neg yvy490",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4983[label="",style="solid", color="burlywood", weight=9]; 4983 -> 1862[label="",style="solid", color="burlywood", weight=3]; 4373[label="yvy41",fontsize=16,color="green",shape="box"];4374[label="yvy40",fontsize=16,color="green",shape="box"];4375[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4376[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4377[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4372[label="FiniteMap.mkBranch (Pos (Succ yvy242)) yvy243 yvy244 yvy245 yvy246",fontsize=16,color="black",shape="triangle"];4372 -> 4428[label="",style="solid", color="black", weight=3]; 3416 -> 2432[label="",style="dashed", color="red", weight=0]; 3416[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3417 -> 2428[label="",style="dashed", color="red", weight=0]; 3417[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3415[label="yvy208 + yvy207",fontsize=16,color="black",shape="triangle"];3415 -> 3473[label="",style="solid", color="black", weight=3]; 1583 -> 1974[label="",style="dashed", color="red", weight=0]; 1583[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54)",fontsize=16,color="magenta"];1583 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1584 -> 4372[label="",style="dashed", color="red", weight=0]; 1584[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1584 -> 4388[label="",style="dashed", color="magenta", weight=3]; 1584 -> 4389[label="",style="dashed", color="magenta", weight=3]; 1584 -> 4390[label="",style="dashed", color="magenta", weight=3]; 1584 -> 4391[label="",style="dashed", color="magenta", weight=3]; 1584 -> 4392[label="",style="dashed", color="magenta", weight=3]; 1585[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"];1585 -> 1711[label="",style="solid", color="black", weight=3]; 1586[label="LT",fontsize=16,color="green",shape="box"];1587[label="EQ",fontsize=16,color="green",shape="box"];1588[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1588 -> 1712[label="",style="solid", color="black", weight=3]; 1589[label="EQ",fontsize=16,color="green",shape="box"];4378[label="yvy41",fontsize=16,color="green",shape="box"];4379[label="yvy40",fontsize=16,color="green",shape="box"];4380[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4381[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4382[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3437[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3437 -> 3474[label="",style="solid", color="black", weight=3]; 3436[label="yvy209 /= GT",fontsize=16,color="black",shape="triangle"];3436 -> 3475[label="",style="solid", color="black", weight=3]; 3438[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3438 -> 3476[label="",style="solid", color="black", weight=3]; 3439 -> 1649[label="",style="dashed", color="red", weight=0]; 3439[label="compare yvy4900 yvy5000",fontsize=16,color="magenta"];3439 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3440[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4984[label="yvy4900/yvy49000 : yvy49001",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4984[label="",style="solid", color="burlywood", weight=9]; 4984 -> 3479[label="",style="solid", color="burlywood", weight=3]; 4985[label="yvy4900/[]",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4985[label="",style="solid", color="burlywood", weight=9]; 4985 -> 3480[label="",style="solid", color="burlywood", weight=3]; 3441[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4986[label="yvy4900/()",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4986[label="",style="solid", color="burlywood", weight=9]; 4986 -> 3481[label="",style="solid", color="burlywood", weight=3]; 3442[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4987[label="yvy4900/Integer yvy49000",fontsize=10,color="white",style="solid",shape="box"];3442 -> 4987[label="",style="solid", color="burlywood", weight=9]; 4987 -> 3482[label="",style="solid", color="burlywood", weight=3]; 3447[label="(yvy49000,yvy49001) <= (yvy50000,yvy50001)",fontsize=16,color="black",shape="box"];3447 -> 3505[label="",style="solid", color="black", weight=3]; 3448[label="(yvy49000,yvy49001,yvy49002) <= (yvy50000,yvy50001,yvy50002)",fontsize=16,color="black",shape="box"];3448 -> 3506[label="",style="solid", color="black", weight=3]; 3449[label="False <= False",fontsize=16,color="black",shape="box"];3449 -> 3507[label="",style="solid", color="black", weight=3]; 3450[label="False <= True",fontsize=16,color="black",shape="box"];3450 -> 3508[label="",style="solid", color="black", weight=3]; 3451[label="True <= False",fontsize=16,color="black",shape="box"];3451 -> 3509[label="",style="solid", color="black", weight=3]; 3452[label="True <= True",fontsize=16,color="black",shape="box"];3452 -> 3510[label="",style="solid", color="black", weight=3]; 3453[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3453 -> 3511[label="",style="solid", color="black", weight=3]; 3454[label="Nothing <= Just yvy50000",fontsize=16,color="black",shape="box"];3454 -> 3512[label="",style="solid", color="black", weight=3]; 3455[label="Just yvy49000 <= Nothing",fontsize=16,color="black",shape="box"];3455 -> 3513[label="",style="solid", color="black", weight=3]; 3456[label="Just yvy49000 <= Just yvy50000",fontsize=16,color="black",shape="box"];3456 -> 3514[label="",style="solid", color="black", weight=3]; 3457[label="Left yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3457 -> 3515[label="",style="solid", color="black", weight=3]; 3458[label="Left yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3458 -> 3516[label="",style="solid", color="black", weight=3]; 3459[label="Right yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3459 -> 3517[label="",style="solid", color="black", weight=3]; 3460[label="Right yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3460 -> 3518[label="",style="solid", color="black", weight=3]; 3461[label="LT <= LT",fontsize=16,color="black",shape="box"];3461 -> 3519[label="",style="solid", color="black", weight=3]; 3462[label="LT <= EQ",fontsize=16,color="black",shape="box"];3462 -> 3520[label="",style="solid", color="black", weight=3]; 3463[label="LT <= GT",fontsize=16,color="black",shape="box"];3463 -> 3521[label="",style="solid", color="black", weight=3]; 3464[label="EQ <= LT",fontsize=16,color="black",shape="box"];3464 -> 3522[label="",style="solid", color="black", weight=3]; 3465[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3465 -> 3523[label="",style="solid", color="black", weight=3]; 3466[label="EQ <= GT",fontsize=16,color="black",shape="box"];3466 -> 3524[label="",style="solid", color="black", weight=3]; 3467[label="GT <= LT",fontsize=16,color="black",shape="box"];3467 -> 3525[label="",style="solid", color="black", weight=3]; 3468[label="GT <= EQ",fontsize=16,color="black",shape="box"];3468 -> 3526[label="",style="solid", color="black", weight=3]; 3469[label="GT <= GT",fontsize=16,color="black",shape="box"];3469 -> 3527[label="",style="solid", color="black", weight=3]; 3443[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3443 -> 3483[label="",style="solid", color="black", weight=3]; 3444[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4988[label="yvy4900/yvy49000 :% yvy49001",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4988[label="",style="solid", color="burlywood", weight=9]; 4988 -> 3484[label="",style="solid", color="burlywood", weight=3]; 3470[label="compare0 (Just yvy198) (Just yvy199) True",fontsize=16,color="black",shape="box"];3470 -> 3528[label="",style="solid", color="black", weight=3]; 3471[label="yvy30000",fontsize=16,color="green",shape="box"];3472[label="yvy40000",fontsize=16,color="green",shape="box"];2712[label="yvy15",fontsize=16,color="green",shape="box"];2713[label="yvy20",fontsize=16,color="green",shape="box"];2714[label="yvy15",fontsize=16,color="green",shape="box"];2715[label="yvy20",fontsize=16,color="green",shape="box"];2716[label="yvy15",fontsize=16,color="green",shape="box"];2717[label="yvy20",fontsize=16,color="green",shape="box"];2718[label="yvy15",fontsize=16,color="green",shape="box"];2719[label="yvy20",fontsize=16,color="green",shape="box"];2720[label="yvy15",fontsize=16,color="green",shape="box"];2721[label="yvy20",fontsize=16,color="green",shape="box"];2722[label="yvy15",fontsize=16,color="green",shape="box"];2723[label="yvy20",fontsize=16,color="green",shape="box"];2724[label="yvy15",fontsize=16,color="green",shape="box"];2725[label="yvy20",fontsize=16,color="green",shape="box"];2726[label="yvy15",fontsize=16,color="green",shape="box"];2727[label="yvy20",fontsize=16,color="green",shape="box"];2728[label="yvy15",fontsize=16,color="green",shape="box"];2729[label="yvy20",fontsize=16,color="green",shape="box"];2730[label="yvy15",fontsize=16,color="green",shape="box"];2731[label="yvy20",fontsize=16,color="green",shape="box"];2732[label="yvy15",fontsize=16,color="green",shape="box"];2733[label="yvy20",fontsize=16,color="green",shape="box"];2734[label="yvy15",fontsize=16,color="green",shape="box"];2735[label="yvy20",fontsize=16,color="green",shape="box"];2736[label="yvy15",fontsize=16,color="green",shape="box"];2737[label="yvy20",fontsize=16,color="green",shape="box"];2738[label="yvy15",fontsize=16,color="green",shape="box"];2739[label="yvy20",fontsize=16,color="green",shape="box"];1694[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];1694 -> 1834[label="",style="solid", color="black", weight=3]; 1695 -> 1694[label="",style="dashed", color="red", weight=0]; 1695[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1696 -> 1694[label="",style="dashed", color="red", weight=0]; 1696[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1697 -> 1694[label="",style="dashed", color="red", weight=0]; 1697[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1698 -> 1835[label="",style="dashed", color="red", weight=0]; 1698[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"];1698 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1699[label="LT",fontsize=16,color="green",shape="box"];1719[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1719 -> 1855[label="",style="dashed", color="green", weight=3]; 1720[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1720 -> 1856[label="",style="dashed", color="green", weight=3]; 1721[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1721 -> 1857[label="",style="dashed", color="green", weight=3]; 1722[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1722 -> 1858[label="",style="dashed", color="green", weight=3]; 1861[label="primCmpInt (Pos yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4989[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4989[label="",style="solid", color="burlywood", weight=9]; 4989 -> 2007[label="",style="solid", color="burlywood", weight=3]; 4990[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4990[label="",style="solid", color="burlywood", weight=9]; 4990 -> 2008[label="",style="solid", color="burlywood", weight=3]; 1862[label="primCmpInt (Neg yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4991[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4991[label="",style="solid", color="burlywood", weight=9]; 4991 -> 2009[label="",style="solid", color="burlywood", weight=3]; 4992[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4992[label="",style="solid", color="burlywood", weight=9]; 4992 -> 2010[label="",style="solid", color="burlywood", weight=3]; 4428[label="FiniteMap.mkBranchResult yvy243 yvy244 yvy246 yvy245",fontsize=16,color="black",shape="box"];4428 -> 4433[label="",style="solid", color="black", weight=3]; 2432[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2432 -> 2440[label="",style="solid", color="black", weight=3]; 2428[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2428 -> 2434[label="",style="solid", color="black", weight=3]; 3473[label="primPlusInt yvy208 yvy207",fontsize=16,color="burlywood",shape="box"];4993[label="yvy208/Pos yvy2080",fontsize=10,color="white",style="solid",shape="box"];3473 -> 4993[label="",style="solid", color="burlywood", weight=9]; 4993 -> 3529[label="",style="solid", color="burlywood", weight=3]; 4994[label="yvy208/Neg yvy2080",fontsize=10,color="white",style="solid",shape="box"];3473 -> 4994[label="",style="solid", color="burlywood", weight=9]; 4994 -> 3530[label="",style="solid", color="burlywood", weight=3]; 1975 -> 2427[label="",style="dashed", color="red", weight=0]; 1975[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1975 -> 2428[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2429[label="",style="dashed", color="magenta", weight=3]; 1974[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy147",fontsize=16,color="burlywood",shape="triangle"];4995[label="yvy147/False",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4995[label="",style="solid", color="burlywood", weight=9]; 4995 -> 1980[label="",style="solid", color="burlywood", weight=3]; 4996[label="yvy147/True",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4996[label="",style="solid", color="burlywood", weight=9]; 4996 -> 1981[label="",style="solid", color="burlywood", weight=3]; 4388[label="yvy51",fontsize=16,color="green",shape="box"];4389[label="yvy50",fontsize=16,color="green",shape="box"];4390[label="yvy67",fontsize=16,color="green",shape="box"];4391[label="Zero",fontsize=16,color="green",shape="box"];4392[label="yvy54",fontsize=16,color="green",shape="box"];1711 -> 1848[label="",style="dashed", color="red", weight=0]; 1711[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"];1711 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1712[label="GT",fontsize=16,color="green",shape="box"];3474[label="primCmpFloat yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4997[label="yvy4900/Float yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3474 -> 4997[label="",style="solid", color="burlywood", weight=9]; 4997 -> 3531[label="",style="solid", color="burlywood", weight=3]; 3475 -> 3532[label="",style="dashed", color="red", weight=0]; 3475[label="not (yvy209 == GT)",fontsize=16,color="magenta"];3475 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3476[label="primCmpChar yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4998[label="yvy4900/Char yvy49000",fontsize=10,color="white",style="solid",shape="box"];3476 -> 4998[label="",style="solid", color="burlywood", weight=9]; 4998 -> 3534[label="",style="solid", color="burlywood", weight=3]; 3477[label="yvy4900",fontsize=16,color="green",shape="box"];3478[label="yvy5000",fontsize=16,color="green",shape="box"];3479[label="compare (yvy49000 : yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];4999[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4999[label="",style="solid", color="burlywood", weight=9]; 4999 -> 3535[label="",style="solid", color="burlywood", weight=3]; 5000[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3479 -> 5000[label="",style="solid", color="burlywood", weight=9]; 5000 -> 3536[label="",style="solid", color="burlywood", weight=3]; 3480[label="compare [] yvy5000",fontsize=16,color="burlywood",shape="box"];5001[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3480 -> 5001[label="",style="solid", color="burlywood", weight=9]; 5001 -> 3537[label="",style="solid", color="burlywood", weight=3]; 5002[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3480 -> 5002[label="",style="solid", color="burlywood", weight=9]; 5002 -> 3538[label="",style="solid", color="burlywood", weight=3]; 3481[label="compare () yvy5000",fontsize=16,color="burlywood",shape="box"];5003[label="yvy5000/()",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5003[label="",style="solid", color="burlywood", weight=9]; 5003 -> 3539[label="",style="solid", color="burlywood", weight=3]; 3482[label="compare (Integer yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];5004[label="yvy5000/Integer yvy50000",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5004[label="",style="solid", color="burlywood", weight=9]; 5004 -> 3540[label="",style="solid", color="burlywood", weight=3]; 3505 -> 3609[label="",style="dashed", color="red", weight=0]; 3505[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3505 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3505 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3609[label="",style="dashed", color="red", weight=0]; 3506[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3506 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3507[label="True",fontsize=16,color="green",shape="box"];3508[label="True",fontsize=16,color="green",shape="box"];3509[label="False",fontsize=16,color="green",shape="box"];3510[label="True",fontsize=16,color="green",shape="box"];3511[label="True",fontsize=16,color="green",shape="box"];3512[label="True",fontsize=16,color="green",shape="box"];3513[label="False",fontsize=16,color="green",shape="box"];3514[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5005[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3546[label="",style="solid", color="blue", weight=3]; 5006[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 3547[label="",style="solid", color="blue", weight=3]; 5007[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 3548[label="",style="solid", color="blue", weight=3]; 5008[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 3549[label="",style="solid", color="blue", weight=3]; 5009[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 3550[label="",style="solid", color="blue", weight=3]; 5010[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 3551[label="",style="solid", color="blue", weight=3]; 5011[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 3552[label="",style="solid", color="blue", weight=3]; 5012[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 3553[label="",style="solid", color="blue", weight=3]; 5013[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 3554[label="",style="solid", color="blue", weight=3]; 5014[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 3555[label="",style="solid", color="blue", weight=3]; 5015[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5015[label="",style="solid", color="blue", weight=9]; 5015 -> 3556[label="",style="solid", color="blue", weight=3]; 5016[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5016[label="",style="solid", color="blue", weight=9]; 5016 -> 3557[label="",style="solid", color="blue", weight=3]; 5017[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5017[label="",style="solid", color="blue", weight=9]; 5017 -> 3558[label="",style="solid", color="blue", weight=3]; 5018[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3514 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3559[label="",style="solid", color="blue", weight=3]; 3515[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5019[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3560[label="",style="solid", color="blue", weight=3]; 5020[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3561[label="",style="solid", color="blue", weight=3]; 5021[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3562[label="",style="solid", color="blue", weight=3]; 5022[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3563[label="",style="solid", color="blue", weight=3]; 5023[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3564[label="",style="solid", color="blue", weight=3]; 5024[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3565[label="",style="solid", color="blue", weight=3]; 5025[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3566[label="",style="solid", color="blue", weight=3]; 5026[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3567[label="",style="solid", color="blue", weight=3]; 5027[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3568[label="",style="solid", color="blue", weight=3]; 5028[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3569[label="",style="solid", color="blue", weight=3]; 5029[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3570[label="",style="solid", color="blue", weight=3]; 5030[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3571[label="",style="solid", color="blue", weight=3]; 5031[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3572[label="",style="solid", color="blue", weight=3]; 5032[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3573[label="",style="solid", color="blue", weight=3]; 3516[label="True",fontsize=16,color="green",shape="box"];3517[label="False",fontsize=16,color="green",shape="box"];3518[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5033[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3574[label="",style="solid", color="blue", weight=3]; 5034[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5034[label="",style="solid", color="blue", weight=9]; 5034 -> 3575[label="",style="solid", color="blue", weight=3]; 5035[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5035[label="",style="solid", color="blue", weight=9]; 5035 -> 3576[label="",style="solid", color="blue", weight=3]; 5036[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5036[label="",style="solid", color="blue", weight=9]; 5036 -> 3577[label="",style="solid", color="blue", weight=3]; 5037[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5037[label="",style="solid", color="blue", weight=9]; 5037 -> 3578[label="",style="solid", color="blue", weight=3]; 5038[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5038[label="",style="solid", color="blue", weight=9]; 5038 -> 3579[label="",style="solid", color="blue", weight=3]; 5039[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5039[label="",style="solid", color="blue", weight=9]; 5039 -> 3580[label="",style="solid", color="blue", weight=3]; 5040[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5040[label="",style="solid", color="blue", weight=9]; 5040 -> 3581[label="",style="solid", color="blue", weight=3]; 5041[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5041[label="",style="solid", color="blue", weight=9]; 5041 -> 3582[label="",style="solid", color="blue", weight=3]; 5042[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5042[label="",style="solid", color="blue", weight=9]; 5042 -> 3583[label="",style="solid", color="blue", weight=3]; 5043[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3584[label="",style="solid", color="blue", weight=3]; 5044[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3585[label="",style="solid", color="blue", weight=3]; 5045[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3586[label="",style="solid", color="blue", weight=3]; 5046[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5046[label="",style="solid", color="blue", weight=9]; 5046 -> 3587[label="",style="solid", color="blue", weight=3]; 3519[label="True",fontsize=16,color="green",shape="box"];3520[label="True",fontsize=16,color="green",shape="box"];3521[label="True",fontsize=16,color="green",shape="box"];3522[label="False",fontsize=16,color="green",shape="box"];3523[label="True",fontsize=16,color="green",shape="box"];3524[label="True",fontsize=16,color="green",shape="box"];3525[label="False",fontsize=16,color="green",shape="box"];3526[label="False",fontsize=16,color="green",shape="box"];3527[label="True",fontsize=16,color="green",shape="box"];3483[label="primCmpDouble yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];5047[label="yvy4900/Double yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 3588[label="",style="solid", color="burlywood", weight=3]; 3484[label="compare (yvy49000 :% yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5048[label="yvy5000/yvy50000 :% yvy50001",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 3589[label="",style="solid", color="burlywood", weight=3]; 3528[label="GT",fontsize=16,color="green",shape="box"];1834[label="yvy41",fontsize=16,color="green",shape="box"];1836 -> 1564[label="",style="dashed", color="red", weight=0]; 1836[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1836 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1727[label="",style="dashed", color="red", weight=0]; 1835[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy145",fontsize=16,color="magenta"];1835 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1855[label="primMulNat yvy40010 yvy30000",fontsize=16,color="burlywood",shape="triangle"];5049[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1855 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 1998[label="",style="solid", color="burlywood", weight=3]; 5050[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1855 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 1999[label="",style="solid", color="burlywood", weight=3]; 1856 -> 1855[label="",style="dashed", color="red", weight=0]; 1856[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1856 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1857 -> 1855[label="",style="dashed", color="red", weight=0]; 1857[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1857 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1858 -> 1855[label="",style="dashed", color="red", weight=0]; 1858[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1858 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2003[label="",style="dashed", color="magenta", weight=3]; 2007[label="primCmpInt (Pos (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5051[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2007 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 2206[label="",style="solid", color="burlywood", weight=3]; 5052[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2007 -> 5052[label="",style="solid", color="burlywood", weight=9]; 5052 -> 2207[label="",style="solid", color="burlywood", weight=3]; 2008[label="primCmpInt (Pos Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5053[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2008 -> 5053[label="",style="solid", color="burlywood", weight=9]; 5053 -> 2208[label="",style="solid", color="burlywood", weight=3]; 5054[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2008 -> 5054[label="",style="solid", color="burlywood", weight=9]; 5054 -> 2209[label="",style="solid", color="burlywood", weight=3]; 2009[label="primCmpInt (Neg (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5055[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2009 -> 5055[label="",style="solid", color="burlywood", weight=9]; 5055 -> 2210[label="",style="solid", color="burlywood", weight=3]; 5056[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2009 -> 5056[label="",style="solid", color="burlywood", weight=9]; 5056 -> 2211[label="",style="solid", color="burlywood", weight=3]; 2010[label="primCmpInt (Neg Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5057[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];2010 -> 5057[label="",style="solid", color="burlywood", weight=9]; 5057 -> 2212[label="",style="solid", color="burlywood", weight=3]; 5058[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];2010 -> 5058[label="",style="solid", color="burlywood", weight=9]; 5058 -> 2213[label="",style="solid", color="burlywood", weight=3]; 4433[label="FiniteMap.Branch yvy243 yvy244 (FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245)) yvy245 yvy246",fontsize=16,color="green",shape="box"];4433 -> 4436[label="",style="dashed", color="green", weight=3]; 2440 -> 2434[label="",style="dashed", color="red", weight=0]; 2440[label="FiniteMap.sizeFM yvy67",fontsize=16,color="magenta"];2440 -> 2495[label="",style="dashed", color="magenta", weight=3]; 3529[label="primPlusInt (Pos yvy2080) yvy207",fontsize=16,color="burlywood",shape="box"];5059[label="yvy207/Pos yvy2070",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5059[label="",style="solid", color="burlywood", weight=9]; 5059 -> 3590[label="",style="solid", color="burlywood", weight=3]; 5060[label="yvy207/Neg yvy2070",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5060[label="",style="solid", color="burlywood", weight=9]; 5060 -> 3591[label="",style="solid", color="burlywood", weight=3]; 3530[label="primPlusInt (Neg yvy2080) yvy207",fontsize=16,color="burlywood",shape="box"];5061[label="yvy207/Pos yvy2070",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5061[label="",style="solid", color="burlywood", weight=9]; 5061 -> 3592[label="",style="solid", color="burlywood", weight=3]; 5062[label="yvy207/Neg yvy2070",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5062[label="",style="solid", color="burlywood", weight=9]; 5062 -> 3593[label="",style="solid", color="burlywood", weight=3]; 2429 -> 986[label="",style="dashed", color="red", weight=0]; 2429[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2429 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2427[label="yvy158 > yvy157",fontsize=16,color="black",shape="triangle"];2427 -> 2437[label="",style="solid", color="black", weight=3]; 1980[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1980 -> 2171[label="",style="solid", color="black", weight=3]; 1981[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1981 -> 2172[label="",style="solid", color="black", weight=3]; 1849 -> 1591[label="",style="dashed", color="red", weight=0]; 1849[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1849 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1727[label="",style="dashed", color="red", weight=0]; 1848[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy146",fontsize=16,color="magenta"];1848 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1988[label="",style="dashed", color="magenta", weight=3]; 3531[label="primCmpFloat (Float yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5063[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5063[label="",style="solid", color="burlywood", weight=9]; 5063 -> 3594[label="",style="solid", color="burlywood", weight=3]; 5064[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5064[label="",style="solid", color="burlywood", weight=9]; 5064 -> 3595[label="",style="solid", color="burlywood", weight=3]; 3533 -> 115[label="",style="dashed", color="red", weight=0]; 3533[label="yvy209 == GT",fontsize=16,color="magenta"];3533 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3532[label="not yvy214",fontsize=16,color="burlywood",shape="triangle"];5065[label="yvy214/False",fontsize=10,color="white",style="solid",shape="box"];3532 -> 5065[label="",style="solid", color="burlywood", weight=9]; 5065 -> 3598[label="",style="solid", color="burlywood", weight=3]; 5066[label="yvy214/True",fontsize=10,color="white",style="solid",shape="box"];3532 -> 5066[label="",style="solid", color="burlywood", weight=9]; 5066 -> 3599[label="",style="solid", color="burlywood", weight=3]; 3534[label="primCmpChar (Char yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];5067[label="yvy5000/Char yvy50000",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5067[label="",style="solid", color="burlywood", weight=9]; 5067 -> 3600[label="",style="solid", color="burlywood", weight=3]; 3535[label="compare (yvy49000 : yvy49001) (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3535 -> 3601[label="",style="solid", color="black", weight=3]; 3536[label="compare (yvy49000 : yvy49001) []",fontsize=16,color="black",shape="box"];3536 -> 3602[label="",style="solid", color="black", weight=3]; 3537[label="compare [] (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3537 -> 3603[label="",style="solid", color="black", weight=3]; 3538[label="compare [] []",fontsize=16,color="black",shape="box"];3538 -> 3604[label="",style="solid", color="black", weight=3]; 3539[label="compare () ()",fontsize=16,color="black",shape="box"];3539 -> 3605[label="",style="solid", color="black", weight=3]; 3540[label="compare (Integer yvy49000) (Integer yvy50000)",fontsize=16,color="black",shape="box"];3540 -> 3606[label="",style="solid", color="black", weight=3]; 3610[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5068[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5068[label="",style="solid", color="blue", weight=9]; 5068 -> 3616[label="",style="solid", color="blue", weight=3]; 5069[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5069[label="",style="solid", color="blue", weight=9]; 5069 -> 3617[label="",style="solid", color="blue", weight=3]; 5070[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5070[label="",style="solid", color="blue", weight=9]; 5070 -> 3618[label="",style="solid", color="blue", weight=3]; 5071[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5071[label="",style="solid", color="blue", weight=9]; 5071 -> 3619[label="",style="solid", color="blue", weight=3]; 5072[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5072[label="",style="solid", color="blue", weight=9]; 5072 -> 3620[label="",style="solid", color="blue", weight=3]; 5073[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5073[label="",style="solid", color="blue", weight=9]; 5073 -> 3621[label="",style="solid", color="blue", weight=3]; 5074[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5074[label="",style="solid", color="blue", weight=9]; 5074 -> 3622[label="",style="solid", color="blue", weight=3]; 5075[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5075[label="",style="solid", color="blue", weight=9]; 5075 -> 3623[label="",style="solid", color="blue", weight=3]; 5076[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5076[label="",style="solid", color="blue", weight=9]; 5076 -> 3624[label="",style="solid", color="blue", weight=3]; 5077[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5077[label="",style="solid", color="blue", weight=9]; 5077 -> 3625[label="",style="solid", color="blue", weight=3]; 5078[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5078[label="",style="solid", color="blue", weight=9]; 5078 -> 3626[label="",style="solid", color="blue", weight=3]; 5079[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5079[label="",style="solid", color="blue", weight=9]; 5079 -> 3627[label="",style="solid", color="blue", weight=3]; 5080[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5080[label="",style="solid", color="blue", weight=9]; 5080 -> 3628[label="",style="solid", color="blue", weight=3]; 5081[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3610 -> 5081[label="",style="solid", color="blue", weight=9]; 5081 -> 3629[label="",style="solid", color="blue", weight=3]; 3611 -> 2911[label="",style="dashed", color="red", weight=0]; 3611[label="yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3611 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3609[label="yvy219 || yvy220",fontsize=16,color="burlywood",shape="triangle"];5082[label="yvy219/False",fontsize=10,color="white",style="solid",shape="box"];3609 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 3632[label="",style="solid", color="burlywood", weight=3]; 5083[label="yvy219/True",fontsize=10,color="white",style="solid",shape="box"];3609 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 3633[label="",style="solid", color="burlywood", weight=3]; 3612[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5084[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5084[label="",style="solid", color="blue", weight=9]; 5084 -> 3634[label="",style="solid", color="blue", weight=3]; 5085[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5085[label="",style="solid", color="blue", weight=9]; 5085 -> 3635[label="",style="solid", color="blue", weight=3]; 5086[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5086[label="",style="solid", color="blue", weight=9]; 5086 -> 3636[label="",style="solid", color="blue", weight=3]; 5087[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5087[label="",style="solid", color="blue", weight=9]; 5087 -> 3637[label="",style="solid", color="blue", weight=3]; 5088[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5088[label="",style="solid", color="blue", weight=9]; 5088 -> 3638[label="",style="solid", color="blue", weight=3]; 5089[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5089[label="",style="solid", color="blue", weight=9]; 5089 -> 3639[label="",style="solid", color="blue", weight=3]; 5090[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5090[label="",style="solid", color="blue", weight=9]; 5090 -> 3640[label="",style="solid", color="blue", weight=3]; 5091[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5091[label="",style="solid", color="blue", weight=9]; 5091 -> 3641[label="",style="solid", color="blue", weight=3]; 5092[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5092[label="",style="solid", color="blue", weight=9]; 5092 -> 3642[label="",style="solid", color="blue", weight=3]; 5093[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5093[label="",style="solid", color="blue", weight=9]; 5093 -> 3643[label="",style="solid", color="blue", weight=3]; 5094[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 3644[label="",style="solid", color="blue", weight=3]; 5095[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 3645[label="",style="solid", color="blue", weight=3]; 5096[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 3646[label="",style="solid", color="blue", weight=3]; 5097[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3612 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 3647[label="",style="solid", color="blue", weight=3]; 3613 -> 2911[label="",style="dashed", color="red", weight=0]; 3613[label="yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3613 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3094[label="",style="dashed", color="red", weight=0]; 3546[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3546 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3095[label="",style="dashed", color="red", weight=0]; 3547[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3547 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3096[label="",style="dashed", color="red", weight=0]; 3548[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3548 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3097[label="",style="dashed", color="red", weight=0]; 3549[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3549 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3098[label="",style="dashed", color="red", weight=0]; 3550[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3550 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3099[label="",style="dashed", color="red", weight=0]; 3551[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3551 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3100[label="",style="dashed", color="red", weight=0]; 3552[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3552 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3101[label="",style="dashed", color="red", weight=0]; 3553[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3553 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3102[label="",style="dashed", color="red", weight=0]; 3554[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3554 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3103[label="",style="dashed", color="red", weight=0]; 3555[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3555 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3104[label="",style="dashed", color="red", weight=0]; 3556[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3556 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3105[label="",style="dashed", color="red", weight=0]; 3557[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3557 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3106[label="",style="dashed", color="red", weight=0]; 3558[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3558 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3107[label="",style="dashed", color="red", weight=0]; 3559[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3559 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3094[label="",style="dashed", color="red", weight=0]; 3560[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3560 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3095[label="",style="dashed", color="red", weight=0]; 3561[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3561 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3096[label="",style="dashed", color="red", weight=0]; 3562[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3562 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3097[label="",style="dashed", color="red", weight=0]; 3563[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3563 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3098[label="",style="dashed", color="red", weight=0]; 3564[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3564 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3099[label="",style="dashed", color="red", weight=0]; 3565[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3565 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3100[label="",style="dashed", color="red", weight=0]; 3566[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3566 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3101[label="",style="dashed", color="red", weight=0]; 3567[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3567 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3102[label="",style="dashed", color="red", weight=0]; 3568[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3568 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3103[label="",style="dashed", color="red", weight=0]; 3569[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3569 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3104[label="",style="dashed", color="red", weight=0]; 3570[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3570 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3105[label="",style="dashed", color="red", weight=0]; 3571[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3571 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3106[label="",style="dashed", color="red", weight=0]; 3572[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3572 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3107[label="",style="dashed", color="red", weight=0]; 3573[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3573 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3094[label="",style="dashed", color="red", weight=0]; 3574[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3574 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3095[label="",style="dashed", color="red", weight=0]; 3575[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3575 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3096[label="",style="dashed", color="red", weight=0]; 3576[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3576 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3097[label="",style="dashed", color="red", weight=0]; 3577[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3577 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3098[label="",style="dashed", color="red", weight=0]; 3578[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3578 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3099[label="",style="dashed", color="red", weight=0]; 3579[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3579 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3100[label="",style="dashed", color="red", weight=0]; 3580[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3580 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3101[label="",style="dashed", color="red", weight=0]; 3581[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3581 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3582 -> 3102[label="",style="dashed", color="red", weight=0]; 3582[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3582 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3582 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3103[label="",style="dashed", color="red", weight=0]; 3583[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3583 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3104[label="",style="dashed", color="red", weight=0]; 3584[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3584 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3105[label="",style="dashed", color="red", weight=0]; 3585[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3585 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3586 -> 3106[label="",style="dashed", color="red", weight=0]; 3586[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3586 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3586 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3587 -> 3107[label="",style="dashed", color="red", weight=0]; 3587[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3587 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3587 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3588[label="primCmpDouble (Double yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5098[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5098[label="",style="solid", color="burlywood", weight=9]; 5098 -> 3734[label="",style="solid", color="burlywood", weight=3]; 5099[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5099[label="",style="solid", color="burlywood", weight=9]; 5099 -> 3735[label="",style="solid", color="burlywood", weight=3]; 3589[label="compare (yvy49000 :% yvy49001) (yvy50000 :% yvy50001)",fontsize=16,color="black",shape="box"];3589 -> 3736[label="",style="solid", color="black", weight=3]; 1959[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1960[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1960 -> 2148[label="",style="dashed", color="green", weight=3]; 1961[label="yvy145",fontsize=16,color="green",shape="box"];1998[label="primMulNat (Succ yvy400100) yvy30000",fontsize=16,color="burlywood",shape="box"];5100[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1998 -> 5100[label="",style="solid", color="burlywood", weight=9]; 5100 -> 2199[label="",style="solid", color="burlywood", weight=3]; 5101[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1998 -> 5101[label="",style="solid", color="burlywood", weight=9]; 5101 -> 2200[label="",style="solid", color="burlywood", weight=3]; 1999[label="primMulNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];5102[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1999 -> 5102[label="",style="solid", color="burlywood", weight=9]; 5102 -> 2201[label="",style="solid", color="burlywood", weight=3]; 5103[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1999 -> 5103[label="",style="solid", color="burlywood", weight=9]; 5103 -> 2202[label="",style="solid", color="burlywood", weight=3]; 2000[label="yvy30000",fontsize=16,color="green",shape="box"];2001[label="yvy40010",fontsize=16,color="green",shape="box"];2002[label="yvy40010",fontsize=16,color="green",shape="box"];2003[label="yvy30000",fontsize=16,color="green",shape="box"];2206[label="primCmpInt (Pos (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2206 -> 2329[label="",style="solid", color="black", weight=3]; 2207[label="primCmpInt (Pos (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2207 -> 2330[label="",style="solid", color="black", weight=3]; 2208[label="primCmpInt (Pos Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5104[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2208 -> 5104[label="",style="solid", color="burlywood", weight=9]; 5104 -> 2331[label="",style="solid", color="burlywood", weight=3]; 5105[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2208 -> 5105[label="",style="solid", color="burlywood", weight=9]; 5105 -> 2332[label="",style="solid", color="burlywood", weight=3]; 2209[label="primCmpInt (Pos Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5106[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2209 -> 5106[label="",style="solid", color="burlywood", weight=9]; 5106 -> 2333[label="",style="solid", color="burlywood", weight=3]; 5107[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2209 -> 5107[label="",style="solid", color="burlywood", weight=9]; 5107 -> 2334[label="",style="solid", color="burlywood", weight=3]; 2210[label="primCmpInt (Neg (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2210 -> 2335[label="",style="solid", color="black", weight=3]; 2211[label="primCmpInt (Neg (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2211 -> 2336[label="",style="solid", color="black", weight=3]; 2212[label="primCmpInt (Neg Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5108[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2212 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 2337[label="",style="solid", color="burlywood", weight=3]; 5109[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2212 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 2338[label="",style="solid", color="burlywood", weight=3]; 2213[label="primCmpInt (Neg Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5110[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2213 -> 5110[label="",style="solid", color="burlywood", weight=9]; 5110 -> 2339[label="",style="solid", color="burlywood", weight=3]; 5111[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2213 -> 5111[label="",style="solid", color="burlywood", weight=9]; 5111 -> 2340[label="",style="solid", color="burlywood", weight=3]; 4436 -> 4439[label="",style="dashed", color="red", weight=0]; 4436[label="FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245)",fontsize=16,color="magenta"];4436 -> 4440[label="",style="dashed", color="magenta", weight=3]; 2495[label="yvy67",fontsize=16,color="green",shape="box"];3590[label="primPlusInt (Pos yvy2080) (Pos yvy2070)",fontsize=16,color="black",shape="box"];3590 -> 3737[label="",style="solid", color="black", weight=3]; 3591[label="primPlusInt (Pos yvy2080) (Neg yvy2070)",fontsize=16,color="black",shape="box"];3591 -> 3738[label="",style="solid", color="black", weight=3]; 3592[label="primPlusInt (Neg yvy2080) (Pos yvy2070)",fontsize=16,color="black",shape="box"];3592 -> 3739[label="",style="solid", color="black", weight=3]; 3593[label="primPlusInt (Neg yvy2080) (Neg yvy2070)",fontsize=16,color="black",shape="box"];3593 -> 3740[label="",style="solid", color="black", weight=3]; 2435 -> 1563[label="",style="dashed", color="red", weight=0]; 2435[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2436 -> 2432[label="",style="dashed", color="red", weight=0]; 2436[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2437 -> 115[label="",style="dashed", color="red", weight=0]; 2437[label="compare yvy158 yvy157 == GT",fontsize=16,color="magenta"];2437 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2423[label="",style="dashed", color="red", weight=0]; 2171[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54)",fontsize=16,color="magenta"];2171 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2172[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5112[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2172 -> 5112[label="",style="solid", color="burlywood", weight=9]; 5112 -> 2219[label="",style="solid", color="burlywood", weight=3]; 5113[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2172 -> 5113[label="",style="solid", color="burlywood", weight=9]; 5113 -> 2220[label="",style="solid", color="burlywood", weight=3]; 1986[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1987[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1987 -> 2177[label="",style="dashed", color="green", weight=3]; 1988[label="yvy146",fontsize=16,color="green",shape="box"];3594[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5114[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3594 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 3741[label="",style="solid", color="burlywood", weight=3]; 3595[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5115[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3595 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 3742[label="",style="solid", color="burlywood", weight=3]; 3596[label="GT",fontsize=16,color="green",shape="box"];3597[label="yvy209",fontsize=16,color="green",shape="box"];3598[label="not False",fontsize=16,color="black",shape="box"];3598 -> 3743[label="",style="solid", color="black", weight=3]; 3599[label="not True",fontsize=16,color="black",shape="box"];3599 -> 3744[label="",style="solid", color="black", weight=3]; 3600[label="primCmpChar (Char yvy49000) (Char yvy50000)",fontsize=16,color="black",shape="box"];3600 -> 3745[label="",style="solid", color="black", weight=3]; 3601 -> 3746[label="",style="dashed", color="red", weight=0]; 3601[label="primCompAux yvy49000 yvy50000 (compare yvy49001 yvy50001)",fontsize=16,color="magenta"];3601 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3602[label="GT",fontsize=16,color="green",shape="box"];3603[label="LT",fontsize=16,color="green",shape="box"];3604[label="EQ",fontsize=16,color="green",shape="box"];3605[label="EQ",fontsize=16,color="green",shape="box"];3606 -> 1727[label="",style="dashed", color="red", weight=0]; 3606[label="primCmpInt yvy49000 yvy50000",fontsize=16,color="magenta"];3606 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3616[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3616 -> 3750[label="",style="solid", color="black", weight=3]; 3617[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3617 -> 3751[label="",style="solid", color="black", weight=3]; 3618 -> 3335[label="",style="dashed", color="red", weight=0]; 3618[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3618 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3618 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3619[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3619 -> 3754[label="",style="solid", color="black", weight=3]; 3620[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3620 -> 3755[label="",style="solid", color="black", weight=3]; 3621[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3621 -> 3756[label="",style="solid", color="black", weight=3]; 3622[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3622 -> 3757[label="",style="solid", color="black", weight=3]; 3623[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3623 -> 3758[label="",style="solid", color="black", weight=3]; 3624[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3624 -> 3759[label="",style="solid", color="black", weight=3]; 3625[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3625 -> 3760[label="",style="solid", color="black", weight=3]; 3626[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3626 -> 3761[label="",style="solid", color="black", weight=3]; 3627[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3627 -> 3762[label="",style="solid", color="black", weight=3]; 3628[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3628 -> 3763[label="",style="solid", color="black", weight=3]; 3629[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3629 -> 3764[label="",style="solid", color="black", weight=3]; 3630[label="yvy49001 <= yvy50001",fontsize=16,color="blue",shape="box"];5116[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5116[label="",style="solid", color="blue", weight=9]; 5116 -> 3765[label="",style="solid", color="blue", weight=3]; 5117[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5117[label="",style="solid", color="blue", weight=9]; 5117 -> 3766[label="",style="solid", color="blue", weight=3]; 5118[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 3767[label="",style="solid", color="blue", weight=3]; 5119[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 3768[label="",style="solid", color="blue", weight=3]; 5120[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 3769[label="",style="solid", color="blue", weight=3]; 5121[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 3770[label="",style="solid", color="blue", weight=3]; 5122[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5122[label="",style="solid", color="blue", weight=9]; 5122 -> 3771[label="",style="solid", color="blue", weight=3]; 5123[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5123[label="",style="solid", color="blue", weight=9]; 5123 -> 3772[label="",style="solid", color="blue", weight=3]; 5124[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5124[label="",style="solid", color="blue", weight=9]; 5124 -> 3773[label="",style="solid", color="blue", weight=3]; 5125[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5125[label="",style="solid", color="blue", weight=9]; 5125 -> 3774[label="",style="solid", color="blue", weight=3]; 5126[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5126[label="",style="solid", color="blue", weight=9]; 5126 -> 3775[label="",style="solid", color="blue", weight=3]; 5127[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5127[label="",style="solid", color="blue", weight=9]; 5127 -> 3776[label="",style="solid", color="blue", weight=3]; 5128[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5128[label="",style="solid", color="blue", weight=9]; 5128 -> 3777[label="",style="solid", color="blue", weight=3]; 5129[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3630 -> 5129[label="",style="solid", color="blue", weight=9]; 5129 -> 3778[label="",style="solid", color="blue", weight=3]; 3631[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5130[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5130[label="",style="solid", color="blue", weight=9]; 5130 -> 3779[label="",style="solid", color="blue", weight=3]; 5131[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5131[label="",style="solid", color="blue", weight=9]; 5131 -> 3780[label="",style="solid", color="blue", weight=3]; 5132[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5132[label="",style="solid", color="blue", weight=9]; 5132 -> 3781[label="",style="solid", color="blue", weight=3]; 5133[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5133[label="",style="solid", color="blue", weight=9]; 5133 -> 3782[label="",style="solid", color="blue", weight=3]; 5134[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5134[label="",style="solid", color="blue", weight=9]; 5134 -> 3783[label="",style="solid", color="blue", weight=3]; 5135[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5135[label="",style="solid", color="blue", weight=9]; 5135 -> 3784[label="",style="solid", color="blue", weight=3]; 5136[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5136[label="",style="solid", color="blue", weight=9]; 5136 -> 3785[label="",style="solid", color="blue", weight=3]; 5137[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5137[label="",style="solid", color="blue", weight=9]; 5137 -> 3786[label="",style="solid", color="blue", weight=3]; 5138[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5138[label="",style="solid", color="blue", weight=9]; 5138 -> 3787[label="",style="solid", color="blue", weight=3]; 5139[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5139[label="",style="solid", color="blue", weight=9]; 5139 -> 3788[label="",style="solid", color="blue", weight=3]; 5140[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5140[label="",style="solid", color="blue", weight=9]; 5140 -> 3789[label="",style="solid", color="blue", weight=3]; 5141[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5141[label="",style="solid", color="blue", weight=9]; 5141 -> 3790[label="",style="solid", color="blue", weight=3]; 5142[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5142[label="",style="solid", color="blue", weight=9]; 5142 -> 3791[label="",style="solid", color="blue", weight=3]; 5143[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3631 -> 5143[label="",style="solid", color="blue", weight=9]; 5143 -> 3792[label="",style="solid", color="blue", weight=3]; 3632[label="False || yvy220",fontsize=16,color="black",shape="box"];3632 -> 3793[label="",style="solid", color="black", weight=3]; 3633[label="True || yvy220",fontsize=16,color="black",shape="box"];3633 -> 3794[label="",style="solid", color="black", weight=3]; 3634 -> 3616[label="",style="dashed", color="red", weight=0]; 3634[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3634 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3634 -> 3796[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3617[label="",style="dashed", color="red", weight=0]; 3635[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3635 -> 3797[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3798[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3335[label="",style="dashed", color="red", weight=0]; 3636[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3636 -> 3799[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3800[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3619[label="",style="dashed", color="red", weight=0]; 3637[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3637 -> 3801[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3638 -> 3620[label="",style="dashed", color="red", weight=0]; 3638[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3638 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3638 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3621[label="",style="dashed", color="red", weight=0]; 3639[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3639 -> 3805[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3640 -> 3622[label="",style="dashed", color="red", weight=0]; 3640[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3640 -> 3807[label="",style="dashed", color="magenta", weight=3]; 3640 -> 3808[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3623[label="",style="dashed", color="red", weight=0]; 3641[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3641 -> 3809[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3642 -> 3624[label="",style="dashed", color="red", weight=0]; 3642[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3642 -> 3811[label="",style="dashed", color="magenta", weight=3]; 3642 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3625[label="",style="dashed", color="red", weight=0]; 3643[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3643 -> 3813[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3814[label="",style="dashed", color="magenta", weight=3]; 3644 -> 3626[label="",style="dashed", color="red", weight=0]; 3644[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3644 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3644 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3645 -> 3627[label="",style="dashed", color="red", weight=0]; 3645[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3645 -> 3817[label="",style="dashed", color="magenta", weight=3]; 3645 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3646 -> 3628[label="",style="dashed", color="red", weight=0]; 3646[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3646 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3646 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3647 -> 3629[label="",style="dashed", color="red", weight=0]; 3647[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3647 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3647 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3609[label="",style="dashed", color="red", weight=0]; 3648[label="yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3648 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3649[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5144[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5144[label="",style="solid", color="blue", weight=9]; 5144 -> 3825[label="",style="solid", color="blue", weight=3]; 5145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5145[label="",style="solid", color="blue", weight=9]; 5145 -> 3826[label="",style="solid", color="blue", weight=3]; 5146[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5146[label="",style="solid", color="blue", weight=9]; 5146 -> 3827[label="",style="solid", color="blue", weight=3]; 5147[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5147[label="",style="solid", color="blue", weight=9]; 5147 -> 3828[label="",style="solid", color="blue", weight=3]; 5148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5148[label="",style="solid", color="blue", weight=9]; 5148 -> 3829[label="",style="solid", color="blue", weight=3]; 5149[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5149[label="",style="solid", color="blue", weight=9]; 5149 -> 3830[label="",style="solid", color="blue", weight=3]; 5150[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5150[label="",style="solid", color="blue", weight=9]; 5150 -> 3831[label="",style="solid", color="blue", weight=3]; 5151[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5151[label="",style="solid", color="blue", weight=9]; 5151 -> 3832[label="",style="solid", color="blue", weight=3]; 5152[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5152[label="",style="solid", color="blue", weight=9]; 5152 -> 3833[label="",style="solid", color="blue", weight=3]; 5153[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5153[label="",style="solid", color="blue", weight=9]; 5153 -> 3834[label="",style="solid", color="blue", weight=3]; 5154[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5154[label="",style="solid", color="blue", weight=9]; 5154 -> 3835[label="",style="solid", color="blue", weight=3]; 5155[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5155[label="",style="solid", color="blue", weight=9]; 5155 -> 3836[label="",style="solid", color="blue", weight=3]; 5156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5156[label="",style="solid", color="blue", weight=9]; 5156 -> 3837[label="",style="solid", color="blue", weight=3]; 5157[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3649 -> 5157[label="",style="solid", color="blue", weight=9]; 5157 -> 3838[label="",style="solid", color="blue", weight=3]; 3650[label="yvy49000",fontsize=16,color="green",shape="box"];3651[label="yvy50000",fontsize=16,color="green",shape="box"];3652[label="yvy49000",fontsize=16,color="green",shape="box"];3653[label="yvy50000",fontsize=16,color="green",shape="box"];3654[label="yvy49000",fontsize=16,color="green",shape="box"];3655[label="yvy50000",fontsize=16,color="green",shape="box"];3656[label="yvy49000",fontsize=16,color="green",shape="box"];3657[label="yvy50000",fontsize=16,color="green",shape="box"];3658[label="yvy49000",fontsize=16,color="green",shape="box"];3659[label="yvy50000",fontsize=16,color="green",shape="box"];3660[label="yvy49000",fontsize=16,color="green",shape="box"];3661[label="yvy50000",fontsize=16,color="green",shape="box"];3662[label="yvy49000",fontsize=16,color="green",shape="box"];3663[label="yvy50000",fontsize=16,color="green",shape="box"];3664[label="yvy49000",fontsize=16,color="green",shape="box"];3665[label="yvy50000",fontsize=16,color="green",shape="box"];3666[label="yvy49000",fontsize=16,color="green",shape="box"];3667[label="yvy50000",fontsize=16,color="green",shape="box"];3668[label="yvy49000",fontsize=16,color="green",shape="box"];3669[label="yvy50000",fontsize=16,color="green",shape="box"];3670[label="yvy49000",fontsize=16,color="green",shape="box"];3671[label="yvy50000",fontsize=16,color="green",shape="box"];3672[label="yvy49000",fontsize=16,color="green",shape="box"];3673[label="yvy50000",fontsize=16,color="green",shape="box"];3674[label="yvy49000",fontsize=16,color="green",shape="box"];3675[label="yvy50000",fontsize=16,color="green",shape="box"];3676[label="yvy49000",fontsize=16,color="green",shape="box"];3677[label="yvy50000",fontsize=16,color="green",shape="box"];3678[label="yvy49000",fontsize=16,color="green",shape="box"];3679[label="yvy50000",fontsize=16,color="green",shape="box"];3680[label="yvy49000",fontsize=16,color="green",shape="box"];3681[label="yvy50000",fontsize=16,color="green",shape="box"];3682[label="yvy49000",fontsize=16,color="green",shape="box"];3683[label="yvy50000",fontsize=16,color="green",shape="box"];3684[label="yvy49000",fontsize=16,color="green",shape="box"];3685[label="yvy50000",fontsize=16,color="green",shape="box"];3686[label="yvy49000",fontsize=16,color="green",shape="box"];3687[label="yvy50000",fontsize=16,color="green",shape="box"];3688[label="yvy49000",fontsize=16,color="green",shape="box"];3689[label="yvy50000",fontsize=16,color="green",shape="box"];3690[label="yvy49000",fontsize=16,color="green",shape="box"];3691[label="yvy50000",fontsize=16,color="green",shape="box"];3692[label="yvy49000",fontsize=16,color="green",shape="box"];3693[label="yvy50000",fontsize=16,color="green",shape="box"];3694[label="yvy49000",fontsize=16,color="green",shape="box"];3695[label="yvy50000",fontsize=16,color="green",shape="box"];3696[label="yvy49000",fontsize=16,color="green",shape="box"];3697[label="yvy50000",fontsize=16,color="green",shape="box"];3698[label="yvy49000",fontsize=16,color="green",shape="box"];3699[label="yvy50000",fontsize=16,color="green",shape="box"];3700[label="yvy49000",fontsize=16,color="green",shape="box"];3701[label="yvy50000",fontsize=16,color="green",shape="box"];3702[label="yvy49000",fontsize=16,color="green",shape="box"];3703[label="yvy50000",fontsize=16,color="green",shape="box"];3704[label="yvy49000",fontsize=16,color="green",shape="box"];3705[label="yvy50000",fontsize=16,color="green",shape="box"];3706[label="yvy49000",fontsize=16,color="green",shape="box"];3707[label="yvy50000",fontsize=16,color="green",shape="box"];3708[label="yvy49000",fontsize=16,color="green",shape="box"];3709[label="yvy50000",fontsize=16,color="green",shape="box"];3710[label="yvy49000",fontsize=16,color="green",shape="box"];3711[label="yvy50000",fontsize=16,color="green",shape="box"];3712[label="yvy49000",fontsize=16,color="green",shape="box"];3713[label="yvy50000",fontsize=16,color="green",shape="box"];3714[label="yvy49000",fontsize=16,color="green",shape="box"];3715[label="yvy50000",fontsize=16,color="green",shape="box"];3716[label="yvy49000",fontsize=16,color="green",shape="box"];3717[label="yvy50000",fontsize=16,color="green",shape="box"];3718[label="yvy49000",fontsize=16,color="green",shape="box"];3719[label="yvy50000",fontsize=16,color="green",shape="box"];3720[label="yvy49000",fontsize=16,color="green",shape="box"];3721[label="yvy50000",fontsize=16,color="green",shape="box"];3722[label="yvy49000",fontsize=16,color="green",shape="box"];3723[label="yvy50000",fontsize=16,color="green",shape="box"];3724[label="yvy49000",fontsize=16,color="green",shape="box"];3725[label="yvy50000",fontsize=16,color="green",shape="box"];3726[label="yvy49000",fontsize=16,color="green",shape="box"];3727[label="yvy50000",fontsize=16,color="green",shape="box"];3728[label="yvy49000",fontsize=16,color="green",shape="box"];3729[label="yvy50000",fontsize=16,color="green",shape="box"];3730[label="yvy49000",fontsize=16,color="green",shape="box"];3731[label="yvy50000",fontsize=16,color="green",shape="box"];3732[label="yvy49000",fontsize=16,color="green",shape="box"];3733[label="yvy50000",fontsize=16,color="green",shape="box"];3734[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5158[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3734 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 3839[label="",style="solid", color="burlywood", weight=3]; 3735[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5159[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 3840[label="",style="solid", color="burlywood", weight=3]; 3736[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="blue",shape="box"];5160[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3736 -> 5160[label="",style="solid", color="blue", weight=9]; 5160 -> 3841[label="",style="solid", color="blue", weight=3]; 5161[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3736 -> 5161[label="",style="solid", color="blue", weight=9]; 5161 -> 3842[label="",style="solid", color="blue", weight=3]; 2148 -> 2446[label="",style="dashed", color="red", weight=0]; 2148[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2148 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2199[label="primMulNat (Succ yvy400100) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2199 -> 2319[label="",style="solid", color="black", weight=3]; 2200[label="primMulNat (Succ yvy400100) Zero",fontsize=16,color="black",shape="box"];2200 -> 2320[label="",style="solid", color="black", weight=3]; 2201[label="primMulNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2201 -> 2321[label="",style="solid", color="black", weight=3]; 2202[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2202 -> 2322[label="",style="solid", color="black", weight=3]; 2329 -> 2205[label="",style="dashed", color="red", weight=0]; 2329[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="magenta"];2329 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2330[label="GT",fontsize=16,color="green",shape="box"];2331[label="primCmpInt (Pos Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2331 -> 2478[label="",style="solid", color="black", weight=3]; 2332[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2332 -> 2479[label="",style="solid", color="black", weight=3]; 2333[label="primCmpInt (Pos Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2333 -> 2480[label="",style="solid", color="black", weight=3]; 2334[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2334 -> 2481[label="",style="solid", color="black", weight=3]; 2335[label="LT",fontsize=16,color="green",shape="box"];2336 -> 2205[label="",style="dashed", color="red", weight=0]; 2336[label="primCmpNat yvy500 (Succ yvy4900)",fontsize=16,color="magenta"];2336 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2337[label="primCmpInt (Neg Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2337 -> 2484[label="",style="solid", color="black", weight=3]; 2338[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2338 -> 2485[label="",style="solid", color="black", weight=3]; 2339[label="primCmpInt (Neg Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2339 -> 2486[label="",style="solid", color="black", weight=3]; 2340[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2340 -> 2487[label="",style="solid", color="black", weight=3]; 4440 -> 3415[label="",style="dashed", color="red", weight=0]; 4440[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245 + FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245",fontsize=16,color="magenta"];4440 -> 4441[label="",style="dashed", color="magenta", weight=3]; 4440 -> 4442[label="",style="dashed", color="magenta", weight=3]; 4439[label="FiniteMap.mkBranchUnbox yvy246 yvy243 yvy245 yvy250",fontsize=16,color="black",shape="triangle"];4439 -> 4443[label="",style="solid", color="black", weight=3]; 3737[label="Pos (primPlusNat yvy2080 yvy2070)",fontsize=16,color="green",shape="box"];3737 -> 3843[label="",style="dashed", color="green", weight=3]; 3738[label="primMinusNat yvy2080 yvy2070",fontsize=16,color="burlywood",shape="triangle"];5162[label="yvy2080/Succ yvy20800",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 3844[label="",style="solid", color="burlywood", weight=3]; 5163[label="yvy2080/Zero",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 3845[label="",style="solid", color="burlywood", weight=3]; 3739 -> 3738[label="",style="dashed", color="red", weight=0]; 3739[label="primMinusNat yvy2070 yvy2080",fontsize=16,color="magenta"];3739 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3739 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3740[label="Neg (primPlusNat yvy2080 yvy2070)",fontsize=16,color="green",shape="box"];3740 -> 3848[label="",style="dashed", color="green", weight=3]; 2458[label="GT",fontsize=16,color="green",shape="box"];2459 -> 1649[label="",style="dashed", color="red", weight=0]; 2459[label="compare yvy158 yvy157",fontsize=16,color="magenta"];2459 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2427[label="",style="dashed", color="red", weight=0]; 2424[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2424 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2423[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy155",fontsize=16,color="burlywood",shape="triangle"];5164[label="yvy155/False",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 2438[label="",style="solid", color="burlywood", weight=3]; 5165[label="yvy155/True",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 2439[label="",style="solid", color="burlywood", weight=3]; 2219[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 FiniteMap.EmptyFM yvy67 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2219 -> 2344[label="",style="solid", color="black", weight=3]; 2220[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2220 -> 2345[label="",style="solid", color="black", weight=3]; 2177 -> 2446[label="",style="dashed", color="red", weight=0]; 2177[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2177 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2450[label="",style="dashed", color="magenta", weight=3]; 3741[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5166[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3741 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 3849[label="",style="solid", color="burlywood", weight=3]; 5167[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3741 -> 5167[label="",style="solid", color="burlywood", weight=9]; 5167 -> 3850[label="",style="solid", color="burlywood", weight=3]; 3742[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5168[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5168[label="",style="solid", color="burlywood", weight=9]; 5168 -> 3851[label="",style="solid", color="burlywood", weight=3]; 5169[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 3852[label="",style="solid", color="burlywood", weight=3]; 3743[label="True",fontsize=16,color="green",shape="box"];3744[label="False",fontsize=16,color="green",shape="box"];3745 -> 2205[label="",style="dashed", color="red", weight=0]; 3745[label="primCmpNat yvy49000 yvy50000",fontsize=16,color="magenta"];3745 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3745 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3747 -> 3440[label="",style="dashed", color="red", weight=0]; 3747[label="compare yvy49001 yvy50001",fontsize=16,color="magenta"];3747 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3747 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3746[label="primCompAux yvy49000 yvy50000 yvy221",fontsize=16,color="black",shape="triangle"];3746 -> 3857[label="",style="solid", color="black", weight=3]; 3748[label="yvy49000",fontsize=16,color="green",shape="box"];3749[label="yvy50000",fontsize=16,color="green",shape="box"];3750 -> 115[label="",style="dashed", color="red", weight=0]; 3750[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3750 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3751 -> 115[label="",style="dashed", color="red", weight=0]; 3751[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3751 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3751 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3752[label="yvy49000",fontsize=16,color="green",shape="box"];3753[label="yvy50000",fontsize=16,color="green",shape="box"];3754 -> 115[label="",style="dashed", color="red", weight=0]; 3754[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3754 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3754 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3755 -> 115[label="",style="dashed", color="red", weight=0]; 3755[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3755 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3756 -> 115[label="",style="dashed", color="red", weight=0]; 3756[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3756 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3757 -> 115[label="",style="dashed", color="red", weight=0]; 3757[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3757 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3758 -> 115[label="",style="dashed", color="red", weight=0]; 3758[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3758 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3758 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3759 -> 115[label="",style="dashed", color="red", weight=0]; 3759[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3759 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3760 -> 115[label="",style="dashed", color="red", weight=0]; 3760[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3760 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3760 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3761 -> 115[label="",style="dashed", color="red", weight=0]; 3761[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3761 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3762 -> 115[label="",style="dashed", color="red", weight=0]; 3762[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3762 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3762 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3763 -> 115[label="",style="dashed", color="red", weight=0]; 3763[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3763 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3763 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3764 -> 115[label="",style="dashed", color="red", weight=0]; 3764[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3764 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3765 -> 3094[label="",style="dashed", color="red", weight=0]; 3765[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3765 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3765 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3095[label="",style="dashed", color="red", weight=0]; 3766[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3766 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3767 -> 3096[label="",style="dashed", color="red", weight=0]; 3767[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3767 -> 3910[label="",style="dashed", color="magenta", weight=3]; 3767 -> 3911[label="",style="dashed", color="magenta", weight=3]; 3768 -> 3097[label="",style="dashed", color="red", weight=0]; 3768[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3768 -> 3912[label="",style="dashed", color="magenta", weight=3]; 3768 -> 3913[label="",style="dashed", color="magenta", weight=3]; 3769 -> 3098[label="",style="dashed", color="red", weight=0]; 3769[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3769 -> 3914[label="",style="dashed", color="magenta", weight=3]; 3769 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3099[label="",style="dashed", color="red", weight=0]; 3770[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3770 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3771 -> 3100[label="",style="dashed", color="red", weight=0]; 3771[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3771 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3771 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3772 -> 3101[label="",style="dashed", color="red", weight=0]; 3772[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3772 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3772 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3773 -> 3102[label="",style="dashed", color="red", weight=0]; 3773[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3773 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3773 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3774 -> 3103[label="",style="dashed", color="red", weight=0]; 3774[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3774 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3774 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3775 -> 3104[label="",style="dashed", color="red", weight=0]; 3775[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3775 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3775 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3776 -> 3105[label="",style="dashed", color="red", weight=0]; 3776[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3776 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3776 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3777 -> 3106[label="",style="dashed", color="red", weight=0]; 3777[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3777 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3777 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3778 -> 3107[label="",style="dashed", color="red", weight=0]; 3778[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3778 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3778 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3779 -> 2565[label="",style="dashed", color="red", weight=0]; 3779[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3779 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3779 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3780 -> 2571[label="",style="dashed", color="red", weight=0]; 3780[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3780 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3780 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3781 -> 2570[label="",style="dashed", color="red", weight=0]; 3781[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3781 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3781 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3782 -> 2572[label="",style="dashed", color="red", weight=0]; 3782[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3782 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3782 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3783 -> 2567[label="",style="dashed", color="red", weight=0]; 3783[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3783 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3783 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3784 -> 2561[label="",style="dashed", color="red", weight=0]; 3784[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3784 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3784 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3785 -> 2566[label="",style="dashed", color="red", weight=0]; 3785[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3785 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3785 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3786 -> 2560[label="",style="dashed", color="red", weight=0]; 3786[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3786 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3786 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3787 -> 2562[label="",style="dashed", color="red", weight=0]; 3787[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3787 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3787 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3788 -> 2563[label="",style="dashed", color="red", weight=0]; 3788[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3788 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3788 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3789 -> 2569[label="",style="dashed", color="red", weight=0]; 3789[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3789 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3789 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3790 -> 115[label="",style="dashed", color="red", weight=0]; 3790[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3790 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3790 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3791 -> 2573[label="",style="dashed", color="red", weight=0]; 3791[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3791 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3792 -> 2568[label="",style="dashed", color="red", weight=0]; 3792[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3792 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3961[label="",style="dashed", color="magenta", weight=3]; 3793[label="yvy220",fontsize=16,color="green",shape="box"];3794[label="True",fontsize=16,color="green",shape="box"];3795[label="yvy50000",fontsize=16,color="green",shape="box"];3796[label="yvy49000",fontsize=16,color="green",shape="box"];3797[label="yvy50000",fontsize=16,color="green",shape="box"];3798[label="yvy49000",fontsize=16,color="green",shape="box"];3799[label="yvy49000",fontsize=16,color="green",shape="box"];3800[label="yvy50000",fontsize=16,color="green",shape="box"];3801[label="yvy50000",fontsize=16,color="green",shape="box"];3802[label="yvy49000",fontsize=16,color="green",shape="box"];3803[label="yvy50000",fontsize=16,color="green",shape="box"];3804[label="yvy49000",fontsize=16,color="green",shape="box"];3805[label="yvy50000",fontsize=16,color="green",shape="box"];3806[label="yvy49000",fontsize=16,color="green",shape="box"];3807[label="yvy50000",fontsize=16,color="green",shape="box"];3808[label="yvy49000",fontsize=16,color="green",shape="box"];3809[label="yvy50000",fontsize=16,color="green",shape="box"];3810[label="yvy49000",fontsize=16,color="green",shape="box"];3811[label="yvy50000",fontsize=16,color="green",shape="box"];3812[label="yvy49000",fontsize=16,color="green",shape="box"];3813[label="yvy50000",fontsize=16,color="green",shape="box"];3814[label="yvy49000",fontsize=16,color="green",shape="box"];3815[label="yvy50000",fontsize=16,color="green",shape="box"];3816[label="yvy49000",fontsize=16,color="green",shape="box"];3817[label="yvy50000",fontsize=16,color="green",shape="box"];3818[label="yvy49000",fontsize=16,color="green",shape="box"];3819[label="yvy50000",fontsize=16,color="green",shape="box"];3820[label="yvy49000",fontsize=16,color="green",shape="box"];3821[label="yvy50000",fontsize=16,color="green",shape="box"];3822[label="yvy49000",fontsize=16,color="green",shape="box"];3823[label="yvy49001 < yvy50001",fontsize=16,color="blue",shape="box"];5170[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5170[label="",style="solid", color="blue", weight=9]; 5170 -> 3962[label="",style="solid", color="blue", weight=3]; 5171[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5171[label="",style="solid", color="blue", weight=9]; 5171 -> 3963[label="",style="solid", color="blue", weight=3]; 5172[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5172[label="",style="solid", color="blue", weight=9]; 5172 -> 3964[label="",style="solid", color="blue", weight=3]; 5173[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 3965[label="",style="solid", color="blue", weight=3]; 5174[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 3966[label="",style="solid", color="blue", weight=3]; 5175[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 3967[label="",style="solid", color="blue", weight=3]; 5176[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 3968[label="",style="solid", color="blue", weight=3]; 5177[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5177[label="",style="solid", color="blue", weight=9]; 5177 -> 3969[label="",style="solid", color="blue", weight=3]; 5178[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5178[label="",style="solid", color="blue", weight=9]; 5178 -> 3970[label="",style="solid", color="blue", weight=3]; 5179[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5179[label="",style="solid", color="blue", weight=9]; 5179 -> 3971[label="",style="solid", color="blue", weight=3]; 5180[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5180[label="",style="solid", color="blue", weight=9]; 5180 -> 3972[label="",style="solid", color="blue", weight=3]; 5181[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5181[label="",style="solid", color="blue", weight=9]; 5181 -> 3973[label="",style="solid", color="blue", weight=3]; 5182[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5182[label="",style="solid", color="blue", weight=9]; 5182 -> 3974[label="",style="solid", color="blue", weight=3]; 5183[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5183[label="",style="solid", color="blue", weight=9]; 5183 -> 3975[label="",style="solid", color="blue", weight=3]; 3824 -> 2911[label="",style="dashed", color="red", weight=0]; 3824[label="yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3824 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3824 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3825 -> 2565[label="",style="dashed", color="red", weight=0]; 3825[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3825 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3825 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3826 -> 2571[label="",style="dashed", color="red", weight=0]; 3826[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3826 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3826 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3827 -> 2570[label="",style="dashed", color="red", weight=0]; 3827[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3827 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3827 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3828 -> 2572[label="",style="dashed", color="red", weight=0]; 3828[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3828 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3828 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3829 -> 2567[label="",style="dashed", color="red", weight=0]; 3829[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3829 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3830 -> 2561[label="",style="dashed", color="red", weight=0]; 3830[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3830 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3830 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3831 -> 2566[label="",style="dashed", color="red", weight=0]; 3831[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3831 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3832 -> 2560[label="",style="dashed", color="red", weight=0]; 3832[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3832 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3833 -> 2562[label="",style="dashed", color="red", weight=0]; 3833[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3833 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3833 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3834 -> 2563[label="",style="dashed", color="red", weight=0]; 3834[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3834 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3835 -> 2569[label="",style="dashed", color="red", weight=0]; 3835[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3835 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3835 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3836 -> 115[label="",style="dashed", color="red", weight=0]; 3836[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3836 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3836 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3837 -> 2573[label="",style="dashed", color="red", weight=0]; 3837[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3837 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3837 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3838 -> 2568[label="",style="dashed", color="red", weight=0]; 3838[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3838 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3838 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3839[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5184[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3839 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 4006[label="",style="solid", color="burlywood", weight=3]; 5185[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3839 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 4007[label="",style="solid", color="burlywood", weight=3]; 3840[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5186[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 4008[label="",style="solid", color="burlywood", weight=3]; 5187[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 4009[label="",style="solid", color="burlywood", weight=3]; 3841 -> 1649[label="",style="dashed", color="red", weight=0]; 3841[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3841 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3841 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3442[label="",style="dashed", color="red", weight=0]; 3842[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3842 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3842 -> 4013[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2446[label="",style="dashed", color="red", weight=0]; 2447[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2447 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2448[label="yvy6200",fontsize=16,color="green",shape="box"];2446[label="primPlusNat yvy161 (Succ yvy300000)",fontsize=16,color="burlywood",shape="triangle"];5188[label="yvy161/Succ yvy1610",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 2462[label="",style="solid", color="burlywood", weight=3]; 5189[label="yvy161/Zero",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 2463[label="",style="solid", color="burlywood", weight=3]; 2319 -> 2446[label="",style="dashed", color="red", weight=0]; 2319[label="primPlusNat (primMulNat yvy400100 (Succ yvy300000)) (Succ yvy300000)",fontsize=16,color="magenta"];2319 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2320[label="Zero",fontsize=16,color="green",shape="box"];2321[label="Zero",fontsize=16,color="green",shape="box"];2322[label="Zero",fontsize=16,color="green",shape="box"];2476[label="yvy500",fontsize=16,color="green",shape="box"];2477[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2205[label="primCmpNat yvy490 yvy500",fontsize=16,color="burlywood",shape="triangle"];5190[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];2205 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 2327[label="",style="solid", color="burlywood", weight=3]; 5191[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];2205 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 2328[label="",style="solid", color="burlywood", weight=3]; 2478 -> 2205[label="",style="dashed", color="red", weight=0]; 2478[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="magenta"];2478 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2479[label="EQ",fontsize=16,color="green",shape="box"];2480[label="GT",fontsize=16,color="green",shape="box"];2481[label="EQ",fontsize=16,color="green",shape="box"];2482[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2483[label="yvy500",fontsize=16,color="green",shape="box"];2484[label="LT",fontsize=16,color="green",shape="box"];2485[label="EQ",fontsize=16,color="green",shape="box"];2486 -> 2205[label="",style="dashed", color="red", weight=0]; 2486[label="primCmpNat (Succ yvy5000) Zero",fontsize=16,color="magenta"];2486 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2487[label="EQ",fontsize=16,color="green",shape="box"];4441 -> 3415[label="",style="dashed", color="red", weight=0]; 4441[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245",fontsize=16,color="magenta"];4441 -> 4446[label="",style="dashed", color="magenta", weight=3]; 4441 -> 4447[label="",style="dashed", color="magenta", weight=3]; 4442[label="FiniteMap.mkBranchRight_size yvy246 yvy243 yvy245",fontsize=16,color="black",shape="box"];4442 -> 4448[label="",style="solid", color="black", weight=3]; 4443[label="yvy250",fontsize=16,color="green",shape="box"];3843 -> 2794[label="",style="dashed", color="red", weight=0]; 3843[label="primPlusNat yvy2080 yvy2070",fontsize=16,color="magenta"];3843 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3843 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3844[label="primMinusNat (Succ yvy20800) yvy2070",fontsize=16,color="burlywood",shape="box"];5192[label="yvy2070/Succ yvy20700",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5192[label="",style="solid", color="burlywood", weight=9]; 5192 -> 4016[label="",style="solid", color="burlywood", weight=3]; 5193[label="yvy2070/Zero",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5193[label="",style="solid", color="burlywood", weight=9]; 5193 -> 4017[label="",style="solid", color="burlywood", weight=3]; 3845[label="primMinusNat Zero yvy2070",fontsize=16,color="burlywood",shape="box"];5194[label="yvy2070/Succ yvy20700",fontsize=10,color="white",style="solid",shape="box"];3845 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 4018[label="",style="solid", color="burlywood", weight=3]; 5195[label="yvy2070/Zero",fontsize=10,color="white",style="solid",shape="box"];3845 -> 5195[label="",style="solid", color="burlywood", weight=9]; 5195 -> 4019[label="",style="solid", color="burlywood", weight=3]; 3846[label="yvy2070",fontsize=16,color="green",shape="box"];3847[label="yvy2080",fontsize=16,color="green",shape="box"];3848 -> 2794[label="",style="dashed", color="red", weight=0]; 3848[label="primPlusNat yvy2080 yvy2070",fontsize=16,color="magenta"];3848 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3848 -> 4021[label="",style="dashed", color="magenta", weight=3]; 2493[label="yvy158",fontsize=16,color="green",shape="box"];2494[label="yvy157",fontsize=16,color="green",shape="box"];2433 -> 986[label="",style="dashed", color="red", weight=0]; 2433[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2433 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2438[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];2438 -> 2464[label="",style="solid", color="black", weight=3]; 2439[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2439 -> 2465[label="",style="solid", color="black", weight=3]; 2344[label="error []",fontsize=16,color="red",shape="box"];2345[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2345 -> 2443[label="",style="solid", color="black", weight=3]; 2449 -> 2446[label="",style="dashed", color="red", weight=0]; 2449[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2449 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2450[label="yvy6200",fontsize=16,color="green",shape="box"];3849[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3849 -> 4022[label="",style="solid", color="black", weight=3]; 3850[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3850 -> 4023[label="",style="solid", color="black", weight=3]; 3851[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3851 -> 4024[label="",style="solid", color="black", weight=3]; 3852[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3852 -> 4025[label="",style="solid", color="black", weight=3]; 3853[label="yvy50000",fontsize=16,color="green",shape="box"];3854[label="yvy49000",fontsize=16,color="green",shape="box"];3855[label="yvy49001",fontsize=16,color="green",shape="box"];3856[label="yvy50001",fontsize=16,color="green",shape="box"];3857 -> 4026[label="",style="dashed", color="red", weight=0]; 3857[label="primCompAux0 yvy221 (compare yvy49000 yvy50000)",fontsize=16,color="magenta"];3857 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3880[label="LT",fontsize=16,color="green",shape="box"];3881 -> 3437[label="",style="dashed", color="red", weight=0]; 3881[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3881 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3881 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3882[label="LT",fontsize=16,color="green",shape="box"];3883 -> 3438[label="",style="dashed", color="red", weight=0]; 3883[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3883 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3883 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3884[label="LT",fontsize=16,color="green",shape="box"];3885 -> 3440[label="",style="dashed", color="red", weight=0]; 3885[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3885 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3885 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3886[label="LT",fontsize=16,color="green",shape="box"];3887 -> 3441[label="",style="dashed", color="red", weight=0]; 3887[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3887 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3888[label="LT",fontsize=16,color="green",shape="box"];3889 -> 3442[label="",style="dashed", color="red", weight=0]; 3889[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3889 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3889 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3890[label="LT",fontsize=16,color="green",shape="box"];3891[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3891 -> 4039[label="",style="solid", color="black", weight=3]; 3892[label="LT",fontsize=16,color="green",shape="box"];3893[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3893 -> 4040[label="",style="solid", color="black", weight=3]; 3894[label="LT",fontsize=16,color="green",shape="box"];3895[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3895 -> 4041[label="",style="solid", color="black", weight=3]; 3896[label="LT",fontsize=16,color="green",shape="box"];3897[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3897 -> 4042[label="",style="solid", color="black", weight=3]; 3898[label="LT",fontsize=16,color="green",shape="box"];3899[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3899 -> 4043[label="",style="solid", color="black", weight=3]; 3900[label="LT",fontsize=16,color="green",shape="box"];3901[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3901 -> 4044[label="",style="solid", color="black", weight=3]; 3902[label="LT",fontsize=16,color="green",shape="box"];3903 -> 3443[label="",style="dashed", color="red", weight=0]; 3903[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3903 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3903 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3904[label="LT",fontsize=16,color="green",shape="box"];3905 -> 3444[label="",style="dashed", color="red", weight=0]; 3905[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3905 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3905 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3906[label="yvy49001",fontsize=16,color="green",shape="box"];3907[label="yvy50001",fontsize=16,color="green",shape="box"];3908[label="yvy49001",fontsize=16,color="green",shape="box"];3909[label="yvy50001",fontsize=16,color="green",shape="box"];3910[label="yvy49001",fontsize=16,color="green",shape="box"];3911[label="yvy50001",fontsize=16,color="green",shape="box"];3912[label="yvy49001",fontsize=16,color="green",shape="box"];3913[label="yvy50001",fontsize=16,color="green",shape="box"];3914[label="yvy49001",fontsize=16,color="green",shape="box"];3915[label="yvy50001",fontsize=16,color="green",shape="box"];3916[label="yvy49001",fontsize=16,color="green",shape="box"];3917[label="yvy50001",fontsize=16,color="green",shape="box"];3918[label="yvy49001",fontsize=16,color="green",shape="box"];3919[label="yvy50001",fontsize=16,color="green",shape="box"];3920[label="yvy49001",fontsize=16,color="green",shape="box"];3921[label="yvy50001",fontsize=16,color="green",shape="box"];3922[label="yvy49001",fontsize=16,color="green",shape="box"];3923[label="yvy50001",fontsize=16,color="green",shape="box"];3924[label="yvy49001",fontsize=16,color="green",shape="box"];3925[label="yvy50001",fontsize=16,color="green",shape="box"];3926[label="yvy49001",fontsize=16,color="green",shape="box"];3927[label="yvy50001",fontsize=16,color="green",shape="box"];3928[label="yvy49001",fontsize=16,color="green",shape="box"];3929[label="yvy50001",fontsize=16,color="green",shape="box"];3930[label="yvy49001",fontsize=16,color="green",shape="box"];3931[label="yvy50001",fontsize=16,color="green",shape="box"];3932[label="yvy49001",fontsize=16,color="green",shape="box"];3933[label="yvy50001",fontsize=16,color="green",shape="box"];3934[label="yvy50000",fontsize=16,color="green",shape="box"];3935[label="yvy49000",fontsize=16,color="green",shape="box"];3936[label="yvy50000",fontsize=16,color="green",shape="box"];3937[label="yvy49000",fontsize=16,color="green",shape="box"];3938[label="yvy50000",fontsize=16,color="green",shape="box"];3939[label="yvy49000",fontsize=16,color="green",shape="box"];3940[label="yvy50000",fontsize=16,color="green",shape="box"];3941[label="yvy49000",fontsize=16,color="green",shape="box"];3942[label="yvy50000",fontsize=16,color="green",shape="box"];3943[label="yvy49000",fontsize=16,color="green",shape="box"];3944[label="yvy50000",fontsize=16,color="green",shape="box"];3945[label="yvy49000",fontsize=16,color="green",shape="box"];3946[label="yvy50000",fontsize=16,color="green",shape="box"];3947[label="yvy49000",fontsize=16,color="green",shape="box"];3948[label="yvy50000",fontsize=16,color="green",shape="box"];3949[label="yvy49000",fontsize=16,color="green",shape="box"];3950[label="yvy50000",fontsize=16,color="green",shape="box"];3951[label="yvy49000",fontsize=16,color="green",shape="box"];3952[label="yvy50000",fontsize=16,color="green",shape="box"];3953[label="yvy49000",fontsize=16,color="green",shape="box"];3954[label="yvy50000",fontsize=16,color="green",shape="box"];3955[label="yvy49000",fontsize=16,color="green",shape="box"];3956[label="yvy50000",fontsize=16,color="green",shape="box"];3957[label="yvy49000",fontsize=16,color="green",shape="box"];3958[label="yvy50000",fontsize=16,color="green",shape="box"];3959[label="yvy49000",fontsize=16,color="green",shape="box"];3960[label="yvy50000",fontsize=16,color="green",shape="box"];3961[label="yvy49000",fontsize=16,color="green",shape="box"];3962 -> 3616[label="",style="dashed", color="red", weight=0]; 3962[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3962 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3962 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3963 -> 3617[label="",style="dashed", color="red", weight=0]; 3963[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3963 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3963 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3964 -> 3335[label="",style="dashed", color="red", weight=0]; 3964[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3964 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3964 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3965 -> 3619[label="",style="dashed", color="red", weight=0]; 3965[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3965 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3965 -> 4056[label="",style="dashed", color="magenta", weight=3]; 3966 -> 3620[label="",style="dashed", color="red", weight=0]; 3966[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3966 -> 4057[label="",style="dashed", color="magenta", weight=3]; 3966 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3967 -> 3621[label="",style="dashed", color="red", weight=0]; 3967[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3967 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3967 -> 4060[label="",style="dashed", color="magenta", weight=3]; 3968 -> 3622[label="",style="dashed", color="red", weight=0]; 3968[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3968 -> 4061[label="",style="dashed", color="magenta", weight=3]; 3968 -> 4062[label="",style="dashed", color="magenta", weight=3]; 3969 -> 3623[label="",style="dashed", color="red", weight=0]; 3969[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3969 -> 4063[label="",style="dashed", color="magenta", weight=3]; 3969 -> 4064[label="",style="dashed", color="magenta", weight=3]; 3970 -> 3624[label="",style="dashed", color="red", weight=0]; 3970[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3970 -> 4065[label="",style="dashed", color="magenta", weight=3]; 3970 -> 4066[label="",style="dashed", color="magenta", weight=3]; 3971 -> 3625[label="",style="dashed", color="red", weight=0]; 3971[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3971 -> 4067[label="",style="dashed", color="magenta", weight=3]; 3971 -> 4068[label="",style="dashed", color="magenta", weight=3]; 3972 -> 3626[label="",style="dashed", color="red", weight=0]; 3972[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3972 -> 4069[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4070[label="",style="dashed", color="magenta", weight=3]; 3973 -> 3627[label="",style="dashed", color="red", weight=0]; 3973[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3973 -> 4071[label="",style="dashed", color="magenta", weight=3]; 3973 -> 4072[label="",style="dashed", color="magenta", weight=3]; 3974 -> 3628[label="",style="dashed", color="red", weight=0]; 3974[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3974 -> 4073[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4074[label="",style="dashed", color="magenta", weight=3]; 3975 -> 3629[label="",style="dashed", color="red", weight=0]; 3975[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3975 -> 4075[label="",style="dashed", color="magenta", weight=3]; 3975 -> 4076[label="",style="dashed", color="magenta", weight=3]; 3976[label="yvy49002 <= yvy50002",fontsize=16,color="blue",shape="box"];5196[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 4077[label="",style="solid", color="blue", weight=3]; 5197[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 4078[label="",style="solid", color="blue", weight=3]; 5198[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 4079[label="",style="solid", color="blue", weight=3]; 5199[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 4080[label="",style="solid", color="blue", weight=3]; 5200[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 4081[label="",style="solid", color="blue", weight=3]; 5201[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 4082[label="",style="solid", color="blue", weight=3]; 5202[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 4083[label="",style="solid", color="blue", weight=3]; 5203[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 4084[label="",style="solid", color="blue", weight=3]; 5204[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 4085[label="",style="solid", color="blue", weight=3]; 5205[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 4086[label="",style="solid", color="blue", weight=3]; 5206[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 4087[label="",style="solid", color="blue", weight=3]; 5207[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5207[label="",style="solid", color="blue", weight=9]; 5207 -> 4088[label="",style="solid", color="blue", weight=3]; 5208[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 4089[label="",style="solid", color="blue", weight=3]; 5209[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3976 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 4090[label="",style="solid", color="blue", weight=3]; 3977[label="yvy49001 == yvy50001",fontsize=16,color="blue",shape="box"];5210[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5210[label="",style="solid", color="blue", weight=9]; 5210 -> 4091[label="",style="solid", color="blue", weight=3]; 5211[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5211[label="",style="solid", color="blue", weight=9]; 5211 -> 4092[label="",style="solid", color="blue", weight=3]; 5212[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 4093[label="",style="solid", color="blue", weight=3]; 5213[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 4094[label="",style="solid", color="blue", weight=3]; 5214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 4095[label="",style="solid", color="blue", weight=3]; 5215[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 4096[label="",style="solid", color="blue", weight=3]; 5216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 4097[label="",style="solid", color="blue", weight=3]; 5217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 4098[label="",style="solid", color="blue", weight=3]; 5218[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 4099[label="",style="solid", color="blue", weight=3]; 5219[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 4100[label="",style="solid", color="blue", weight=3]; 5220[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 4101[label="",style="solid", color="blue", weight=3]; 5221[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 4102[label="",style="solid", color="blue", weight=3]; 5222[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5222[label="",style="solid", color="blue", weight=9]; 5222 -> 4103[label="",style="solid", color="blue", weight=3]; 5223[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3977 -> 5223[label="",style="solid", color="blue", weight=9]; 5223 -> 4104[label="",style="solid", color="blue", weight=3]; 3978[label="yvy50000",fontsize=16,color="green",shape="box"];3979[label="yvy49000",fontsize=16,color="green",shape="box"];3980[label="yvy50000",fontsize=16,color="green",shape="box"];3981[label="yvy49000",fontsize=16,color="green",shape="box"];3982[label="yvy50000",fontsize=16,color="green",shape="box"];3983[label="yvy49000",fontsize=16,color="green",shape="box"];3984[label="yvy50000",fontsize=16,color="green",shape="box"];3985[label="yvy49000",fontsize=16,color="green",shape="box"];3986[label="yvy50000",fontsize=16,color="green",shape="box"];3987[label="yvy49000",fontsize=16,color="green",shape="box"];3988[label="yvy50000",fontsize=16,color="green",shape="box"];3989[label="yvy49000",fontsize=16,color="green",shape="box"];3990[label="yvy50000",fontsize=16,color="green",shape="box"];3991[label="yvy49000",fontsize=16,color="green",shape="box"];3992[label="yvy50000",fontsize=16,color="green",shape="box"];3993[label="yvy49000",fontsize=16,color="green",shape="box"];3994[label="yvy50000",fontsize=16,color="green",shape="box"];3995[label="yvy49000",fontsize=16,color="green",shape="box"];3996[label="yvy50000",fontsize=16,color="green",shape="box"];3997[label="yvy49000",fontsize=16,color="green",shape="box"];3998[label="yvy50000",fontsize=16,color="green",shape="box"];3999[label="yvy49000",fontsize=16,color="green",shape="box"];4000[label="yvy50000",fontsize=16,color="green",shape="box"];4001[label="yvy49000",fontsize=16,color="green",shape="box"];4002[label="yvy50000",fontsize=16,color="green",shape="box"];4003[label="yvy49000",fontsize=16,color="green",shape="box"];4004[label="yvy50000",fontsize=16,color="green",shape="box"];4005[label="yvy49000",fontsize=16,color="green",shape="box"];4006[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];4006 -> 4105[label="",style="solid", color="black", weight=3]; 4007[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];4007 -> 4106[label="",style="solid", color="black", weight=3]; 4008[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];4008 -> 4107[label="",style="solid", color="black", weight=3]; 4009[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];4009 -> 4108[label="",style="solid", color="black", weight=3]; 4010 -> 986[label="",style="dashed", color="red", weight=0]; 4010[label="yvy49000 * yvy50001",fontsize=16,color="magenta"];4010 -> 4109[label="",style="dashed", color="magenta", weight=3]; 4010 -> 4110[label="",style="dashed", color="magenta", weight=3]; 4011 -> 986[label="",style="dashed", color="red", weight=0]; 4011[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];4011 -> 4111[label="",style="dashed", color="magenta", weight=3]; 4011 -> 4112[label="",style="dashed", color="magenta", weight=3]; 4012[label="yvy49000 * yvy50001",fontsize=16,color="burlywood",shape="triangle"];5224[label="yvy49000/Integer yvy490000",fontsize=10,color="white",style="solid",shape="box"];4012 -> 5224[label="",style="solid", color="burlywood", weight=9]; 5224 -> 4113[label="",style="solid", color="burlywood", weight=3]; 4013 -> 4012[label="",style="dashed", color="red", weight=0]; 4013[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];4013 -> 4114[label="",style="dashed", color="magenta", weight=3]; 4013 -> 4115[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2446[label="",style="dashed", color="red", weight=0]; 2460[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2460 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2461[label="yvy6200",fontsize=16,color="green",shape="box"];2462[label="primPlusNat (Succ yvy1610) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2462 -> 2608[label="",style="solid", color="black", weight=3]; 2463[label="primPlusNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2463 -> 2609[label="",style="solid", color="black", weight=3]; 2453 -> 1855[label="",style="dashed", color="red", weight=0]; 2453[label="primMulNat yvy400100 (Succ yvy300000)",fontsize=16,color="magenta"];2453 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2327[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="burlywood",shape="box"];5225[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2327 -> 5225[label="",style="solid", color="burlywood", weight=9]; 5225 -> 2472[label="",style="solid", color="burlywood", weight=3]; 5226[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2327 -> 5226[label="",style="solid", color="burlywood", weight=9]; 5226 -> 2473[label="",style="solid", color="burlywood", weight=3]; 2328[label="primCmpNat Zero yvy500",fontsize=16,color="burlywood",shape="box"];5227[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2328 -> 5227[label="",style="solid", color="burlywood", weight=9]; 5227 -> 2474[label="",style="solid", color="burlywood", weight=3]; 5228[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2328 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2805[label="Succ yvy5000",fontsize=16,color="green",shape="box"];2806[label="Zero",fontsize=16,color="green",shape="box"];2807[label="Zero",fontsize=16,color="green",shape="box"];2808[label="Succ yvy5000",fontsize=16,color="green",shape="box"];4446[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4447[label="FiniteMap.mkBranchLeft_size yvy246 yvy243 yvy245",fontsize=16,color="black",shape="box"];4447 -> 4451[label="",style="solid", color="black", weight=3]; 4448[label="FiniteMap.sizeFM yvy246",fontsize=16,color="burlywood",shape="triangle"];5229[label="yvy246/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4448 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 4452[label="",style="solid", color="burlywood", weight=3]; 5230[label="yvy246/FiniteMap.Branch yvy2460 yvy2461 yvy2462 yvy2463 yvy2464",fontsize=10,color="white",style="solid",shape="box"];4448 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 4453[label="",style="solid", color="burlywood", weight=3]; 4014[label="yvy2080",fontsize=16,color="green",shape="box"];4015[label="yvy2070",fontsize=16,color="green",shape="box"];2794[label="primPlusNat yvy1610 yvy300000",fontsize=16,color="burlywood",shape="triangle"];5231[label="yvy1610/Succ yvy16100",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 3125[label="",style="solid", color="burlywood", weight=3]; 5232[label="yvy1610/Zero",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 3126[label="",style="solid", color="burlywood", weight=3]; 4016[label="primMinusNat (Succ yvy20800) (Succ yvy20700)",fontsize=16,color="black",shape="box"];4016 -> 4116[label="",style="solid", color="black", weight=3]; 4017[label="primMinusNat (Succ yvy20800) Zero",fontsize=16,color="black",shape="box"];4017 -> 4117[label="",style="solid", color="black", weight=3]; 4018[label="primMinusNat Zero (Succ yvy20700)",fontsize=16,color="black",shape="box"];4018 -> 4118[label="",style="solid", color="black", weight=3]; 4019[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4019 -> 4119[label="",style="solid", color="black", weight=3]; 4020[label="yvy2080",fontsize=16,color="green",shape="box"];4021[label="yvy2070",fontsize=16,color="green",shape="box"];2441 -> 1563[label="",style="dashed", color="red", weight=0]; 2441[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2442 -> 2428[label="",style="dashed", color="red", weight=0]; 2442[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2464[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 otherwise",fontsize=16,color="black",shape="box"];2464 -> 2744[label="",style="solid", color="black", weight=3]; 2465[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy67",fontsize=16,color="burlywood",shape="box"];5233[label="yvy67/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 2745[label="",style="solid", color="burlywood", weight=3]; 5234[label="yvy67/FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 2746[label="",style="solid", color="burlywood", weight=3]; 2443 -> 3131[label="",style="dashed", color="red", weight=0]; 2443[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (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"];2443 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2446[label="",style="dashed", color="red", weight=0]; 2466[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2466 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2467[label="yvy6200",fontsize=16,color="green",shape="box"];4022 -> 1649[label="",style="dashed", color="red", weight=0]; 4022[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4022 -> 4120[label="",style="dashed", color="magenta", weight=3]; 4022 -> 4121[label="",style="dashed", color="magenta", weight=3]; 4023 -> 1649[label="",style="dashed", color="red", weight=0]; 4023[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4023 -> 4122[label="",style="dashed", color="magenta", weight=3]; 4023 -> 4123[label="",style="dashed", color="magenta", weight=3]; 4024 -> 1649[label="",style="dashed", color="red", weight=0]; 4024[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4024 -> 4124[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4125[label="",style="dashed", color="magenta", weight=3]; 4025 -> 1649[label="",style="dashed", color="red", weight=0]; 4025[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4025 -> 4126[label="",style="dashed", color="magenta", weight=3]; 4025 -> 4127[label="",style="dashed", color="magenta", weight=3]; 4027[label="compare yvy49000 yvy50000",fontsize=16,color="blue",shape="box"];5235[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5235[label="",style="solid", color="blue", weight=9]; 5235 -> 4128[label="",style="solid", color="blue", weight=3]; 5236[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 4129[label="",style="solid", color="blue", weight=3]; 5237[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 4130[label="",style="solid", color="blue", weight=3]; 5238[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5238[label="",style="solid", color="blue", weight=9]; 5238 -> 4131[label="",style="solid", color="blue", weight=3]; 5239[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5239[label="",style="solid", color="blue", weight=9]; 5239 -> 4132[label="",style="solid", color="blue", weight=3]; 5240[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5240[label="",style="solid", color="blue", weight=9]; 5240 -> 4133[label="",style="solid", color="blue", weight=3]; 5241[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5241[label="",style="solid", color="blue", weight=9]; 5241 -> 4134[label="",style="solid", color="blue", weight=3]; 5242[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5242[label="",style="solid", color="blue", weight=9]; 5242 -> 4135[label="",style="solid", color="blue", weight=3]; 5243[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5243[label="",style="solid", color="blue", weight=9]; 5243 -> 4136[label="",style="solid", color="blue", weight=3]; 5244[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5244[label="",style="solid", color="blue", weight=9]; 5244 -> 4137[label="",style="solid", color="blue", weight=3]; 5245[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5245[label="",style="solid", color="blue", weight=9]; 5245 -> 4138[label="",style="solid", color="blue", weight=3]; 5246[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5246[label="",style="solid", color="blue", weight=9]; 5246 -> 4139[label="",style="solid", color="blue", weight=3]; 5247[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5247[label="",style="solid", color="blue", weight=9]; 5247 -> 4140[label="",style="solid", color="blue", weight=3]; 5248[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4027 -> 5248[label="",style="solid", color="blue", weight=9]; 5248 -> 4141[label="",style="solid", color="blue", weight=3]; 4028[label="yvy221",fontsize=16,color="green",shape="box"];4026[label="primCompAux0 yvy225 yvy226",fontsize=16,color="burlywood",shape="triangle"];5249[label="yvy226/LT",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 4142[label="",style="solid", color="burlywood", weight=3]; 5250[label="yvy226/EQ",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 4143[label="",style="solid", color="burlywood", weight=3]; 5251[label="yvy226/GT",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 4144[label="",style="solid", color="burlywood", weight=3]; 4029[label="yvy49000",fontsize=16,color="green",shape="box"];4030[label="yvy50000",fontsize=16,color="green",shape="box"];4031[label="yvy49000",fontsize=16,color="green",shape="box"];4032[label="yvy50000",fontsize=16,color="green",shape="box"];4033[label="yvy49000",fontsize=16,color="green",shape="box"];4034[label="yvy50000",fontsize=16,color="green",shape="box"];4035[label="yvy49000",fontsize=16,color="green",shape="box"];4036[label="yvy50000",fontsize=16,color="green",shape="box"];4037[label="yvy49000",fontsize=16,color="green",shape="box"];4038[label="yvy50000",fontsize=16,color="green",shape="box"];4039[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4039 -> 4164[label="",style="solid", color="black", weight=3]; 4040[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4040 -> 4165[label="",style="solid", color="black", weight=3]; 4041[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4041 -> 4166[label="",style="solid", color="black", weight=3]; 4042[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4042 -> 4167[label="",style="solid", color="black", weight=3]; 4043[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4043 -> 4168[label="",style="solid", color="black", weight=3]; 4044[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4044 -> 4169[label="",style="solid", color="black", weight=3]; 4045[label="yvy49000",fontsize=16,color="green",shape="box"];4046[label="yvy50000",fontsize=16,color="green",shape="box"];4047[label="yvy49000",fontsize=16,color="green",shape="box"];4048[label="yvy50000",fontsize=16,color="green",shape="box"];4049[label="yvy50001",fontsize=16,color="green",shape="box"];4050[label="yvy49001",fontsize=16,color="green",shape="box"];4051[label="yvy50001",fontsize=16,color="green",shape="box"];4052[label="yvy49001",fontsize=16,color="green",shape="box"];4053[label="yvy49001",fontsize=16,color="green",shape="box"];4054[label="yvy50001",fontsize=16,color="green",shape="box"];4055[label="yvy50001",fontsize=16,color="green",shape="box"];4056[label="yvy49001",fontsize=16,color="green",shape="box"];4057[label="yvy50001",fontsize=16,color="green",shape="box"];4058[label="yvy49001",fontsize=16,color="green",shape="box"];4059[label="yvy50001",fontsize=16,color="green",shape="box"];4060[label="yvy49001",fontsize=16,color="green",shape="box"];4061[label="yvy50001",fontsize=16,color="green",shape="box"];4062[label="yvy49001",fontsize=16,color="green",shape="box"];4063[label="yvy50001",fontsize=16,color="green",shape="box"];4064[label="yvy49001",fontsize=16,color="green",shape="box"];4065[label="yvy50001",fontsize=16,color="green",shape="box"];4066[label="yvy49001",fontsize=16,color="green",shape="box"];4067[label="yvy50001",fontsize=16,color="green",shape="box"];4068[label="yvy49001",fontsize=16,color="green",shape="box"];4069[label="yvy50001",fontsize=16,color="green",shape="box"];4070[label="yvy49001",fontsize=16,color="green",shape="box"];4071[label="yvy50001",fontsize=16,color="green",shape="box"];4072[label="yvy49001",fontsize=16,color="green",shape="box"];4073[label="yvy50001",fontsize=16,color="green",shape="box"];4074[label="yvy49001",fontsize=16,color="green",shape="box"];4075[label="yvy50001",fontsize=16,color="green",shape="box"];4076[label="yvy49001",fontsize=16,color="green",shape="box"];4077 -> 3094[label="",style="dashed", color="red", weight=0]; 4077[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4077 -> 4170[label="",style="dashed", color="magenta", weight=3]; 4077 -> 4171[label="",style="dashed", color="magenta", weight=3]; 4078 -> 3095[label="",style="dashed", color="red", weight=0]; 4078[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4078 -> 4172[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4173[label="",style="dashed", color="magenta", weight=3]; 4079 -> 3096[label="",style="dashed", color="red", weight=0]; 4079[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4079 -> 4174[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4175[label="",style="dashed", color="magenta", weight=3]; 4080 -> 3097[label="",style="dashed", color="red", weight=0]; 4080[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4080 -> 4176[label="",style="dashed", color="magenta", weight=3]; 4080 -> 4177[label="",style="dashed", color="magenta", weight=3]; 4081 -> 3098[label="",style="dashed", color="red", weight=0]; 4081[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4081 -> 4178[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4179[label="",style="dashed", color="magenta", weight=3]; 4082 -> 3099[label="",style="dashed", color="red", weight=0]; 4082[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4082 -> 4180[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4181[label="",style="dashed", color="magenta", weight=3]; 4083 -> 3100[label="",style="dashed", color="red", weight=0]; 4083[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4083 -> 4182[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4183[label="",style="dashed", color="magenta", weight=3]; 4084 -> 3101[label="",style="dashed", color="red", weight=0]; 4084[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4084 -> 4184[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4185[label="",style="dashed", color="magenta", weight=3]; 4085 -> 3102[label="",style="dashed", color="red", weight=0]; 4085[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4085 -> 4186[label="",style="dashed", color="magenta", weight=3]; 4085 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4086 -> 3103[label="",style="dashed", color="red", weight=0]; 4086[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4086 -> 4188[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4189[label="",style="dashed", color="magenta", weight=3]; 4087 -> 3104[label="",style="dashed", color="red", weight=0]; 4087[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4087 -> 4190[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4191[label="",style="dashed", color="magenta", weight=3]; 4088 -> 3105[label="",style="dashed", color="red", weight=0]; 4088[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4088 -> 4192[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4193[label="",style="dashed", color="magenta", weight=3]; 4089 -> 3106[label="",style="dashed", color="red", weight=0]; 4089[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4089 -> 4194[label="",style="dashed", color="magenta", weight=3]; 4089 -> 4195[label="",style="dashed", color="magenta", weight=3]; 4090 -> 3107[label="",style="dashed", color="red", weight=0]; 4090[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4090 -> 4196[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4197[label="",style="dashed", color="magenta", weight=3]; 4091 -> 2565[label="",style="dashed", color="red", weight=0]; 4091[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4091 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4091 -> 4199[label="",style="dashed", color="magenta", weight=3]; 4092 -> 2571[label="",style="dashed", color="red", weight=0]; 4092[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4092 -> 4200[label="",style="dashed", color="magenta", weight=3]; 4092 -> 4201[label="",style="dashed", color="magenta", weight=3]; 4093 -> 2570[label="",style="dashed", color="red", weight=0]; 4093[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4093 -> 4202[label="",style="dashed", color="magenta", weight=3]; 4093 -> 4203[label="",style="dashed", color="magenta", weight=3]; 4094 -> 2572[label="",style="dashed", color="red", weight=0]; 4094[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4094 -> 4204[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4205[label="",style="dashed", color="magenta", weight=3]; 4095 -> 2567[label="",style="dashed", color="red", weight=0]; 4095[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4095 -> 4206[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4096 -> 2561[label="",style="dashed", color="red", weight=0]; 4096[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4096 -> 4208[label="",style="dashed", color="magenta", weight=3]; 4096 -> 4209[label="",style="dashed", color="magenta", weight=3]; 4097 -> 2566[label="",style="dashed", color="red", weight=0]; 4097[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4097 -> 4210[label="",style="dashed", color="magenta", weight=3]; 4097 -> 4211[label="",style="dashed", color="magenta", weight=3]; 4098 -> 2560[label="",style="dashed", color="red", weight=0]; 4098[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4098 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4098 -> 4213[label="",style="dashed", color="magenta", weight=3]; 4099 -> 2562[label="",style="dashed", color="red", weight=0]; 4099[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4099 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4099 -> 4215[label="",style="dashed", color="magenta", weight=3]; 4100 -> 2563[label="",style="dashed", color="red", weight=0]; 4100[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4100 -> 4216[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4217[label="",style="dashed", color="magenta", weight=3]; 4101 -> 2569[label="",style="dashed", color="red", weight=0]; 4101[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4101 -> 4218[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4219[label="",style="dashed", color="magenta", weight=3]; 4102 -> 115[label="",style="dashed", color="red", weight=0]; 4102[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4102 -> 4220[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4221[label="",style="dashed", color="magenta", weight=3]; 4103 -> 2573[label="",style="dashed", color="red", weight=0]; 4103[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4103 -> 4222[label="",style="dashed", color="magenta", weight=3]; 4103 -> 4223[label="",style="dashed", color="magenta", weight=3]; 4104 -> 2568[label="",style="dashed", color="red", weight=0]; 4104[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4104 -> 4224[label="",style="dashed", color="magenta", weight=3]; 4104 -> 4225[label="",style="dashed", color="magenta", weight=3]; 4105 -> 1649[label="",style="dashed", color="red", weight=0]; 4105[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4105 -> 4226[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4227[label="",style="dashed", color="magenta", weight=3]; 4106 -> 1649[label="",style="dashed", color="red", weight=0]; 4106[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4106 -> 4228[label="",style="dashed", color="magenta", weight=3]; 4106 -> 4229[label="",style="dashed", color="magenta", weight=3]; 4107 -> 1649[label="",style="dashed", color="red", weight=0]; 4107[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4107 -> 4230[label="",style="dashed", color="magenta", weight=3]; 4107 -> 4231[label="",style="dashed", color="magenta", weight=3]; 4108 -> 1649[label="",style="dashed", color="red", weight=0]; 4108[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4108 -> 4232[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4233[label="",style="dashed", color="magenta", weight=3]; 4109[label="yvy49000",fontsize=16,color="green",shape="box"];4110[label="yvy50001",fontsize=16,color="green",shape="box"];4111[label="yvy50000",fontsize=16,color="green",shape="box"];4112[label="yvy49001",fontsize=16,color="green",shape="box"];4113[label="Integer yvy490000 * yvy50001",fontsize=16,color="burlywood",shape="box"];5252[label="yvy50001/Integer yvy500010",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 4234[label="",style="solid", color="burlywood", weight=3]; 4114[label="yvy50000",fontsize=16,color="green",shape="box"];4115[label="yvy49001",fontsize=16,color="green",shape="box"];2606 -> 2446[label="",style="dashed", color="red", weight=0]; 2606[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2606 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2607[label="yvy6200",fontsize=16,color="green",shape="box"];2608[label="Succ (Succ (primPlusNat yvy1610 yvy300000))",fontsize=16,color="green",shape="box"];2608 -> 2794[label="",style="dashed", color="green", weight=3]; 2609[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2809[label="yvy400100",fontsize=16,color="green",shape="box"];2810[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2472[label="primCmpNat (Succ yvy4900) (Succ yvy5000)",fontsize=16,color="black",shape="box"];2472 -> 2811[label="",style="solid", color="black", weight=3]; 2473[label="primCmpNat (Succ yvy4900) Zero",fontsize=16,color="black",shape="box"];2473 -> 2812[label="",style="solid", color="black", weight=3]; 2474[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="black",shape="box"];2474 -> 2813[label="",style="solid", color="black", weight=3]; 2475[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2475 -> 2814[label="",style="solid", color="black", weight=3]; 4451 -> 4448[label="",style="dashed", color="red", weight=0]; 4451[label="FiniteMap.sizeFM yvy245",fontsize=16,color="magenta"];4451 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4452[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4452 -> 4497[label="",style="solid", color="black", weight=3]; 4453[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2460 yvy2461 yvy2462 yvy2463 yvy2464)",fontsize=16,color="black",shape="box"];4453 -> 4498[label="",style="solid", color="black", weight=3]; 3125[label="primPlusNat (Succ yvy16100) yvy300000",fontsize=16,color="burlywood",shape="box"];5253[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3125 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 3499[label="",style="solid", color="burlywood", weight=3]; 5254[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3125 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 3500[label="",style="solid", color="burlywood", weight=3]; 3126[label="primPlusNat Zero yvy300000",fontsize=16,color="burlywood",shape="box"];5255[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3126 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 3501[label="",style="solid", color="burlywood", weight=3]; 5256[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3126 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 3502[label="",style="solid", color="burlywood", weight=3]; 4116 -> 3738[label="",style="dashed", color="red", weight=0]; 4116[label="primMinusNat yvy20800 yvy20700",fontsize=16,color="magenta"];4116 -> 4235[label="",style="dashed", color="magenta", weight=3]; 4116 -> 4236[label="",style="dashed", color="magenta", weight=3]; 4117[label="Pos (Succ yvy20800)",fontsize=16,color="green",shape="box"];4118[label="Neg (Succ yvy20700)",fontsize=16,color="green",shape="box"];4119[label="Pos Zero",fontsize=16,color="green",shape="box"];2744[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2744 -> 2798[label="",style="solid", color="black", weight=3]; 2745[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2745 -> 2799[label="",style="solid", color="black", weight=3]; 2746[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674)",fontsize=16,color="black",shape="box"];2746 -> 2800[label="",style="solid", color="black", weight=3]; 3132 -> 3335[label="",style="dashed", color="red", weight=0]; 3132[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3132 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3131[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy202",fontsize=16,color="burlywood",shape="triangle"];5257[label="yvy202/False",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 3494[label="",style="solid", color="burlywood", weight=3]; 5258[label="yvy202/True",fontsize=10,color="white",style="solid",shape="box"];3131 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 3495[label="",style="solid", color="burlywood", weight=3]; 2788 -> 2446[label="",style="dashed", color="red", weight=0]; 2788[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2788 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2788 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2789[label="yvy6200",fontsize=16,color="green",shape="box"];4120 -> 986[label="",style="dashed", color="red", weight=0]; 4120[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4120 -> 4237[label="",style="dashed", color="magenta", weight=3]; 4120 -> 4238[label="",style="dashed", color="magenta", weight=3]; 4121 -> 986[label="",style="dashed", color="red", weight=0]; 4121[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4121 -> 4239[label="",style="dashed", color="magenta", weight=3]; 4121 -> 4240[label="",style="dashed", color="magenta", weight=3]; 4122 -> 986[label="",style="dashed", color="red", weight=0]; 4122[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4122 -> 4241[label="",style="dashed", color="magenta", weight=3]; 4122 -> 4242[label="",style="dashed", color="magenta", weight=3]; 4123 -> 986[label="",style="dashed", color="red", weight=0]; 4123[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4123 -> 4243[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4244[label="",style="dashed", color="magenta", weight=3]; 4124 -> 986[label="",style="dashed", color="red", weight=0]; 4124[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4124 -> 4245[label="",style="dashed", color="magenta", weight=3]; 4124 -> 4246[label="",style="dashed", color="magenta", weight=3]; 4125 -> 986[label="",style="dashed", color="red", weight=0]; 4125[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4125 -> 4247[label="",style="dashed", color="magenta", weight=3]; 4125 -> 4248[label="",style="dashed", color="magenta", weight=3]; 4126 -> 986[label="",style="dashed", color="red", weight=0]; 4126[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4126 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4126 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4127 -> 986[label="",style="dashed", color="red", weight=0]; 4127[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4127 -> 4251[label="",style="dashed", color="magenta", weight=3]; 4127 -> 4252[label="",style="dashed", color="magenta", weight=3]; 4128 -> 3437[label="",style="dashed", color="red", weight=0]; 4128[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4128 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4128 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4129 -> 3438[label="",style="dashed", color="red", weight=0]; 4129[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4129 -> 4255[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4256[label="",style="dashed", color="magenta", weight=3]; 4130 -> 1649[label="",style="dashed", color="red", weight=0]; 4130[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4130 -> 4257[label="",style="dashed", color="magenta", weight=3]; 4130 -> 4258[label="",style="dashed", color="magenta", weight=3]; 4131 -> 3440[label="",style="dashed", color="red", weight=0]; 4131[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4131 -> 4259[label="",style="dashed", color="magenta", weight=3]; 4131 -> 4260[label="",style="dashed", color="magenta", weight=3]; 4132 -> 3441[label="",style="dashed", color="red", weight=0]; 4132[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4132 -> 4261[label="",style="dashed", color="magenta", weight=3]; 4132 -> 4262[label="",style="dashed", color="magenta", weight=3]; 4133 -> 3442[label="",style="dashed", color="red", weight=0]; 4133[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4133 -> 4263[label="",style="dashed", color="magenta", weight=3]; 4133 -> 4264[label="",style="dashed", color="magenta", weight=3]; 4134 -> 3891[label="",style="dashed", color="red", weight=0]; 4134[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4134 -> 4265[label="",style="dashed", color="magenta", weight=3]; 4134 -> 4266[label="",style="dashed", color="magenta", weight=3]; 4135 -> 3893[label="",style="dashed", color="red", weight=0]; 4135[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4135 -> 4267[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4268[label="",style="dashed", color="magenta", weight=3]; 4136 -> 3895[label="",style="dashed", color="red", weight=0]; 4136[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4136 -> 4269[label="",style="dashed", color="magenta", weight=3]; 4136 -> 4270[label="",style="dashed", color="magenta", weight=3]; 4137 -> 3897[label="",style="dashed", color="red", weight=0]; 4137[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4137 -> 4271[label="",style="dashed", color="magenta", weight=3]; 4137 -> 4272[label="",style="dashed", color="magenta", weight=3]; 4138 -> 3899[label="",style="dashed", color="red", weight=0]; 4138[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4138 -> 4273[label="",style="dashed", color="magenta", weight=3]; 4138 -> 4274[label="",style="dashed", color="magenta", weight=3]; 4139 -> 3901[label="",style="dashed", color="red", weight=0]; 4139[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4139 -> 4275[label="",style="dashed", color="magenta", weight=3]; 4139 -> 4276[label="",style="dashed", color="magenta", weight=3]; 4140 -> 3443[label="",style="dashed", color="red", weight=0]; 4140[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4140 -> 4277[label="",style="dashed", color="magenta", weight=3]; 4140 -> 4278[label="",style="dashed", color="magenta", weight=3]; 4141 -> 3444[label="",style="dashed", color="red", weight=0]; 4141[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4141 -> 4279[label="",style="dashed", color="magenta", weight=3]; 4141 -> 4280[label="",style="dashed", color="magenta", weight=3]; 4142[label="primCompAux0 yvy225 LT",fontsize=16,color="black",shape="box"];4142 -> 4281[label="",style="solid", color="black", weight=3]; 4143[label="primCompAux0 yvy225 EQ",fontsize=16,color="black",shape="box"];4143 -> 4282[label="",style="solid", color="black", weight=3]; 4144[label="primCompAux0 yvy225 GT",fontsize=16,color="black",shape="box"];4144 -> 4283[label="",style="solid", color="black", weight=3]; 4164 -> 4291[label="",style="dashed", color="red", weight=0]; 4164[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4164 -> 4292[label="",style="dashed", color="magenta", weight=3]; 4165 -> 4293[label="",style="dashed", color="red", weight=0]; 4165[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4165 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4166 -> 4295[label="",style="dashed", color="red", weight=0]; 4166[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4166 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4167 -> 2502[label="",style="dashed", color="red", weight=0]; 4167[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4167 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4167 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4167 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4168 -> 4300[label="",style="dashed", color="red", weight=0]; 4168[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4168 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4169 -> 4302[label="",style="dashed", color="red", weight=0]; 4169[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4169 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4170[label="yvy49002",fontsize=16,color="green",shape="box"];4171[label="yvy50002",fontsize=16,color="green",shape="box"];4172[label="yvy49002",fontsize=16,color="green",shape="box"];4173[label="yvy50002",fontsize=16,color="green",shape="box"];4174[label="yvy49002",fontsize=16,color="green",shape="box"];4175[label="yvy50002",fontsize=16,color="green",shape="box"];4176[label="yvy49002",fontsize=16,color="green",shape="box"];4177[label="yvy50002",fontsize=16,color="green",shape="box"];4178[label="yvy49002",fontsize=16,color="green",shape="box"];4179[label="yvy50002",fontsize=16,color="green",shape="box"];4180[label="yvy49002",fontsize=16,color="green",shape="box"];4181[label="yvy50002",fontsize=16,color="green",shape="box"];4182[label="yvy49002",fontsize=16,color="green",shape="box"];4183[label="yvy50002",fontsize=16,color="green",shape="box"];4184[label="yvy49002",fontsize=16,color="green",shape="box"];4185[label="yvy50002",fontsize=16,color="green",shape="box"];4186[label="yvy49002",fontsize=16,color="green",shape="box"];4187[label="yvy50002",fontsize=16,color="green",shape="box"];4188[label="yvy49002",fontsize=16,color="green",shape="box"];4189[label="yvy50002",fontsize=16,color="green",shape="box"];4190[label="yvy49002",fontsize=16,color="green",shape="box"];4191[label="yvy50002",fontsize=16,color="green",shape="box"];4192[label="yvy49002",fontsize=16,color="green",shape="box"];4193[label="yvy50002",fontsize=16,color="green",shape="box"];4194[label="yvy49002",fontsize=16,color="green",shape="box"];4195[label="yvy50002",fontsize=16,color="green",shape="box"];4196[label="yvy49002",fontsize=16,color="green",shape="box"];4197[label="yvy50002",fontsize=16,color="green",shape="box"];4198[label="yvy50001",fontsize=16,color="green",shape="box"];4199[label="yvy49001",fontsize=16,color="green",shape="box"];4200[label="yvy50001",fontsize=16,color="green",shape="box"];4201[label="yvy49001",fontsize=16,color="green",shape="box"];4202[label="yvy50001",fontsize=16,color="green",shape="box"];4203[label="yvy49001",fontsize=16,color="green",shape="box"];4204[label="yvy50001",fontsize=16,color="green",shape="box"];4205[label="yvy49001",fontsize=16,color="green",shape="box"];4206[label="yvy50001",fontsize=16,color="green",shape="box"];4207[label="yvy49001",fontsize=16,color="green",shape="box"];4208[label="yvy50001",fontsize=16,color="green",shape="box"];4209[label="yvy49001",fontsize=16,color="green",shape="box"];4210[label="yvy50001",fontsize=16,color="green",shape="box"];4211[label="yvy49001",fontsize=16,color="green",shape="box"];4212[label="yvy50001",fontsize=16,color="green",shape="box"];4213[label="yvy49001",fontsize=16,color="green",shape="box"];4214[label="yvy50001",fontsize=16,color="green",shape="box"];4215[label="yvy49001",fontsize=16,color="green",shape="box"];4216[label="yvy50001",fontsize=16,color="green",shape="box"];4217[label="yvy49001",fontsize=16,color="green",shape="box"];4218[label="yvy50001",fontsize=16,color="green",shape="box"];4219[label="yvy49001",fontsize=16,color="green",shape="box"];4220[label="yvy50001",fontsize=16,color="green",shape="box"];4221[label="yvy49001",fontsize=16,color="green",shape="box"];4222[label="yvy50001",fontsize=16,color="green",shape="box"];4223[label="yvy49001",fontsize=16,color="green",shape="box"];4224[label="yvy50001",fontsize=16,color="green",shape="box"];4225[label="yvy49001",fontsize=16,color="green",shape="box"];4226 -> 986[label="",style="dashed", color="red", weight=0]; 4226[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4226 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4226 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4227 -> 986[label="",style="dashed", color="red", weight=0]; 4227[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4227 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4227 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4228 -> 986[label="",style="dashed", color="red", weight=0]; 4228[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4228 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4228 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4229 -> 986[label="",style="dashed", color="red", weight=0]; 4229[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4229 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4229 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4230 -> 986[label="",style="dashed", color="red", weight=0]; 4230[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4230 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4230 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4231 -> 986[label="",style="dashed", color="red", weight=0]; 4231[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4231 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4231 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4232 -> 986[label="",style="dashed", color="red", weight=0]; 4232[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4232 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4232 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4233 -> 986[label="",style="dashed", color="red", weight=0]; 4233[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4233 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4233 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4234[label="Integer yvy490000 * Integer yvy500010",fontsize=16,color="black",shape="box"];4234 -> 4320[label="",style="solid", color="black", weight=3]; 2792[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2793[label="yvy6200",fontsize=16,color="green",shape="box"];2811 -> 2205[label="",style="dashed", color="red", weight=0]; 2811[label="primCmpNat yvy4900 yvy5000",fontsize=16,color="magenta"];2811 -> 3867[label="",style="dashed", color="magenta", weight=3]; 2811 -> 3868[label="",style="dashed", color="magenta", weight=3]; 2812[label="GT",fontsize=16,color="green",shape="box"];2813[label="LT",fontsize=16,color="green",shape="box"];2814[label="EQ",fontsize=16,color="green",shape="box"];4496[label="yvy245",fontsize=16,color="green",shape="box"];4497[label="Pos Zero",fontsize=16,color="green",shape="box"];4498[label="yvy2462",fontsize=16,color="green",shape="box"];3499[label="primPlusNat (Succ yvy16100) (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3499 -> 3872[label="",style="solid", color="black", weight=3]; 3500[label="primPlusNat (Succ yvy16100) Zero",fontsize=16,color="black",shape="box"];3500 -> 3873[label="",style="solid", color="black", weight=3]; 3501[label="primPlusNat Zero (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3501 -> 3874[label="",style="solid", color="black", weight=3]; 3502[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3502 -> 3875[label="",style="solid", color="black", weight=3]; 4235[label="yvy20800",fontsize=16,color="green",shape="box"];4236[label="yvy20700",fontsize=16,color="green",shape="box"];2798 -> 4372[label="",style="dashed", color="red", weight=0]; 2798[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2798 -> 4398[label="",style="dashed", color="magenta", weight=3]; 2798 -> 4399[label="",style="dashed", color="magenta", weight=3]; 2798 -> 4400[label="",style="dashed", color="magenta", weight=3]; 2798 -> 4401[label="",style="dashed", color="magenta", weight=3]; 2798 -> 4402[label="",style="dashed", color="magenta", weight=3]; 2799[label="error []",fontsize=16,color="red",shape="box"];2800[label="FiniteMap.mkBalBranch6MkBalBranch12 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674)",fontsize=16,color="black",shape="box"];2800 -> 3129[label="",style="solid", color="black", weight=3]; 3342 -> 2434[label="",style="dashed", color="red", weight=0]; 3342[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3342 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3343 -> 986[label="",style="dashed", color="red", weight=0]; 3343[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3343 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3343 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3494[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];3494 -> 3869[label="",style="solid", color="black", weight=3]; 3495[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3495 -> 3870[label="",style="solid", color="black", weight=3]; 3116[label="Succ yvy6200",fontsize=16,color="green",shape="box"];3117[label="yvy6200",fontsize=16,color="green",shape="box"];4237[label="yvy49000",fontsize=16,color="green",shape="box"];4238[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4239[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4240[label="yvy50000",fontsize=16,color="green",shape="box"];4241[label="yvy49000",fontsize=16,color="green",shape="box"];4242[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4243[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4244[label="yvy50000",fontsize=16,color="green",shape="box"];4245[label="yvy49000",fontsize=16,color="green",shape="box"];4246[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4247[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4248[label="yvy50000",fontsize=16,color="green",shape="box"];4249[label="yvy49000",fontsize=16,color="green",shape="box"];4250[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4251[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4252[label="yvy50000",fontsize=16,color="green",shape="box"];4253[label="yvy49000",fontsize=16,color="green",shape="box"];4254[label="yvy50000",fontsize=16,color="green",shape="box"];4255[label="yvy49000",fontsize=16,color="green",shape="box"];4256[label="yvy50000",fontsize=16,color="green",shape="box"];4257[label="yvy49000",fontsize=16,color="green",shape="box"];4258[label="yvy50000",fontsize=16,color="green",shape="box"];4259[label="yvy49000",fontsize=16,color="green",shape="box"];4260[label="yvy50000",fontsize=16,color="green",shape="box"];4261[label="yvy49000",fontsize=16,color="green",shape="box"];4262[label="yvy50000",fontsize=16,color="green",shape="box"];4263[label="yvy49000",fontsize=16,color="green",shape="box"];4264[label="yvy50000",fontsize=16,color="green",shape="box"];4265[label="yvy50000",fontsize=16,color="green",shape="box"];4266[label="yvy49000",fontsize=16,color="green",shape="box"];4267[label="yvy50000",fontsize=16,color="green",shape="box"];4268[label="yvy49000",fontsize=16,color="green",shape="box"];4269[label="yvy50000",fontsize=16,color="green",shape="box"];4270[label="yvy49000",fontsize=16,color="green",shape="box"];4271[label="yvy50000",fontsize=16,color="green",shape="box"];4272[label="yvy49000",fontsize=16,color="green",shape="box"];4273[label="yvy50000",fontsize=16,color="green",shape="box"];4274[label="yvy49000",fontsize=16,color="green",shape="box"];4275[label="yvy50000",fontsize=16,color="green",shape="box"];4276[label="yvy49000",fontsize=16,color="green",shape="box"];4277[label="yvy49000",fontsize=16,color="green",shape="box"];4278[label="yvy50000",fontsize=16,color="green",shape="box"];4279[label="yvy49000",fontsize=16,color="green",shape="box"];4280[label="yvy50000",fontsize=16,color="green",shape="box"];4281[label="LT",fontsize=16,color="green",shape="box"];4282[label="yvy225",fontsize=16,color="green",shape="box"];4283[label="GT",fontsize=16,color="green",shape="box"];4292 -> 2566[label="",style="dashed", color="red", weight=0]; 4292[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4292 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4292 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4291[label="compare2 yvy49000 yvy50000 yvy227",fontsize=16,color="burlywood",shape="triangle"];5259[label="yvy227/False",fontsize=10,color="white",style="solid",shape="box"];4291 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 4323[label="",style="solid", color="burlywood", weight=3]; 5260[label="yvy227/True",fontsize=10,color="white",style="solid",shape="box"];4291 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 4324[label="",style="solid", color="burlywood", weight=3]; 4294 -> 2560[label="",style="dashed", color="red", weight=0]; 4294[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4294 -> 4325[label="",style="dashed", color="magenta", weight=3]; 4294 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4293[label="compare2 yvy49000 yvy50000 yvy228",fontsize=16,color="burlywood",shape="triangle"];5261[label="yvy228/False",fontsize=10,color="white",style="solid",shape="box"];4293 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 4327[label="",style="solid", color="burlywood", weight=3]; 5262[label="yvy228/True",fontsize=10,color="white",style="solid",shape="box"];4293 -> 5262[label="",style="solid", color="burlywood", weight=9]; 5262 -> 4328[label="",style="solid", color="burlywood", weight=3]; 4296 -> 2562[label="",style="dashed", color="red", weight=0]; 4296[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4296 -> 4329[label="",style="dashed", color="magenta", weight=3]; 4296 -> 4330[label="",style="dashed", color="magenta", weight=3]; 4295[label="compare2 yvy49000 yvy50000 yvy229",fontsize=16,color="burlywood",shape="triangle"];5263[label="yvy229/False",fontsize=10,color="white",style="solid",shape="box"];4295 -> 5263[label="",style="solid", color="burlywood", weight=9]; 5263 -> 4331[label="",style="solid", color="burlywood", weight=3]; 5264[label="yvy229/True",fontsize=10,color="white",style="solid",shape="box"];4295 -> 5264[label="",style="solid", color="burlywood", weight=9]; 5264 -> 4332[label="",style="solid", color="burlywood", weight=3]; 4297[label="yvy50000",fontsize=16,color="green",shape="box"];4298 -> 2563[label="",style="dashed", color="red", weight=0]; 4298[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4298 -> 4333[label="",style="dashed", color="magenta", weight=3]; 4298 -> 4334[label="",style="dashed", color="magenta", weight=3]; 4299[label="yvy49000",fontsize=16,color="green",shape="box"];4301 -> 2569[label="",style="dashed", color="red", weight=0]; 4301[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4301 -> 4335[label="",style="dashed", color="magenta", weight=3]; 4301 -> 4336[label="",style="dashed", color="magenta", weight=3]; 4300[label="compare2 yvy49000 yvy50000 yvy230",fontsize=16,color="burlywood",shape="triangle"];5265[label="yvy230/False",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5265[label="",style="solid", color="burlywood", weight=9]; 5265 -> 4337[label="",style="solid", color="burlywood", weight=3]; 5266[label="yvy230/True",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5266[label="",style="solid", color="burlywood", weight=9]; 5266 -> 4338[label="",style="solid", color="burlywood", weight=3]; 4303 -> 115[label="",style="dashed", color="red", weight=0]; 4303[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4303 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4303 -> 4340[label="",style="dashed", color="magenta", weight=3]; 4302[label="compare2 yvy49000 yvy50000 yvy231",fontsize=16,color="burlywood",shape="triangle"];5267[label="yvy231/False",fontsize=10,color="white",style="solid",shape="box"];4302 -> 5267[label="",style="solid", color="burlywood", weight=9]; 5267 -> 4341[label="",style="solid", color="burlywood", weight=3]; 5268[label="yvy231/True",fontsize=10,color="white",style="solid",shape="box"];4302 -> 5268[label="",style="solid", color="burlywood", weight=9]; 5268 -> 4342[label="",style="solid", color="burlywood", weight=3]; 4304[label="yvy49000",fontsize=16,color="green",shape="box"];4305[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4306[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4307[label="yvy50000",fontsize=16,color="green",shape="box"];4308[label="yvy49000",fontsize=16,color="green",shape="box"];4309[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4310[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4311[label="yvy50000",fontsize=16,color="green",shape="box"];4312[label="yvy49000",fontsize=16,color="green",shape="box"];4313[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4314[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4315[label="yvy50000",fontsize=16,color="green",shape="box"];4316[label="yvy49000",fontsize=16,color="green",shape="box"];4317[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4318[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4319[label="yvy50000",fontsize=16,color="green",shape="box"];4320[label="Integer (primMulInt yvy490000 yvy500010)",fontsize=16,color="green",shape="box"];4320 -> 4359[label="",style="dashed", color="green", weight=3]; 3867[label="yvy5000",fontsize=16,color="green",shape="box"];3868[label="yvy4900",fontsize=16,color="green",shape="box"];3872[label="Succ (Succ (primPlusNat yvy16100 yvy3000000))",fontsize=16,color="green",shape="box"];3872 -> 4156[label="",style="dashed", color="green", weight=3]; 3873[label="Succ yvy16100",fontsize=16,color="green",shape="box"];3874[label="Succ yvy3000000",fontsize=16,color="green",shape="box"];3875[label="Zero",fontsize=16,color="green",shape="box"];4398[label="yvy51",fontsize=16,color="green",shape="box"];4399[label="yvy50",fontsize=16,color="green",shape="box"];4400[label="yvy67",fontsize=16,color="green",shape="box"];4401[label="Succ Zero",fontsize=16,color="green",shape="box"];4402[label="yvy54",fontsize=16,color="green",shape="box"];3129 -> 3503[label="",style="dashed", color="red", weight=0]; 3129[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 (FiniteMap.sizeFM yvy674 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673)",fontsize=16,color="magenta"];3129 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3496[label="yvy543",fontsize=16,color="green",shape="box"];3497[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3498 -> 2434[label="",style="dashed", color="red", weight=0]; 3498[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3498 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3869[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];3869 -> 4157[label="",style="solid", color="black", weight=3]; 3870[label="FiniteMap.mkBalBranch6Single_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];3870 -> 4158[label="",style="solid", color="black", weight=3]; 4321[label="yvy50000",fontsize=16,color="green",shape="box"];4322[label="yvy49000",fontsize=16,color="green",shape="box"];4323[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4323 -> 4360[label="",style="solid", color="black", weight=3]; 4324[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4324 -> 4361[label="",style="solid", color="black", weight=3]; 4325[label="yvy50000",fontsize=16,color="green",shape="box"];4326[label="yvy49000",fontsize=16,color="green",shape="box"];4327[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4327 -> 4362[label="",style="solid", color="black", weight=3]; 4328[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4328 -> 4363[label="",style="solid", color="black", weight=3]; 4329[label="yvy50000",fontsize=16,color="green",shape="box"];4330[label="yvy49000",fontsize=16,color="green",shape="box"];4331[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4331 -> 4364[label="",style="solid", color="black", weight=3]; 4332[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4332 -> 4365[label="",style="solid", color="black", weight=3]; 4333[label="yvy50000",fontsize=16,color="green",shape="box"];4334[label="yvy49000",fontsize=16,color="green",shape="box"];4335[label="yvy50000",fontsize=16,color="green",shape="box"];4336[label="yvy49000",fontsize=16,color="green",shape="box"];4337[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4337 -> 4366[label="",style="solid", color="black", weight=3]; 4338[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4338 -> 4367[label="",style="solid", color="black", weight=3]; 4339[label="yvy50000",fontsize=16,color="green",shape="box"];4340[label="yvy49000",fontsize=16,color="green",shape="box"];4341[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4341 -> 4368[label="",style="solid", color="black", weight=3]; 4342[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4342 -> 4369[label="",style="solid", color="black", weight=3]; 4359 -> 1233[label="",style="dashed", color="red", weight=0]; 4359[label="primMulInt yvy490000 yvy500010",fontsize=16,color="magenta"];4359 -> 4429[label="",style="dashed", color="magenta", weight=3]; 4359 -> 4430[label="",style="dashed", color="magenta", weight=3]; 4156 -> 2794[label="",style="dashed", color="red", weight=0]; 4156[label="primPlusNat yvy16100 yvy3000000",fontsize=16,color="magenta"];4156 -> 4284[label="",style="dashed", color="magenta", weight=3]; 4156 -> 4285[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3335[label="",style="dashed", color="red", weight=0]; 3504[label="FiniteMap.sizeFM yvy674 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3504 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3503[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 yvy210",fontsize=16,color="burlywood",shape="triangle"];5269[label="yvy210/False",fontsize=10,color="white",style="solid",shape="box"];3503 -> 5269[label="",style="solid", color="burlywood", weight=9]; 5269 -> 3878[label="",style="solid", color="burlywood", weight=3]; 5270[label="yvy210/True",fontsize=10,color="white",style="solid",shape="box"];3503 -> 5270[label="",style="solid", color="burlywood", weight=9]; 5270 -> 3879[label="",style="solid", color="burlywood", weight=3]; 3871[label="yvy544",fontsize=16,color="green",shape="box"];4157[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4157 -> 4286[label="",style="solid", color="black", weight=3]; 4158 -> 4372[label="",style="dashed", color="red", weight=0]; 4158[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy67 yvy543) yvy544",fontsize=16,color="magenta"];4158 -> 4403[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4404[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4405[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4360 -> 4431[label="",style="dashed", color="red", weight=0]; 4360[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4360 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4361[label="EQ",fontsize=16,color="green",shape="box"];4362 -> 4434[label="",style="dashed", color="red", weight=0]; 4362[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4362 -> 4435[label="",style="dashed", color="magenta", weight=3]; 4363[label="EQ",fontsize=16,color="green",shape="box"];4364 -> 4437[label="",style="dashed", color="red", weight=0]; 4364[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4364 -> 4438[label="",style="dashed", color="magenta", weight=3]; 4365[label="EQ",fontsize=16,color="green",shape="box"];4366 -> 4444[label="",style="dashed", color="red", weight=0]; 4366[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4366 -> 4445[label="",style="dashed", color="magenta", weight=3]; 4367[label="EQ",fontsize=16,color="green",shape="box"];4368 -> 4449[label="",style="dashed", color="red", weight=0]; 4368[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4368 -> 4450[label="",style="dashed", color="magenta", weight=3]; 4369[label="EQ",fontsize=16,color="green",shape="box"];4429[label="yvy490000",fontsize=16,color="green",shape="box"];4430[label="yvy500010",fontsize=16,color="green",shape="box"];4284[label="yvy16100",fontsize=16,color="green",shape="box"];4285[label="yvy3000000",fontsize=16,color="green",shape="box"];3876 -> 2434[label="",style="dashed", color="red", weight=0]; 3876[label="FiniteMap.sizeFM yvy674",fontsize=16,color="magenta"];3876 -> 4159[label="",style="dashed", color="magenta", weight=3]; 3877 -> 986[label="",style="dashed", color="red", weight=0]; 3877[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3877 -> 4160[label="",style="dashed", color="magenta", weight=3]; 3877 -> 4161[label="",style="dashed", color="magenta", weight=3]; 3878[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 False",fontsize=16,color="black",shape="box"];3878 -> 4162[label="",style="solid", color="black", weight=3]; 3879[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 True",fontsize=16,color="black",shape="box"];3879 -> 4163[label="",style="solid", color="black", weight=3]; 4286[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5271[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4286 -> 5271[label="",style="solid", color="burlywood", weight=9]; 5271 -> 4343[label="",style="solid", color="burlywood", weight=3]; 5272[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4286 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 4344[label="",style="solid", color="burlywood", weight=3]; 4403[label="yvy541",fontsize=16,color="green",shape="box"];4404[label="yvy540",fontsize=16,color="green",shape="box"];4405 -> 4372[label="",style="dashed", color="red", weight=0]; 4405[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy67 yvy543",fontsize=16,color="magenta"];4405 -> 4454[label="",style="dashed", color="magenta", weight=3]; 4405 -> 4455[label="",style="dashed", color="magenta", weight=3]; 4405 -> 4456[label="",style="dashed", color="magenta", weight=3]; 4405 -> 4457[label="",style="dashed", color="magenta", weight=3]; 4405 -> 4458[label="",style="dashed", color="magenta", weight=3]; 4406[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4407[label="yvy544",fontsize=16,color="green",shape="box"];4432 -> 3100[label="",style="dashed", color="red", weight=0]; 4432[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4432 -> 4459[label="",style="dashed", color="magenta", weight=3]; 4432 -> 4460[label="",style="dashed", color="magenta", weight=3]; 4431[label="compare1 yvy49000 yvy50000 yvy247",fontsize=16,color="burlywood",shape="triangle"];5273[label="yvy247/False",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 4461[label="",style="solid", color="burlywood", weight=3]; 5274[label="yvy247/True",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5274[label="",style="solid", color="burlywood", weight=9]; 5274 -> 4462[label="",style="solid", color="burlywood", weight=3]; 4435 -> 3101[label="",style="dashed", color="red", weight=0]; 4435[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4435 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4435 -> 4464[label="",style="dashed", color="magenta", weight=3]; 4434[label="compare1 yvy49000 yvy50000 yvy248",fontsize=16,color="burlywood",shape="triangle"];5275[label="yvy248/False",fontsize=10,color="white",style="solid",shape="box"];4434 -> 5275[label="",style="solid", color="burlywood", weight=9]; 5275 -> 4465[label="",style="solid", color="burlywood", weight=3]; 5276[label="yvy248/True",fontsize=10,color="white",style="solid",shape="box"];4434 -> 5276[label="",style="solid", color="burlywood", weight=9]; 5276 -> 4466[label="",style="solid", color="burlywood", weight=3]; 4438 -> 3102[label="",style="dashed", color="red", weight=0]; 4438[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4438 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4438 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4437[label="compare1 yvy49000 yvy50000 yvy249",fontsize=16,color="burlywood",shape="triangle"];5277[label="yvy249/False",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 4469[label="",style="solid", color="burlywood", weight=3]; 5278[label="yvy249/True",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 4470[label="",style="solid", color="burlywood", weight=3]; 4445 -> 3104[label="",style="dashed", color="red", weight=0]; 4445[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4445 -> 4471[label="",style="dashed", color="magenta", weight=3]; 4445 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4444[label="compare1 yvy49000 yvy50000 yvy252",fontsize=16,color="burlywood",shape="triangle"];5279[label="yvy252/False",fontsize=10,color="white",style="solid",shape="box"];4444 -> 5279[label="",style="solid", color="burlywood", weight=9]; 5279 -> 4473[label="",style="solid", color="burlywood", weight=3]; 5280[label="yvy252/True",fontsize=10,color="white",style="solid",shape="box"];4444 -> 5280[label="",style="solid", color="burlywood", weight=9]; 5280 -> 4474[label="",style="solid", color="burlywood", weight=3]; 4450 -> 3105[label="",style="dashed", color="red", weight=0]; 4450[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4450 -> 4475[label="",style="dashed", color="magenta", weight=3]; 4450 -> 4476[label="",style="dashed", color="magenta", weight=3]; 4449[label="compare1 yvy49000 yvy50000 yvy253",fontsize=16,color="burlywood",shape="triangle"];5281[label="yvy253/False",fontsize=10,color="white",style="solid",shape="box"];4449 -> 5281[label="",style="solid", color="burlywood", weight=9]; 5281 -> 4477[label="",style="solid", color="burlywood", weight=3]; 5282[label="yvy253/True",fontsize=10,color="white",style="solid",shape="box"];4449 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 4478[label="",style="solid", color="burlywood", weight=3]; 4159[label="yvy674",fontsize=16,color="green",shape="box"];4160[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4161 -> 2434[label="",style="dashed", color="red", weight=0]; 4161[label="FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];4161 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4162[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 otherwise",fontsize=16,color="black",shape="box"];4162 -> 4289[label="",style="solid", color="black", weight=3]; 4163[label="FiniteMap.mkBalBranch6Single_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54",fontsize=16,color="black",shape="box"];4163 -> 4290[label="",style="solid", color="black", weight=3]; 4343[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];4343 -> 4370[label="",style="solid", color="black", weight=3]; 4344[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy67 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];4344 -> 4371[label="",style="solid", color="black", weight=3]; 4454[label="yvy51",fontsize=16,color="green",shape="box"];4455[label="yvy50",fontsize=16,color="green",shape="box"];4456[label="yvy67",fontsize=16,color="green",shape="box"];4457[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4458[label="yvy543",fontsize=16,color="green",shape="box"];4459[label="yvy49000",fontsize=16,color="green",shape="box"];4460[label="yvy50000",fontsize=16,color="green",shape="box"];4461[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4461 -> 4499[label="",style="solid", color="black", weight=3]; 4462[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4462 -> 4500[label="",style="solid", color="black", weight=3]; 4463[label="yvy49000",fontsize=16,color="green",shape="box"];4464[label="yvy50000",fontsize=16,color="green",shape="box"];4465[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4465 -> 4501[label="",style="solid", color="black", weight=3]; 4466[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4466 -> 4502[label="",style="solid", color="black", weight=3]; 4467[label="yvy49000",fontsize=16,color="green",shape="box"];4468[label="yvy50000",fontsize=16,color="green",shape="box"];4469[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4469 -> 4503[label="",style="solid", color="black", weight=3]; 4470[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4470 -> 4504[label="",style="solid", color="black", weight=3]; 4471[label="yvy49000",fontsize=16,color="green",shape="box"];4472[label="yvy50000",fontsize=16,color="green",shape="box"];4473[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4473 -> 4505[label="",style="solid", color="black", weight=3]; 4474[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4474 -> 4506[label="",style="solid", color="black", weight=3]; 4475[label="yvy49000",fontsize=16,color="green",shape="box"];4476[label="yvy50000",fontsize=16,color="green",shape="box"];4477[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4477 -> 4507[label="",style="solid", color="black", weight=3]; 4478[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4478 -> 4508[label="",style="solid", color="black", weight=3]; 4288[label="yvy673",fontsize=16,color="green",shape="box"];4289[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 yvy670 yvy671 yvy672 yvy673 yvy674 True",fontsize=16,color="black",shape="box"];4289 -> 4349[label="",style="solid", color="black", weight=3]; 4290 -> 4372[label="",style="dashed", color="red", weight=0]; 4290[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy670 yvy671 yvy673 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy674 yvy54)",fontsize=16,color="magenta"];4290 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4415[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4370[label="error []",fontsize=16,color="red",shape="box"];4371 -> 4372[label="",style="dashed", color="red", weight=0]; 4371[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy67 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];4371 -> 4418[label="",style="dashed", color="magenta", weight=3]; 4371 -> 4419[label="",style="dashed", color="magenta", weight=3]; 4371 -> 4420[label="",style="dashed", color="magenta", weight=3]; 4371 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4371 -> 4422[label="",style="dashed", color="magenta", weight=3]; 4499[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4499 -> 4511[label="",style="solid", color="black", weight=3]; 4500[label="LT",fontsize=16,color="green",shape="box"];4501[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4501 -> 4512[label="",style="solid", color="black", weight=3]; 4502[label="LT",fontsize=16,color="green",shape="box"];4503[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4503 -> 4513[label="",style="solid", color="black", weight=3]; 4504[label="LT",fontsize=16,color="green",shape="box"];4505[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4505 -> 4514[label="",style="solid", color="black", weight=3]; 4506[label="LT",fontsize=16,color="green",shape="box"];4507[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4507 -> 4515[label="",style="solid", color="black", weight=3]; 4508[label="LT",fontsize=16,color="green",shape="box"];4349[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674) yvy54",fontsize=16,color="burlywood",shape="box"];5283[label="yvy674/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4349 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 4479[label="",style="solid", color="burlywood", weight=3]; 5284[label="yvy674/FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744",fontsize=10,color="white",style="solid",shape="box"];4349 -> 5284[label="",style="solid", color="burlywood", weight=9]; 5284 -> 4480[label="",style="solid", color="burlywood", weight=3]; 4413[label="yvy671",fontsize=16,color="green",shape="box"];4414[label="yvy670",fontsize=16,color="green",shape="box"];4415[label="yvy673",fontsize=16,color="green",shape="box"];4416[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4417 -> 4372[label="",style="dashed", color="red", weight=0]; 4417[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy674 yvy54",fontsize=16,color="magenta"];4417 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4418[label="yvy5431",fontsize=16,color="green",shape="box"];4419[label="yvy5430",fontsize=16,color="green",shape="box"];4420 -> 4372[label="",style="dashed", color="red", weight=0]; 4420[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy67 yvy5433",fontsize=16,color="magenta"];4420 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4487[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4421[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4422 -> 4372[label="",style="dashed", color="red", weight=0]; 4422[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4422 -> 4491[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4511[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4511 -> 4521[label="",style="solid", color="black", weight=3]; 4512[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4512 -> 4522[label="",style="solid", color="black", weight=3]; 4513[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4513 -> 4523[label="",style="solid", color="black", weight=3]; 4514[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4514 -> 4524[label="",style="solid", color="black", weight=3]; 4515[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4515 -> 4525[label="",style="solid", color="black", weight=3]; 4479[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 FiniteMap.EmptyFM) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];4479 -> 4509[label="",style="solid", color="black", weight=3]; 4480[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 (FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744)) yvy54 (FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 (FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744)) yvy54",fontsize=16,color="black",shape="box"];4480 -> 4510[label="",style="solid", color="black", weight=3]; 4481[label="yvy51",fontsize=16,color="green",shape="box"];4482[label="yvy50",fontsize=16,color="green",shape="box"];4483[label="yvy674",fontsize=16,color="green",shape="box"];4484[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4485[label="yvy54",fontsize=16,color="green",shape="box"];4486[label="yvy51",fontsize=16,color="green",shape="box"];4487[label="yvy50",fontsize=16,color="green",shape="box"];4488[label="yvy67",fontsize=16,color="green",shape="box"];4489[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4490[label="yvy5433",fontsize=16,color="green",shape="box"];4491[label="yvy541",fontsize=16,color="green",shape="box"];4492[label="yvy540",fontsize=16,color="green",shape="box"];4493[label="yvy5434",fontsize=16,color="green",shape="box"];4494[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4495[label="yvy544",fontsize=16,color="green",shape="box"];4521[label="GT",fontsize=16,color="green",shape="box"];4522[label="GT",fontsize=16,color="green",shape="box"];4523[label="GT",fontsize=16,color="green",shape="box"];4524[label="GT",fontsize=16,color="green",shape="box"];4525[label="GT",fontsize=16,color="green",shape="box"];4509[label="error []",fontsize=16,color="red",shape="box"];4510 -> 4372[label="",style="dashed", color="red", weight=0]; 4510[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy6740 yvy6741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy670 yvy671 yvy673 yvy6743) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy6744 yvy54)",fontsize=16,color="magenta"];4510 -> 4516[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4517[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4518[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4519[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4520[label="",style="dashed", color="magenta", weight=3]; 4516[label="yvy6741",fontsize=16,color="green",shape="box"];4517[label="yvy6740",fontsize=16,color="green",shape="box"];4518 -> 4372[label="",style="dashed", color="red", weight=0]; 4518[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy670 yvy671 yvy673 yvy6743",fontsize=16,color="magenta"];4518 -> 4526[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4527[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4528[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4529[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4530[label="",style="dashed", color="magenta", weight=3]; 4519[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4520 -> 4372[label="",style="dashed", color="red", weight=0]; 4520[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy6744 yvy54",fontsize=16,color="magenta"];4520 -> 4531[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4532[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4526[label="yvy671",fontsize=16,color="green",shape="box"];4527[label="yvy670",fontsize=16,color="green",shape="box"];4528[label="yvy673",fontsize=16,color="green",shape="box"];4529[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4530[label="yvy6743",fontsize=16,color="green",shape="box"];4531[label="yvy51",fontsize=16,color="green",shape="box"];4532[label="yvy50",fontsize=16,color="green",shape="box"];4533[label="yvy6744",fontsize=16,color="green",shape="box"];4534[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4535[label="yvy54",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat(yvy4900, yvy5000) 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(yvy4900), Succ(yvy5000)) -> new_primCmpNat(yvy4900, yvy5000) 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_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], baf)) -> new_esEs8(yvy4002, yvy3002, baf) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, ed, ee, ef) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, ed, ee, ef), ed, ee, ef) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, bbb)) -> new_esEs6(yvy4001, yvy3001, bbb) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_splitLT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, eb, ec) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, eb, ec), eb, ec) new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, bef), beg)) -> new_esEs4(yvy20, yvy15, bef, beg) new_compare(:(yvy49000, yvy49001), [], bdd) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dde), ddf)) -> new_ltEs11(yvy49002, yvy50002, dde, ddf) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), cbd, caa) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cbc), caa) -> new_ltEs17(yvy49000, yvy50000, cbc) new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs29(yvy400, yvy500, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy500, be, bf, bg) new_lt20(yvy49001, yvy50001, app(ty_Ratio, ddc)) -> new_lt18(yvy49001, yvy50001, ddc) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bdd) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bdd), bdd) new_compare26(yvy49000, yvy50000, True, eb, ec) -> EQ new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT5(yvy34, yvy400, h, ba) new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cf) -> new_asAs(new_esEs9(yvy4000, yvy3000, cf), new_esEs8(yvy4001, yvy3001, cf)) new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) new_emptyFM(h, ba) -> EmptyFM new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, bgf) -> True new_ltEs4(Just(yvy49000), Nothing, bgf) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dbg), dbh)) -> new_esEs7(yvy49000, yvy50000, dbg, dbh) new_lt19(yvy49000, yvy50000, app(app(ty_@2, dba), dbb)) -> new_lt4(yvy49000, yvy50000, dba, dbb) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dec), ded)) -> new_ltEs14(yvy49002, yvy50002, dec, ded) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bhe)) -> new_ltEs4(yvy49000, yvy50000, bhe) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_Ratio, ccf)) -> new_ltEs17(yvy49000, yvy50000, ccf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_lt18(yvy49000, yvy50000, dca) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, bcg)) -> new_esEs15(yvy4000, yvy3000, bcg) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, bce), bcf)) -> new_esEs4(yvy4000, yvy3000, bce, bcf) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_lt15(yvy49000, yvy50000, ccg) -> new_esEs12(new_compare15(yvy49000, yvy50000, ccg), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt11(new_sizeFM(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy544, h, ba))), h, ba) new_splitLT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, cea), ceb)) -> new_ltEs11(yvy49001, yvy50001, cea, ceb) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, cfa)) -> new_ltEs17(yvy49001, yvy50001, cfa) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_splitGT5(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, ce) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, app(ty_[], dcb)) -> new_esEs8(yvy49001, yvy50001, dcb) new_splitGT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, beh)) -> new_esEs15(yvy20, yvy15, beh) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_splitGT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bdg, bdh) -> new_splitGT5(yvy19, yvy20, bdg, bdh) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy34 new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(yvy49000, yvy50000, cbh, cca, ccb) new_esEs14(@0, @0) -> True new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy300, be, bf, bg) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_addToFM_C0(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT new_splitLT16(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 new_ltEs15(GT, EQ) -> False new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Nothing, yvy41, h, ba), h, ba) new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_lt13(yvy49001, yvy50001, dce, dcf, dcg) new_primCompAux00(yvy225, GT) -> GT new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, yvy33, new_splitLT5(yvy34, yvy400, h, ba), h, ba) new_primMinusNat0(Succ(yvy20800), Zero) -> Pos(Succ(yvy20800)) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs5(yvy4001, yvy3001, cgd, cge, cgf) new_compare16(yvy49000, yvy50000, eb, ec) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, eb, ec), eb, ec) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_ps(Neg(yvy2080), Neg(yvy2070)) -> Neg(new_primPlusNat0(yvy2080, yvy2070)) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_Ratio, ha)) -> new_esEs15(yvy4000, yvy3000, ha) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, yvy53, new_addToFM_C0(yvy54, Nothing, yvy41, h, ba), h, ba) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_Maybe, h), ba) new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy4000, yvy3000, bca, bcb, bcc) new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> Branch(Just(yvy400), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs5(yvy20, yvy15, beb, bec, bed) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_lt13(yvy49000, yvy50000, dbc, dbd, dbe) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, ddg), ddh), dea)) -> new_ltEs12(yvy49002, yvy50002, ddg, ddh, dea) new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bea) -> new_mkVBalBranch0(Just(yvy30), yvy31, yvy33, new_splitLT5(yvy34, yvy35, bb, bea), bb, bea) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(ty_Maybe, h), ba) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), be, bf, bg) -> new_asAs(new_esEs24(yvy4000, yvy3000, be), new_asAs(new_esEs23(yvy4001, yvy3001, bf), new_esEs22(yvy4002, yvy3002, bg))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(yvy4000, yvy3000, gc, gd, ge) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, app(ty_[], cf)) -> new_esEs8(yvy400, yvy300, cf) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, ce) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare5(yvy49000, yvy50000, app(ty_Ratio, bge)) -> new_compare19(yvy49000, yvy50000, bge) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, True, h, ba) -> new_mkBranch(Zero, yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) new_esEs26(yvy4000, yvy3000, app(ty_[], dag)) -> new_esEs8(yvy4000, yvy3000, dag) new_splitGT14(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, new_splitGT4(yvy33, h, ba), yvy34, h, ba) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, cdg)) -> new_lt18(yvy49000, yvy50000, cdg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs12(yvy49001, yvy50001, cec, ced, cee) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, yvy54, new_gt3(new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba))), h, ba) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(yvy49000, yvy50000, ed, ee, ef) new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_lt19(yvy49000, yvy50000, app(ty_[], dah)) -> new_lt12(yvy49000, yvy50000, dah) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cah), caa) -> new_ltEs4(yvy49000, yvy50000, cah) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(yvy4000, yvy3000, cga, cgb) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, fd), ff), ce) -> new_esEs4(yvy4000, yvy3000, fd, ff) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bea) -> yvy33 new_compare114(yvy49000, yvy50000, True, eb, ec) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, eb), ec)) -> new_lt16(yvy49000, yvy50000, eb, ec) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, new_addToFM_C0(yvy53, Just(yvy400), yvy41, h, ba), yvy54, h, ba) new_primMinusNat0(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat0(yvy20800, yvy20700) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], cab), caa) -> new_ltEs8(yvy49000, yvy50000, cab) new_esEs21(yvy49000, yvy50000, app(ty_[], cdf)) -> new_esEs8(yvy49000, yvy50000, cdf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, hh)) -> new_esEs6(yvy4002, yvy3002, hh) new_esEs32(yvy400, yvy300, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy300, bh) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) new_addToFM0(yvy51, yvy41, ba) -> yvy41 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cgh), cha)) -> new_esEs4(yvy4001, yvy3001, cgh, cha) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, ce) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, fg), ce) -> new_esEs15(yvy4000, yvy3000, fg) new_gt3(yvy158, yvy157) -> new_esEs12(new_compare8(yvy158, yvy157), GT) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy67, yvy5433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs12(yvy4900, yvy5000, cdc, cdd, cde) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy4001, yvy3001, bbf, bbg) new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy54, h, ba) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba) -> error([]) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bdg, bdh) -> new_mkVBalBranch0(Just(yvy15), yvy16, new_splitGT5(yvy18, yvy20, bdg, bdh), yvy19, bdg, bdh) new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, yvy53, new_addToFM_C0(yvy54, Just(yvy400), yvy41, h, ba), h, ba) new_mkBranch(yvy242, yvy243, yvy244, yvy245, yvy246, bde, bdf) -> Branch(yvy243, yvy244, new_mkBranchUnbox(yvy246, yvy243, yvy245, new_ps(new_ps(Pos(Succ(Zero)), new_sizeFM1(yvy245, bde, bdf)), new_sizeFM1(yvy246, bde, bdf)), bde, bdf), yvy245, yvy246) new_splitGT14(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cac), cad), caa) -> new_ltEs11(yvy49000, yvy50000, cac, cad) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_Either, ccd), cce)) -> new_ltEs14(yvy49000, yvy50000, ccd, cce) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, caa) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_splitLT16(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) new_compare114(yvy49000, yvy50000, False, eb, ec) -> GT new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs25(yvy4001, yvy3001, app(ty_[], che)) -> new_esEs8(yvy4001, yvy3001, che) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, cb) -> new_asAs(new_esEs26(yvy4000, yvy3000, ca), new_esEs25(yvy4001, yvy3001, cb)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, fh), ga), ce) -> new_esEs7(yvy4000, yvy3000, fh, ga) new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, dd), de)) -> new_esEs4(yvy4000, yvy3000, dd, de) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, cch) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, bcd)) -> new_esEs6(yvy4000, yvy3000, bcd) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, caa) -> new_ltEs16(yvy49000, yvy50000) new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Just(yvy400), yvy41, h, ba), h, ba) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt13(yvy49000, yvy50000, ed, ee, ef) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs5(yvy4000, yvy3000, cfb, cfc, cfd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, chc), chd)) -> new_esEs7(yvy4001, yvy3001, chc, chd) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], ea)) -> new_esEs8(yvy4000, yvy3000, ea) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy4001, yvy3001, bag, bah, bba) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, new_splitGT4(yvy33, h, ba), yvy34, h, ba) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, ce) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, be), bf), bg)) -> new_esEs5(yvy400, yvy300, be, bf, bg) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, caa) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cba), cbb), caa) -> new_ltEs14(yvy49000, yvy50000, cba, cbb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bac)) -> new_esEs15(yvy4002, yvy3002, bac) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, cda), cdb)) -> new_ltEs11(yvy4900, yvy5000, cda, cdb) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, Branch(yvy670, yvy671, yvy672, yvy673, yvy674), yvy54, True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, yvy674, yvy54, new_lt11(new_sizeFM(yvy674, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy673, h, ba))), h, ba) new_mkBranchUnbox(yvy246, yvy243, yvy245, yvy250, bde, bdf) -> yvy250 new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, ceg), ceh)) -> new_ltEs14(yvy49001, yvy50001, ceg, ceh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_lt8(yvy49000, yvy50000, app(ty_Maybe, ccg)) -> new_lt15(yvy49000, yvy50000, ccg) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT14(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, new_addToFM_C0(yvy53, Just(yvy400), yvy41, h, ba), yvy54, h, ba) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, dc)) -> new_esEs6(yvy4000, yvy3000, dc) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, bbe)) -> new_esEs15(yvy4001, yvy3001, bbe) new_compare25(Just(yvy4900), Just(yvy5000), False, cch) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, cch), cch) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cff), cfg)) -> new_esEs4(yvy4000, yvy3000, cff, cfg) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, cbd), caa)) -> new_ltEs14(yvy4900, yvy5000, cbd, caa) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cfh)) -> new_esEs15(yvy4000, yvy3000, cfh) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cgc)) -> new_esEs8(yvy4000, yvy3000, cgc) new_compare25(yvy490, yvy500, True, cch) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, cg), da), db)) -> new_esEs5(yvy4000, yvy3000, cg, da, db) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, df)) -> new_esEs15(yvy4000, yvy3000, df) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bea) -> new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bea) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, yvy674, yvy54, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy670, yvy671, yvy673, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy674, yvy54, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_compare([], :(yvy50000, yvy50001), bdd) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dcb)) -> new_lt12(yvy49001, yvy50001, dcb) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cfe)) -> new_esEs6(yvy4000, yvy3000, cfe) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs6(Nothing, Just(yvy3000), bh) -> False new_esEs6(Just(yvy4000), Nothing, bh) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], bbh)) -> new_esEs8(yvy4001, yvy3001, bbh) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, bh) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy4000, yvy3000, bch, bda) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cda, cdb) -> new_pePe(new_lt8(yvy49000, yvy50000, cda), new_asAs(new_esEs21(yvy49000, yvy50000, cda), new_ltEs19(yvy49001, yvy50001, cdb))) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, EmptyFM, yvy54, False, h, ba) -> error([]) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy4001, yvy3001, bbc, bbd) new_ltEs14(Left(yvy49000), Right(yvy50000), cbd, caa) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, caa) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], cf) -> False new_esEs8([], :(yvy3000, yvy3001), cf) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(app(ty_Either, dae), daf)) -> new_esEs7(yvy4000, yvy3000, dae, daf) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, baa), bab)) -> new_esEs4(yvy4002, yvy3002, baa, bab) new_esEs31(yvy400, yvy300, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy300, bh) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dad)) -> new_esEs15(yvy4000, yvy3000, dad) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, ce) -> new_esEs10(yvy4000, yvy3000) new_compare5(yvy49000, yvy50000, app(ty_Maybe, bgb)) -> new_compare15(yvy49000, yvy50000, bgb) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4002, yvy3002, he, hf, hg) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(ty_@2, gg), gh)) -> new_esEs4(yvy4000, yvy3000, gg, gh) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, caa) -> new_ltEs13(yvy49000, yvy50000) new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy300, cd, ce) new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_[], hd)) -> new_esEs8(yvy4000, yvy3000, hd) new_ltEs15(LT, GT) -> True new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], bfc)) -> new_esEs8(yvy20, yvy15, bfc) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], bdb)) -> new_esEs8(yvy4000, yvy3000, bdb) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Nothing, yvy51, new_addToFM_C0(yvy53, Nothing, yvy41, h, ba), yvy54, h, ba) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, ccg)) -> new_esEs6(yvy49000, yvy50000, ccg) new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT5(yvy33, yvy400, h, ba) new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy300, cc) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_addToFM_C0(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs4(Nothing, Just(yvy50000), bgf) -> True new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy67, yvy543, app(ty_Maybe, h), ba), yvy544, app(ty_Maybe, h), ba) new_esEs21(yvy49000, yvy50000, app(ty_Ratio, cdg)) -> new_esEs15(yvy49000, yvy50000, cdg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, bgf)) -> new_ltEs4(yvy4900, yvy5000, bgf) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, ce) -> new_esEs13(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) new_ltEs8(yvy4900, yvy5000, bdd) -> new_fsEs(new_compare(yvy4900, yvy5000, bdd)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bdd)) -> new_ltEs8(yvy4900, yvy5000, bdd) new_compare110(yvy49000, yvy50000, False) -> GT new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, dbf)) -> new_lt15(yvy49000, yvy50000, dbf) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, EmptyFM, True, h, ba) -> error([]) new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, eb), ec)) -> new_esEs7(yvy49000, yvy50000, eb, ec) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), cdc, cdd, cde) -> new_pePe(new_lt19(yvy49000, yvy50000, cdc), new_asAs(new_esEs28(yvy49000, yvy50000, cdc), new_pePe(new_lt20(yvy49001, yvy50001, cdd), new_asAs(new_esEs27(yvy49001, yvy50001, cdd), new_ltEs20(yvy49002, yvy50002, cde))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], cdh)) -> new_ltEs8(yvy49001, yvy50001, cdh) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bgh), bha)) -> new_ltEs11(yvy49000, yvy50000, bgh, bha) new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bdg, bdh) -> new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bdg), LT), bdg, bdh) new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_compare9(@0, @0) -> EQ new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) new_esEs22(yvy4002, yvy3002, app(app(ty_Either, bad), bae)) -> new_esEs7(yvy4002, yvy3002, bad, bae) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, ed, ee, ef) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, dg), dh)) -> new_esEs7(yvy4000, yvy3000, dg, dh) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, eh), fa), fb), ce) -> new_esEs5(yvy4000, yvy3000, eh, fa, fb) new_ltEs15(EQ, EQ) -> True new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, fc), ce) -> new_esEs6(yvy4000, yvy3000, fc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_compare30(yvy20, yvy15, bdg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bdg), bdg) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs6(yvy4000, yvy3000, daa) new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> Branch(Just(yvy400), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, cdf) -> new_esEs12(new_compare(yvy49000, yvy50000, cdf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, ce) -> new_esEs17(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy670, yvy671, yvy672, yvy673, Branch(yvy6740, yvy6741, yvy6742, yvy6743, yvy6744), yvy54, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy6740, yvy6741, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy670, yvy671, yvy673, yvy6743, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy6744, yvy54, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_ps(Pos(yvy2080), Pos(yvy2070)) -> Pos(new_primPlusNat0(yvy2080, yvy2070)) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], gb), ce) -> new_esEs8(yvy4000, yvy3000, gb) new_ltEs20(yvy49002, yvy50002, app(ty_[], ddd)) -> new_ltEs8(yvy49002, yvy50002, ddd) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bhf), bhg)) -> new_ltEs14(yvy49000, yvy50000, bhf, bhg) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, EmptyFM, yvy54, True, h, ba) -> error([]) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cgg)) -> new_esEs6(yvy4001, yvy3001, cgg) new_mkBalBranch(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, new_lt11(new_ps(new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_compare([], [], bdd) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bdc)) -> new_ltEs17(yvy4900, yvy5000, bdc) new_esEs32(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dab), dac)) -> new_esEs4(yvy4000, yvy3000, dab, dac) new_compare24(yvy49000, yvy50000, True) -> EQ new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) new_lt8(yvy49000, yvy50000, app(ty_[], cdf)) -> new_lt12(yvy49000, yvy50000, cdf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, cae), caf), cag), caa) -> new_ltEs12(yvy49000, yvy50000, cae, caf, cag) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(app(ty_Either, hb), hc)) -> new_esEs7(yvy4000, yvy3000, hb, hc) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_esEs11(True, True) -> True new_esEs7(Right(yvy4000), Right(yvy3000), cd, app(ty_Maybe, gf)) -> new_esEs6(yvy4000, yvy3000, gf) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_[], cbe)) -> new_ltEs8(yvy49000, yvy50000, cbe) new_esEs31(yvy400, yvy300, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy300, cc) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, chb)) -> new_esEs15(yvy4001, yvy3001, chb) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), cc) -> new_asAs(new_esEs20(yvy4000, yvy3000, cc), new_esEs19(yvy4001, yvy3001, cc)) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, False, ed, ee, ef) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, ed, ee, ef), ed, ee, ef) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_@2, cbf), cbg)) -> new_ltEs11(yvy49000, yvy50000, cbf, cbg) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy67, h, ba) new_ltEs15(GT, GT) -> True new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy33 new_compare111(yvy198, yvy199, False, eg) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, app(ty_Maybe, ccc)) -> new_ltEs4(yvy49000, yvy50000, ccc) new_esEs30(yvy20, yvy15, app(ty_Maybe, bee)) -> new_esEs6(yvy20, yvy15, bee) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_sizeFM1(EmptyFM, bde, bdf) -> Pos(Zero) new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_esEs31(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, caa) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, bgc), bgd)) -> new_compare16(yvy49000, yvy50000, bgc, bgd) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, ed, ee, ef) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, ed, ee, ef) -> new_esEs12(new_compare13(yvy49000, yvy50000, ed, ee, ef), LT) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy67, yvy54, new_gt3(new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba))), h, ba) new_primCompAux0(yvy49000, yvy50000, yvy221, bdd) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bdd)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dda), ddb)) -> new_esEs7(yvy49001, yvy50001, dda, ddb) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_compare13(yvy49000, yvy50000, bfg, bfh, bga) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, ddc)) -> new_esEs15(yvy49001, yvy50001, ddc) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs5(yvy49000, yvy50000, dbc, dbd, dbe) new_esEs29(yvy400, yvy500, app(ty_Ratio, cc)) -> new_esEs15(yvy400, yvy500, cc) new_compare112(yvy49000, yvy50000, False, ed, ee, ef) -> GT new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), cd, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, ccg) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, ccg), ccg) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, app(ty_[], cf)) -> new_esEs8(yvy400, yvy300, cf) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dee)) -> new_ltEs17(yvy49002, yvy50002, dee) new_esEs8([], [], cf) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, caa) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, cch) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dch)) -> new_lt15(yvy49001, yvy50001, dch) new_esEs29(yvy400, yvy500, app(ty_Maybe, bh)) -> new_esEs6(yvy400, yvy500, bh) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, bhh)) -> new_ltEs17(yvy49000, yvy50000, bhh) new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bea) -> new_splitLT5(yvy33, yvy35, bb, bea) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs31(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy300, cd, ce) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dcc), dcd)) -> new_lt4(yvy49001, yvy50001, dcc, dcd) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ps(Pos(yvy2080), Neg(yvy2070)) -> new_primMinusNat0(yvy2080, yvy2070) new_ps(Neg(yvy2080), Pos(yvy2070)) -> new_primMinusNat0(yvy2070, yvy2080) new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_mkBalBranch(Just(yvy500), yvy51, new_addToFM_C0(yvy53, Nothing, yvy41, h, ba), yvy54, h, ba) new_compare111(yvy198, yvy199, True, eg) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dcc), dcd)) -> new_esEs4(yvy49001, yvy50001, dcc, dcd) new_ltEs15(LT, LT) -> True new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT4(yvy33, h, ba) new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dbf)) -> new_esEs6(yvy49000, yvy50000, dbf) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dba), dbb)) -> new_esEs4(yvy49000, yvy50000, dba, dbb) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_splitLT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dda), ddb)) -> new_lt16(yvy49001, yvy50001, dda, ddb) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs5(yvy4000, yvy3000, chf, chg, chh) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, new_splitGT5(yvy33, yvy400, h, ba), yvy34, h, ba) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dch)) -> new_esEs6(yvy49001, yvy50001, dch) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, ce) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), cbd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], bgg)) -> new_ltEs8(yvy49000, yvy50000, bgg) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_primMinusNat0(Zero, Succ(yvy20700)) -> Neg(Succ(yvy20700)) new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, cch) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bfe), bff)) -> new_compare12(yvy49000, yvy50000, bfe, bff) new_esEs29(yvy400, yvy500, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy500, ca, cb) new_esEs28(yvy49000, yvy50000, app(ty_[], dah)) -> new_esEs8(yvy49000, yvy50000, dah) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT4(yvy34, h, ba) new_lt18(yvy49000, yvy50000, cdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, cdg), LT) new_esEs29(yvy400, yvy500, app(ty_[], cf)) -> new_esEs8(yvy400, yvy500, cf) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, cef)) -> new_ltEs4(yvy49001, yvy50001, cef) new_compare5(yvy49000, yvy50000, app(ty_[], bfd)) -> new_compare(yvy49000, yvy50000, bfd) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, caa) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, bfa), bfb)) -> new_esEs7(yvy20, yvy15, bfa, bfb) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs12(yvy49000, yvy50000, bhb, bhc, bhd) new_esEs29(yvy400, yvy500, app(app(ty_Either, cd), ce)) -> new_esEs7(yvy400, yvy500, cd, ce) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_esEs15(yvy49000, yvy50000, dca) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, deb)) -> new_ltEs4(yvy49002, yvy50002, deb) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_sizeFM1(Branch(yvy2460, yvy2461, yvy2462, yvy2463, yvy2464), bde, bdf) -> yvy2462 new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bdg, bdh) -> yvy19 new_esEs7(Left(yvy4000), Right(yvy3000), cd, ce) -> False new_esEs7(Right(yvy4000), Left(yvy3000), cd, ce) -> False new_ltEs17(yvy4900, yvy5000, bdc) -> new_fsEs(new_compare19(yvy4900, yvy5000, bdc)) new_lt16(yvy49000, yvy50000, eb, ec) -> new_esEs12(new_compare16(yvy49000, yvy50000, eb, ec), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, dbg), dbh)) -> new_lt16(yvy49000, yvy50000, dbg, dbh) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs5(yvy49001, yvy50001, dce, dcf, dcg) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_compare111(x0, x1, True, x2) new_esEs28(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs32(x0, x1, ty_Integer) new_splitGT15(x0, x1, x2, x3, x4, True, x5, x6) new_splitLT16(x0, x1, x2, x3, True, x4, x5) new_primMulInt(Neg(x0), Neg(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_ltEs17(x0, x1, x2) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_primCmpNat0(Succ(x0), Zero) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare29(x0, x1, True) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primMinusNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_splitLT24(x0, x1, x2, x3, x4, False, x5, x6) new_esEs32(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_primMinusNat0(Zero, Zero) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_lt8(x0, x1, ty_Float) new_emptyFM(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_lt15(x0, x1, x2) new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) new_compare(:(x0, x1), [], x2) new_asAs(False, x0) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_splitLT13(x0, x1, x2, x3, x4, False, x5, x6) new_esEs27(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, True, x2, x3, x4) new_splitLT15(x0, x1, x2, x3, x4, x5, True, x6, x7) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt16(x0, x1, x2, x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_splitGT14(x0, x1, x2, x3, False, x4, x5) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_sr(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_addToFM_C13(x0, x1, x2, x3, x4, False, x5, x6) new_esEs8([], [], x0) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_splitGT5(EmptyFM, x0, x1, x2) new_lt19(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(Nothing, Just(x0), x1) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs13(False, True) new_ltEs13(True, False) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_splitLT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) new_compare25(Just(x0), Nothing, False, x1) new_esEs19(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_splitGT22(x0, x1, x2, x3, x4, True, x5, x6) new_splitLT14(x0, x1, x2, x3, x4, True, x5, x6) new_esEs9(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, False, x2, x3) new_esEs32(x0, x1, ty_@0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_compare114(x0, x1, False, x2, x3) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Float) new_splitLT13(x0, x1, x2, x3, x4, True, x5, x6) new_esEs32(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_lt4(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_compare14(x0, x1) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare5(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Char) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, False, x2, x3, x4) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Float) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primMulNat0(Succ(x0), Succ(x1)) new_splitLT22(x0, x1, x2, x3, x4, x5, True, x6, x7) new_compare26(x0, x1, True, x2, x3) new_gt2(x0, x1, x2) new_ps(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8([], :(x0, x1), x2) new_lt19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt5(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_splitLT4(EmptyFM, x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, x2, x3, x4) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_compare([], [], x0) new_splitGT13(x0, x1, x2, x3, x4, False, x5, x6) new_compare25(x0, x1, True, x2) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_ps(Neg(x0), Neg(x1)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_ps(Pos(x0), Neg(x1)) new_ps(Neg(x0), Pos(x1)) new_esEs6(Just(x0), Nothing, x1) new_ltEs6(x0, x1) new_compare7(Char(x0), Char(x1)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs5(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(GT, LT) new_lt8(x0, x1, app(ty_Maybe, x2)) new_ltEs15(LT, GT) new_splitLT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_ltEs4(Nothing, Just(x0), x1) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs29(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_primMinusNat0(Zero, Succ(x0)) new_esEs27(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) new_compare5(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_compare30(x0, x1, x2) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs32(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, x2) new_lt8(x0, x1, ty_@0) new_addToFM_C26(x0, x1, x2, x3, x4, x5, True, x6, x7) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), Zero) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_addToFM_C13(x0, x1, x2, x3, x4, True, x5, x6) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_esEs25(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_lt19(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, ty_Double) new_esEs11(False, False) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_splitGT23(x0, x1, x2, x3, x4, True, x5, x6) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_splitLT24(x0, x1, x2, x3, x4, True, x5, x6) new_compare33(x0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_splitGT14(x0, x1, x2, x3, True, x4, x5) new_ltEs20(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_splitLT14(x0, x1, x2, x3, x4, False, x5, x6) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_splitGT22(x0, x1, x2, x3, x4, False, x5, x6) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, ty_Ordering) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_splitGT30(Just(x0), x1, x2, x3, x4, Nothing, x5, x6) new_splitLT23(x0, x1, x2, x3, x4, False, x5, x6) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_compare8(x0, x1) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_compare([], :(x0, x1), x2) new_splitLT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_sizeFM(EmptyFM, x0, x1) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_compare26(x0, x1, False, x2, x3) new_addToFM_C23(x0, x1, x2, x3, x4, True, x5, x6) new_esEs31(x0, x1, ty_Integer) new_splitLT22(x0, x1, x2, x3, x4, x5, False, x6, x7) new_splitGT16(x0, x1, x2, x3, x4, x5, True, x6, x7) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_compare5(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2) new_esEs24(x0, x1, ty_Ordering) new_esEs8(:(x0, x1), [], x2) new_splitGT13(x0, x1, x2, x3, x4, True, x5, x6) new_primCompAux00(x0, EQ) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_addToFM_C15(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(Just(x0), Just(x1), ty_Int) new_splitLT30(Just(x0), x1, x2, x3, x4, Nothing, x5, x6) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_splitGT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) new_compare5(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs29(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_fsEs(x0) new_compare9(@0, @0) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_addToFM_C25(x0, x1, x2, x3, x4, x5, False, x6, x7) new_compare10(x0, x1, False, x2, x3) new_gt3(x0, x1) new_esEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), x1) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Int) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C14(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_@0) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_lt8(x0, x1, ty_Ordering) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_lt19(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_compare112(x0, x1, True, x2, x3, x4) new_addToFM_C26(x0, x1, x2, x3, x4, x5, False, x6, x7) new_lt19(x0, x1, ty_Float) new_ltEs13(False, False) new_compare112(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_splitLT23(x0, x1, x2, x3, x4, True, x5, x6) new_compare27(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare113(x0, x1, False) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_lt8(x0, x1, ty_Char) new_splitGT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) new_ltEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Integer) new_compare25(Nothing, Nothing, False, x0) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_splitGT24(x0, x1, x2, x3, x4, x5, False, x6, x7) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_compare31(x0, x1) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, ty_@0) new_splitLT5(EmptyFM, x0, x1, x2) new_ltEs4(Nothing, Nothing, x0) new_esEs12(LT, LT) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_splitGT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_splitGT16(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_gt1(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, ty_Integer) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, x2, x3) new_esEs32(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_addToFM_C23(x0, x1, x2, x3, x4, False, x5, x6) new_compare29(x0, x1, False) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_mkBranchUnbox(x0, x1, x2, x3, x4, x5) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Nothing, Nothing, x0) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_lt10(x0, x1) new_splitLT16(x0, x1, x2, x3, False, x4, x5) new_addToFM_C15(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare25(Nothing, Just(x0), False, x1) new_ltEs18(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_lt20(x0, x1, ty_Float) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs26(x0, x1, ty_Integer) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_compare114(x0, x1, True, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs8(x0, x1, x2) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs23(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_splitGT4(EmptyFM, x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs15(GT, GT) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs27(x0, x1, ty_Ordering) new_gt0(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt2(x0, x1) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_addToFM(x0, x1, x2, x3, x4) new_splitGT15(x0, x1, x2, x3, x4, False, x5, x6) new_lt12(x0, x1, x2) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, app(ty_[], x2)) new_primMinusNat0(Succ(x0), Zero) new_ltEs16(x0, x1) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_primEqNat0(Zero, Zero) new_ltEs4(Just(x0), Nothing, x1) new_esEs23(x0, x1, ty_Ordering) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_not(False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt3(x0, x1) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_splitGT23(x0, x1, x2, x3, x4, False, x5, x6) new_esEs30(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Float) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare11(Integer(x0), Integer(x1)) new_compare13(x0, x1, x2, x3, x4) new_primCompAux00(x0, LT) new_splitGT24(x0, x1, x2, x3, x4, x5, True, x6, x7) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_sizeFM1(EmptyFM, x0, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Just(x0), Just(x1), False, x2) new_esEs28(x0, x1, ty_Int) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_lt20(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_esEs29(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_splitLT15(x0, x1, x2, x3, x4, x5, False, x6, x7) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare12(x0, x1, x2, x3) new_compare111(x0, x1, False, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_addToFM_C14(x0, x1, x2, x3, x4, x5, False, x6, x7) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_addToFM_C25(x0, x1, x2, x3, x4, x5, True, x6, x7) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Int) new_addToFM0(x0, x1, x2) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Ordering) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_esEs28(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bba) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) new_compare25(yvy490, yvy500, True, bba) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) new_esEs6(Nothing, Just(yvy3000), cda) -> False new_esEs6(Just(yvy4000), Nothing, cda) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cda) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bce) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bba) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bce) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bba) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(Nothing, Nothing, x0) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_compare25(x0, x1, True, x2) new_esEs21(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_ltEs17(x0, x1, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_asAs(True, x0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_pePe(True, x0) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_compare30(x0, x1, x2) new_esEs25(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare25(Nothing, Nothing, False, x0) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_compare5(x0, x1, ty_Double) new_compare28(x0, x1, False, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Bool) new_compare25(Just(x0), Nothing, False, x1) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs32(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_compare111(x0, x1, False, x2) new_compare(:(x0, x1), [], x2) new_esEs8([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt18(x0, x1, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs4(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, True, x2, x3, x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Nothing, Just(x0), x1) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_compare26(x0, x1, False, x2, x3) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_lt15(x0, x1, x2) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt13(x0, x1, x2, x3, x4) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_compare111(x0, x1, True, x2) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_compare112(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs21(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_compare29(x0, x1, False) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_ltEs16(x0, x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_not(False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs6(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_compare25(Nothing, Just(x0), False, x1) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(x0, x1, ty_Ordering) new_compare25(Just(x0), Just(x1), False, x2) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (25) Complex Obligation (AND) ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bba) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) new_compare25(yvy490, yvy500, True, bba) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) new_esEs6(Nothing, Just(yvy3000), cda) -> False new_esEs6(Just(yvy4000), Nothing, cda) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cda) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bce) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bba) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bce) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bba) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(Nothing, Nothing, x0) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_compare25(x0, x1, True, x2) new_esEs21(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_ltEs17(x0, x1, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_asAs(True, x0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_pePe(True, x0) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_compare30(x0, x1, x2) new_esEs25(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare25(Nothing, Nothing, False, x0) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_compare5(x0, x1, ty_Double) new_compare28(x0, x1, False, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Bool) new_compare25(Just(x0), Nothing, False, x1) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs32(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_compare111(x0, x1, False, x2) new_compare(:(x0, x1), [], x2) new_esEs8([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt18(x0, x1, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs4(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, True, x2, x3, x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Nothing, Just(x0), x1) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_compare26(x0, x1, False, x2, x3) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_lt15(x0, x1, x2) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt13(x0, x1, x2, x3, x4) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_compare111(x0, x1, True, x2) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_compare112(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs21(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_compare29(x0, x1, False) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_ltEs16(x0, x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_not(False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs6(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_compare25(Nothing, Just(x0), False, x1) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(x0, x1, ty_Ordering) new_compare25(Just(x0), Just(x1), False, x2) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) 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_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 *new_splitGT20(yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 7 >= 7, 8 >= 8 *new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9 *new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs12(new_compare30(yvy20, yvy15, bb), LT), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), GT), h, ba) The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 6 > 5, 7 >= 7, 8 >= 8 *new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare32(yvy400, h), LT), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) The graph contains the following edges 3 >= 1, 5 >= 2, 7 >= 3, 8 >= 4 *new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy18, yvy20, bb, bc) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cad)) -> new_esEs8(yvy4002, yvy3002, cad) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs6(yvy4001, yvy3001, cah) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbh, bca) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbh, bca), bbh, bca) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bbh, bca) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cce)) -> new_esEs15(yvy4000, yvy3000, cce) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccc), ccd)) -> new_esEs4(yvy4000, yvy3000, ccc, ccd) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bah) -> new_esEs12(new_compare15(yvy49000, yvy50000, bah), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bda), bdb)) -> new_ltEs11(yvy49001, yvy50001, bda, bdb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bea)) -> new_ltEs17(yvy49001, yvy50001, bea) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bbh, bca) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbh, bca), bbh, bca) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Ratio, bgd)) -> new_esEs15(yvy4000, yvy3000, bgd) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh, cca) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgh, bha, bhb) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgh), new_asAs(new_esEs23(yvy4001, yvy3001, bha), new_esEs22(yvy4002, yvy3002, bhb))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(yvy4000, yvy3000, bff, bfg, bfh) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs14(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_lt18(yvy49000, yvy50000, bcg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs5(yvy49000, yvy50000, bcb, bcc, bcd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cea), ceb)) -> new_esEs7(yvy4000, yvy3000, cea, ceb) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, beg, beh) new_compare114(yvy49000, yvy50000, True, bbh, bca) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_lt16(yvy49000, yvy50000, bbh, bca) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bcf)) -> new_esEs8(yvy49000, yvy50000, bcf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhf)) -> new_esEs6(yvy4002, yvy3002, bhf) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_esEs32(yvy400, yvy300, app(ty_Maybe, cda)) -> new_esEs6(yvy400, yvy300, cda) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfa), bee) -> new_esEs15(yvy4000, yvy3000, bfa) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(yvy4900, yvy5000, bbd, bbe, bbf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4001, yvy3001, cbd, cbe) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbh, bca) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ced, cee) -> new_asAs(new_esEs26(yvy4000, yvy3000, ced), new_esEs25(yvy4001, yvy3001, cee)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfb), bfc), bee) -> new_esEs7(yvy4000, yvy3000, bfb, bfc) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bba) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, ccb)) -> new_esEs6(yvy4000, yvy3000, ccb) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(yvy4000, yvy3000, cdb, cdc, cdd) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4001, yvy3001, cae, caf, cag) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy400, yvy300, bgh, bha, bhb) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bbb), bbc)) -> new_ltEs11(yvy4900, yvy5000, bbb, bbc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, caa)) -> new_esEs15(yvy4002, yvy3002, caa) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs14(yvy49001, yvy50001, bdg, bdh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_lt15(yvy49000, yvy50000, bah) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) new_compare25(Just(yvy4900), Just(yvy5000), False, bba) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bba), bba) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cdf, cdg) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdh)) -> new_esEs15(yvy4000, yvy3000, cdh) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs8(yvy4000, yvy3000, cec) new_compare25(yvy490, yvy500, True, bba) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cde)) -> new_esEs6(yvy4000, yvy3000, cde) new_esEs6(Nothing, Just(yvy3000), cda) -> False new_esEs6(Just(yvy4000), Nothing, cda) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbf)) -> new_esEs8(yvy4001, yvy3001, cbf) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cda) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, ccf), ccg)) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bbb, bbc) -> new_pePe(new_lt8(yvy49000, yvy50000, bbb), new_asAs(new_esEs21(yvy49000, yvy50000, bbb), new_ltEs19(yvy49001, yvy50001, bbc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4002, yvy3002, bhg, bhh) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(yvy4002, yvy3002, bhc, bhd, bhe) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_@2, bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bgb, bgc) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_[], bgg)) -> new_esEs8(yvy4000, yvy3000, bgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, bfe), bee)) -> new_esEs7(yvy400, yvy300, bfe, bee) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs8(yvy4000, yvy3000, cch) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bah)) -> new_esEs6(yvy49000, yvy50000, bah) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bag)) -> new_esEs15(yvy400, yvy300, bag) new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcg)) -> new_esEs15(yvy49000, yvy50000, bcg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbh), bca)) -> new_esEs7(yvy49000, yvy50000, bbh, bca) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbd, bbe, bbf) -> new_pePe(new_lt19(yvy49000, yvy50000, bbd), new_asAs(new_esEs28(yvy49000, yvy50000, bbd), new_pePe(new_lt20(yvy49001, yvy50001, bbe), new_asAs(new_esEs27(yvy49001, yvy50001, bbe), new_ltEs20(yvy49002, yvy50002, bbf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bch)) -> new_ltEs8(yvy49001, yvy50001, bch) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cab), cac)) -> new_esEs7(yvy4002, yvy3002, cab, cac) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bcb, bcc, bcd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, beb), bec), bed), bee) -> new_esEs5(yvy4000, yvy3000, beb, bec, bed) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bef), bee) -> new_esEs6(yvy4000, yvy3000, bef) new_compare30(yvy20, yvy15, bb) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare(yvy49000, yvy50000, bcf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs17(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfd), bee) -> new_esEs8(yvy4000, yvy3000, bfd) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbg)) -> new_ltEs17(yvy4900, yvy5000, bbg) new_esEs32(yvy400, yvy300, app(app(ty_@2, ced), cee)) -> new_esEs4(yvy400, yvy300, ced, cee) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bcf)) -> new_lt12(yvy49000, yvy50000, bcf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(app(ty_Either, bge), bgf)) -> new_esEs7(yvy4000, yvy3000, bge, bgf) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bfe, app(ty_Maybe, bga)) -> new_esEs6(yvy4000, yvy3000, bga) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs20(yvy4000, yvy3000, bag), new_esEs19(yvy4001, yvy3001, bag)) new_compare28(yvy49000, yvy50000, False, bcb, bcc, bcd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bcb, bcc, bcd), bcb, bcc, bcd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bce) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bcb, bcc, bcd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bcb, bcc, bcd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bcb, bcc, bcd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bcb, bcc, bcd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfe, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bah) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bah), bah) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bba) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bce) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bba) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfe, bee) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfe, bee) -> False new_ltEs17(yvy4900, yvy5000, bbg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbg)) new_lt16(yvy49000, yvy50000, bbh, bca) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbh, bca), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(Nothing, Nothing, x0) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_compare25(x0, x1, True, x2) new_esEs21(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_ltEs17(x0, x1, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_asAs(True, x0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_pePe(True, x0) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_compare30(x0, x1, x2) new_esEs25(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare25(Nothing, Nothing, False, x0) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_compare5(x0, x1, ty_Double) new_compare28(x0, x1, False, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Bool) new_compare25(Just(x0), Nothing, False, x1) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs32(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_compare111(x0, x1, False, x2) new_compare(:(x0, x1), [], x2) new_esEs8([], :(x0, x1), x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt18(x0, x1, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs4(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, True, x2, x3, x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Nothing, Just(x0), x1) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_compare26(x0, x1, False, x2, x3) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_lt15(x0, x1, x2) new_compare26(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt13(x0, x1, x2, x3, x4) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_compare111(x0, x1, True, x2) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_compare112(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs21(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_lt16(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_compare29(x0, x1, False) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_ltEs16(x0, x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_not(False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs6(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_compare25(Nothing, Just(x0), False, x1) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(x0, x1, ty_Ordering) new_compare25(Just(x0), Just(x1), False, x2) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) 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_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 7, 3 >= 8 *new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare33(h), LT), h, ba) The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 7 >= 6, 8 >= 7 *new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), GT), h, ba) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) The graph contains the following edges 3 >= 1, 6 >= 2, 7 >= 3 *new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) The graph contains the following edges 4 >= 1, 7 >= 2, 8 >= 3 *new_splitGT2(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), True, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 7 >= 7, 8 >= 8 *new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare31(yvy300, h), LT), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_@2, ge), gf), fa) -> new_lt0(yvy49001, yvy50001, ge, gf) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, dc), dd), ce) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_Maybe, hb)), fa)) -> new_lt2(yvy49001, yvy50001, hb) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_Either, hc), hd)), fa)) -> new_lt3(yvy49001, yvy50001, hc, hd) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_Either, bad), bae))) -> new_ltEs3(yvy49002, yvy50002, bad, bae) new_lt2(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs0(yvy49000, yvy50000, bag, bah) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_@2, dg), dh)) -> new_ltEs0(yvy49001, yvy50001, dg, dh) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, fb), fc)), eh), fa)) -> new_lt0(yvy49000, yvy50000, fb, fc) new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(yvy49000, yvy50000, bea, beb) new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_[], gd), fa) -> new_lt(yvy49001, yvy50001, gd) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_Maybe, ed))) -> new_ltEs2(yvy49001, yvy50001, ed) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, fh)), eh), fa)) -> new_lt2(yvy49000, yvy50000, fh) new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdh))) -> new_ltEs2(yvy49000, yvy50000, bdh) new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_[], he))) -> new_ltEs(yvy49002, yvy50002, he) new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) new_compare2(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) new_lt1(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, db)), ce)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_Maybe, hb), fa) -> new_lt2(yvy49001, yvy50001, hb) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_Either, ee), ef))) -> new_ltEs3(yvy49001, yvy50001, ee, ef) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), ce)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) new_compare23(yvy49000, yvy50000, False, dc, dd) -> new_ltEs3(yvy49000, yvy50000, dc, dd) new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_Either, hc), hd), fa) -> new_lt3(yvy49001, yvy50001, hc, hd) new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs2(yvy49000, yvy50000, bcf) new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs(yvy49000, yvy50000, bdb) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, ga), gb)), eh), fa)) -> new_lt3(yvy49000, yvy50000, ga, gb) new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc))) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, fh), eh, fa) -> new_lt2(yvy49000, yvy50000, fh) new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bbh)) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_@2, ge), gf)), fa)) -> new_lt0(yvy49001, yvy50001, ge, gf) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), ce)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_@2, dg), dh))) -> new_ltEs0(yvy49001, yvy50001, dg, dh) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_[], gd)), fa)) -> new_lt(yvy49001, yvy50001, gd) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_[], df))) -> new_ltEs(yvy49001, yvy50001, df) new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_Maybe, bac)) -> new_ltEs2(yvy49002, yvy50002, bac) new_compare4(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs2(yvy49000, yvy50000, bdh) new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, db), ce) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs2(yvy49000, yvy50000, bbd) new_compare20(yvy49000, yvy50000, False, cb, cc) -> new_ltEs0(yvy49000, yvy50000, cb, cc) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, ga), gb), eh, fa) -> new_lt3(yvy49000, yvy50000, ga, gb) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_@2, hf), hg)) -> new_ltEs0(yvy49002, yvy50002, hf, hg) new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs(yvy49000, yvy50000, bbg) new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(yvy49000, yvy50000, bag, bah) new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, bcf)), bbh)) -> new_ltEs2(yvy49000, yvy50000, bcf) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), eh), fa)) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_Maybe, ed)) -> new_ltEs2(yvy49001, yvy50001, ed) new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_Maybe, bg)) -> new_compare3(yvy49000, yvy50000, bg) new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(yvy49000, yvy50000, bbg) new_lt0(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_compare0(yvy49001, yvy50001, h) new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_Either, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) new_compare21(yvy49000, yvy50000, False, cf, cg, da) -> new_ltEs1(yvy49000, yvy50000, cf, cg, da) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_[], he)) -> new_ltEs(yvy49002, yvy50002, he) new_compare3(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(yvy49000, yvy50000, bea, beb) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_@2, hf), hg))) -> new_ltEs0(yvy49002, yvy50002, hf, hg) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], eg)), eh), fa)) -> new_lt(yvy49000, yvy50000, eg) new_primCompAux(yvy49000, yvy50000, yvy221, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy49000, yvy50000, bd, be, bf) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_Either, bad), bae)) -> new_ltEs3(yvy49002, yvy50002, bad, bae) new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_[], df)) -> new_ltEs(yvy49001, yvy50001, df) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, fb), fc), eh, fa) -> new_lt0(yvy49000, yvy50000, fb, fc) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_Either, ee), ef)) -> new_ltEs3(yvy49001, yvy50001, ee, ef) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, gg), gh), ha)), fa)) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) new_lt(yvy49000, yvy50000, cd) -> new_compare0(yvy49000, yvy50000, cd) new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], cd)), ce)) -> new_compare0(yvy49000, yvy50000, cd) new_compare1(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(yvy49000, yvy50000, bbd) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], cd), ce) -> new_compare0(yvy49000, yvy50000, cd) new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), ce)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bbh)) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_Maybe, bac))) -> new_ltEs2(yvy49002, yvy50002, bac) new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(yvy49000, yvy50000, bdb) new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], eg), eh, fa) -> new_lt(yvy49000, yvy50000, eg) new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) new_lt3(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_@2, bb), bc)) -> new_compare1(yvy49000, yvy50000, bb, bc) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, cb), cc), ce) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, cf), cg), da), ce) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cdc)) -> new_esEs8(yvy4002, yvy3002, cdc) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, cf, cg, da) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cdg)) -> new_esEs6(yvy4001, yvy3001, cdg) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, dc, dd) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, dc, dd), dc, dd) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_compare(:(yvy49000, yvy49001), [], h) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49002, yvy50002, hf, hg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), bda, bbh) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bef), bbh) -> new_ltEs17(yvy49000, yvy50000, bef) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dcb)) -> new_lt18(yvy49001, yvy50001, dcb) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_compare26(yvy49000, yvy50000, True, dc, dd) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), beh) -> new_asAs(new_esEs9(yvy4000, yvy3000, beh), new_esEs8(yvy4001, yvy3001, beh)) new_compare27(yvy49000, yvy50000, False, cb, cc) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, cb, cc), cb, cc) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, bed) -> True new_ltEs4(Just(yvy49000), Nothing, bed) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, cb), cc)) -> new_lt4(yvy49000, yvy50000, cb, cc) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, ga), gb)) -> new_esEs7(yvy49000, yvy50000, ga, gb) new_lt19(yvy49000, yvy50000, app(app(ty_@2, fb), fc)) -> new_lt4(yvy49000, yvy50000, fb, fc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49002, yvy50002, bad, bae) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs4(yvy49000, yvy50000, bbd) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_Ratio, beg)) -> new_ltEs17(yvy49000, yvy50000, beg) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_lt18(yvy49000, yvy50000, dca) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cfd)) -> new_esEs15(yvy4000, yvy3000, cfd) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4000, yvy3000, cfb, cfc) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, db) -> new_esEs12(new_compare15(yvy49000, yvy50000, db), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, dg), dh)) -> new_ltEs11(yvy49001, yvy50001, dg, dh) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bgh)) -> new_ltEs17(yvy49001, yvy50001, bgh) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bhd) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], gd)) -> new_esEs8(yvy49001, yvy50001, gd) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs12(yvy49000, yvy50000, bde, bdf, bdg) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, cb, cc) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, gg), gh), ha)) -> new_lt13(yvy49001, yvy50001, gg, gh, ha) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy4001, yvy3001, che, chf, chg) new_compare16(yvy49000, yvy50000, dc, dd) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_Ratio, cbc)) -> new_esEs15(yvy4000, yvy3000, cbc) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, cb, cc) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4000, yvy3000, cef, ceg, ceh) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, fd), ff), fg)) -> new_lt13(yvy49000, yvy50000, fd, ff, fg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49002, yvy50002, hh, baa, bab) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cbg, cbh, cca) -> new_asAs(new_esEs24(yvy4000, yvy3000, cbg), new_asAs(new_esEs23(yvy4001, yvy3001, cbh), new_esEs22(yvy4002, yvy3002, cca))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(yvy4000, yvy3000, cae, caf, cag) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bhd) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, bec)) -> new_compare19(yvy49000, yvy50000, bec) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], dbh)) -> new_esEs8(yvy4000, yvy3000, dbh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bgg)) -> new_lt18(yvy49000, yvy50000, bgg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs12(yvy49001, yvy50001, ea, eb, ec) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs5(yvy49000, yvy50000, cf, cg, da) new_lt19(yvy49000, yvy50000, app(ty_[], eg)) -> new_lt12(yvy49000, yvy50000, eg) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs4(yvy49000, yvy50000, bcf) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cgh), cha)) -> new_esEs7(yvy4000, yvy3000, cgh, cha) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bhf), bhg), bhd) -> new_esEs4(yvy4000, yvy3000, bhf, bhg) new_compare114(yvy49000, yvy50000, True, dc, dd) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, dc), dd)) -> new_lt16(yvy49000, yvy50000, dc, dd) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs8(yvy49000, yvy50000, bbg) new_esEs21(yvy49000, yvy50000, app(ty_[], cd)) -> new_esEs8(yvy49000, yvy50000, cd) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, cce)) -> new_esEs6(yvy4002, yvy3002, cce) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, cb), cc)) -> new_esEs4(yvy49000, yvy50000, cb, cc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4001, yvy3001, daa, dab) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bhd) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bhh), bhd) -> new_esEs15(yvy4000, yvy3000, bhh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, gc), eh), fa)) -> new_ltEs12(yvy4900, yvy5000, gc, eh, fa) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4001, yvy3001, cec, ced) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs11(yvy49000, yvy50000, bca, bcb) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs14(yvy49000, yvy50000, bea, beb) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, bbh) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, dc, dd) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], daf)) -> new_esEs8(yvy4001, yvy3001, daf) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), chc, chd) -> new_asAs(new_esEs26(yvy4000, yvy3000, chc), new_esEs25(yvy4001, yvy3001, chd)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, caa), cab), bhd) -> new_esEs7(yvy4000, yvy3000, caa, cab) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, bfe), bff)) -> new_esEs4(yvy4000, yvy3000, bfe, bff) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bgd) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cfa)) -> new_esEs6(yvy4000, yvy3000, cfa) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, bbh) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, cf), cg), da)) -> new_lt13(yvy49000, yvy50000, cf, cg, da) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(yvy4000, yvy3000, cga, cgb, cgc) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, dad), dae)) -> new_esEs7(yvy4001, yvy3001, dad, dae) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], bgb)) -> new_esEs8(yvy4000, yvy3000, bgb) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4001, yvy3001, cdd, cde, cdf) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bhd) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, bbh) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs14(yvy49000, yvy50000, bcg, bch) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, de), ce)) -> new_ltEs11(yvy4900, yvy5000, de, ce) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cch)) -> new_esEs15(yvy4002, yvy3002, cch) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, ee), ef)) -> new_ltEs14(yvy49001, yvy50001, ee, ef) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, db)) -> new_lt15(yvy49000, yvy50000, db) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, bfd)) -> new_esEs6(yvy4000, yvy3000, bfd) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, ceb)) -> new_esEs15(yvy4001, yvy3001, ceb) new_compare25(Just(yvy4900), Just(yvy5000), False, bgd) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bgd), bgd) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cge), cgf)) -> new_esEs4(yvy4000, yvy3000, cge, cgf) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, bda), bbh)) -> new_ltEs14(yvy4900, yvy5000, bda, bbh) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cgg)) -> new_esEs15(yvy4000, yvy3000, cgg) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], chb)) -> new_esEs8(yvy4000, yvy3000, chb) new_compare25(yvy490, yvy500, True, bgd) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs5(yvy4000, yvy3000, bfa, bfb, bfc) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, bfg)) -> new_esEs15(yvy4000, yvy3000, bfg) new_compare([], :(yvy50000, yvy50001), h) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], gd)) -> new_lt12(yvy49001, yvy50001, gd) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cgd)) -> new_esEs6(yvy4000, yvy3000, cgd) new_esEs6(Nothing, Just(yvy3000), cfh) -> False new_esEs6(Just(yvy4000), Nothing, cfh) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cee)) -> new_esEs8(yvy4001, yvy3001, cee) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cfh) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4000, yvy3000, cfe, cff) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, ce) -> new_pePe(new_lt8(yvy49000, yvy50000, de), new_asAs(new_esEs21(yvy49000, yvy50000, de), new_ltEs19(yvy49001, yvy50001, ce))) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Right(yvy50000), bda, bbh) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4001, yvy3001, cdh, cea) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, bbh) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], beh) -> False new_esEs8([], :(yvy3000, yvy3001), beh) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, dbf), dbg)) -> new_esEs7(yvy4000, yvy3000, dbf, dbg) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4002, yvy3002, ccf, ccg) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dbe)) -> new_esEs15(yvy4000, yvy3000, dbe) new_compare5(yvy49000, yvy50000, app(ty_Maybe, bg)) -> new_compare15(yvy49000, yvy50000, bg) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bhd) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4002, yvy3002, ccb, ccc, ccd) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4000, yvy3000, cba, cbb) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, bbh) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_[], cbf)) -> new_esEs8(yvy4000, yvy3000, cbf) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cfg)) -> new_esEs8(yvy4000, yvy3000, cfg) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, db)) -> new_esEs6(yvy49000, yvy50000, db) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, cb, cc) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), bed) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bgg)) -> new_esEs15(yvy49000, yvy50000, bgg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, bed)) -> new_ltEs4(yvy4900, yvy5000, bed) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bhd) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, h) -> new_fsEs(new_compare(yvy4900, yvy5000, h)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], h)) -> new_ltEs8(yvy4900, yvy5000, h) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, fh)) -> new_lt15(yvy49000, yvy50000, fh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, dc), dd)) -> new_esEs7(yvy49000, yvy50000, dc, dd) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, fa) -> new_pePe(new_lt19(yvy49000, yvy50000, gc), new_asAs(new_esEs28(yvy49000, yvy50000, gc), new_pePe(new_lt20(yvy49001, yvy50001, eh), new_asAs(new_esEs27(yvy49001, yvy50001, eh), new_ltEs20(yvy49002, yvy50002, fa))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], df)) -> new_ltEs8(yvy49001, yvy50001, df) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs11(yvy49000, yvy50000, bag, bah) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4002, yvy3002, cda, cdb) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, cf, cg, da) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, bfh), bga)) -> new_esEs7(yvy4000, yvy3000, bfh, bga) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bha), bhb), bhc), bhd) -> new_esEs5(yvy4000, yvy3000, bha, bhb, bhc) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bhe), bhd) -> new_esEs6(yvy4000, yvy3000, bhe) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dbb)) -> new_esEs6(yvy4000, yvy3000, dbb) new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, cd) -> new_esEs12(new_compare(yvy49000, yvy50000, cd), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bhd) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], cac), bhd) -> new_esEs8(yvy4000, yvy3000, cac) new_ltEs20(yvy49002, yvy50002, app(ty_[], he)) -> new_ltEs8(yvy49002, yvy50002, he) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs14(yvy49000, yvy50000, bbe, bbf) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, chh)) -> new_esEs6(yvy4001, yvy3001, chh) new_compare([], [], h) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bge)) -> new_ltEs17(yvy4900, yvy5000, bge) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy4000, yvy3000, dbc, dbd) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], cd)) -> new_lt12(yvy49000, yvy50000, cd) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs12(yvy49000, yvy50000, bcc, bcd, bce) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(app(ty_Either, cbd), cbe)) -> new_esEs7(yvy4000, yvy3000, cbd, cbe) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs8(yvy49000, yvy50000, bdb) new_esEs7(Right(yvy4000), Right(yvy3000), cad, app(ty_Maybe, cah)) -> new_esEs6(yvy4000, yvy3000, cah) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, dac)) -> new_esEs15(yvy4001, yvy3001, dac) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bgc) -> new_asAs(new_esEs20(yvy4000, yvy3000, bgc), new_esEs19(yvy4001, yvy3001, bgc)) new_compare28(yvy49000, yvy50000, False, cf, cg, da) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, cf, cg, da), cf, cg, da) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs11(yvy49000, yvy50000, bdc, bdd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bgf) -> GT new_ltEs14(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs4(yvy49000, yvy50000, bdh) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, bbh) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, bh), ca)) -> new_compare16(yvy49000, yvy50000, bh, ca) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, cf, cg, da) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, cf, cg, da) -> new_esEs12(new_compare13(yvy49000, yvy50000, cf, cg, da), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, h) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, h)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, hc), hd)) -> new_esEs7(yvy49001, yvy50001, hc, hd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, cb, cc) -> new_esEs12(new_compare12(yvy49000, yvy50000, cb, cc), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, bd), be), bf)) -> new_compare13(yvy49000, yvy50000, bd, be, bf) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dcb)) -> new_esEs15(yvy49001, yvy50001, dcb) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs5(yvy49000, yvy50000, fd, ff, fg) new_compare112(yvy49000, yvy50000, False, cf, cg, da) -> GT new_compare27(yvy49000, yvy50000, True, cb, cc) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), cad, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, db) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcc)) -> new_ltEs17(yvy49002, yvy50002, dcc) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, bbh) -> new_ltEs6(yvy49000, yvy50000) new_esEs8([], [], beh) -> True new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bgd) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, hb)) -> new_lt15(yvy49001, yvy50001, hb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, bee)) -> new_ltEs17(yvy49000, yvy50000, bee) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, ge), gf)) -> new_lt4(yvy49001, yvy50001, ge, gf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bgf) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, ge), gf)) -> new_esEs4(yvy49001, yvy50001, ge, gf) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, fh)) -> new_esEs6(yvy49000, yvy50000, fh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy49000, yvy50000, fb, fc) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, hc), hd)) -> new_lt16(yvy49001, yvy50001, hc, hd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy4000, yvy3000, dag, dah, dba) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, hb)) -> new_esEs6(yvy49001, yvy50001, hb) new_ltEs14(Right(yvy49000), Right(yvy50000), bda, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bhd) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs8(yvy49000, yvy50000, baf) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bgd) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bb), bc)) -> new_compare12(yvy49000, yvy50000, bb, bc) new_esEs28(yvy49000, yvy50000, app(ty_[], eg)) -> new_esEs8(yvy49000, yvy50000, eg) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bgg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bgg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, ed)) -> new_ltEs4(yvy49001, yvy50001, ed) new_compare5(yvy49000, yvy50000, app(ty_[], ba)) -> new_compare(yvy49000, yvy50000, ba) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, bbh) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs12(yvy49000, yvy50000, bba, bbb, bbc) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dca)) -> new_esEs15(yvy49000, yvy50000, dca) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, bac)) -> new_ltEs4(yvy49002, yvy50002, bac) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), cad, bhd) -> False new_esEs7(Right(yvy4000), Left(yvy3000), cad, bhd) -> False new_ltEs17(yvy4900, yvy5000, bge) -> new_fsEs(new_compare19(yvy4900, yvy5000, bge)) new_lt16(yvy49000, yvy50000, dc, dd) -> new_esEs12(new_compare16(yvy49000, yvy50000, dc, dd), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, ga), gb)) -> new_lt16(yvy49000, yvy50000, ga, gb) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs5(yvy49001, yvy50001, gg, gh, ha) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_compare25(Nothing, Nothing, False, x0) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, True) new_lt19(x0, x1, app(ty_[], x2)) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare111(x0, x1, True, x2) new_lt15(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_compare112(x0, x1, True, x2, x3, x4) new_compare26(x0, x1, False, x2, x3) new_primCompAux00(x0, GT) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, True, x2, x3) new_lt8(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs8(:(x0, x1), :(x2, x3), x4) new_lt13(x0, x1, x2, x3, x4) new_asAs(False, x0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1, x2) new_esEs6(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs4(Nothing, Nothing, x0) new_esEs8([], [], x0) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Double) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Int) new_ltEs8(x0, x1, x2) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare26(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Char(x0), Char(x1)) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_compare14(x0, x1) new_compare25(Just(x0), Just(x1), False, x2) new_ltEs18(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_pePe(True, x0) new_compare([], [], x0) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_compare5(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_lt18(x0, x1, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs6(x0, x1) new_compare5(x0, x1, app(ty_[], x2)) new_compare7(Char(x0), Char(x1)) new_esEs12(GT, GT) new_esEs6(Nothing, Just(x0), x1) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt16(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_compare5(x0, x1, ty_Double) new_ltEs17(x0, x1, x2) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Just(x0), Nothing, x1) new_esEs28(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_compare(:(x0, x1), [], x2) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs11(False, False) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_compare28(x0, x1, False, x2, x3, x4) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, True) new_compare25(x0, x1, True, x2) new_compare112(x0, x1, False, x2, x3, x4) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs24(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs25(x0, x1, app(ty_[], x2)) new_compare8(x0, x1) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), :(x2, x3), x4) new_primCompAux00(x0, EQ) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs24(x0, x1, ty_Int) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_compare5(x0, x1, ty_Bool) new_compare25(Just(x0), Nothing, False, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_fsEs(x0) new_compare9(@0, @0) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare5(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), x1) new_esEs8([], :(x0, x1), x2) new_esEs23(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_compare15(x0, x1, x2) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, x2, x3, x4) new_lt8(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt8(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt19(x0, x1, ty_@0) new_not(True) new_compare10(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(False, False) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_lt8(x0, x1, ty_Char) new_compare25(Nothing, Just(x0), False, x1) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, ty_@0) new_esEs12(LT, LT) new_primCompAux0(x0, x1, x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs21(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare114(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs20(x0, x1, ty_Integer) new_lt8(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_compare([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Float) new_compare29(x0, x1, False) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_lt10(x0, x1) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs18(x0, x1, ty_@0) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs10(Integer(x0), Integer(x1)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs8(:(x0, x1), [], x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs15(GT, GT) new_compare114(x0, x1, True, x2, x3) new_esEs27(x0, x1, ty_Ordering) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_ltEs16(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare10(x0, x1, False, x2, x3) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Float) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, False, x2) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_compare12(x0, x1, x2, x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) 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_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare23(yvy49000, yvy50000, False, dc, dd) -> new_ltEs3(yvy49000, yvy50000, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt2(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt3(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, db)), ce)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_@2, dg), dh)) -> new_ltEs0(yvy49001, yvy50001, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, db), ce) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare3(yvy49000, yvy50000, db) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db), db) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_Maybe, ed)) -> new_ltEs2(yvy49001, yvy50001, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt1(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_@2, hf), hg)) -> new_ltEs0(yvy49002, yvy50002, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_Maybe, bac)) -> new_ltEs2(yvy49002, yvy50002, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_Maybe, bbd)) -> new_ltEs2(yvy49000, yvy50000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt(yvy49000, yvy50000, cd) -> new_compare0(yvy49000, yvy50000, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare21(yvy49000, yvy50000, False, cf, cg, da) -> new_ltEs1(yvy49000, yvy50000, cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_@2, bag), bah)) -> new_ltEs0(yvy49000, yvy50000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(yvy49000, yvy50000, False, cb, cc) -> new_ltEs0(yvy49000, yvy50000, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(ty_[], df)) -> new_ltEs(yvy49001, yvy50001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(ty_[], he)) -> new_ltEs(yvy49002, yvy50002, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(yvy49000), Just(yvy50000), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy49000, yvy50000, bd, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), ce)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, dc), dd), ce) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare4(yvy49000, yvy50000, dc, dd) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dc, dd), dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), de, app(app(ty_Either, ee), ef)) -> new_ltEs3(yvy49001, yvy50001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, eh, app(app(ty_Either, bad), bae)) -> new_ltEs3(yvy49002, yvy50002, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_Either, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], cd), ce) -> new_compare0(yvy49000, yvy50000, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), ce)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, cb), cc), ce) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, cf), cg), da), ce) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare1(yvy49000, yvy50000, cb, cc) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(yvy49000, yvy50000, cf, cg, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), ce)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_primCompAux(yvy49000, yvy50000, yvy221, app(ty_Maybe, bg)) -> new_compare3(yvy49000, yvy50000, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(yvy49000, yvy50000, yvy221, app(app(ty_@2, bb), bc)) -> new_compare1(yvy49000, yvy50000, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bde), bdf), bdg))) -> new_ltEs1(yvy49000, yvy50000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc))) -> new_ltEs1(yvy49000, yvy50000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, bcc), bcd), bce)), bbh)) -> new_ltEs1(yvy49000, yvy50000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs1(yvy49001, yvy50001, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(app(ty_@3, hh), baa), bab))) -> new_ltEs1(yvy49002, yvy50002, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_@2, dg), dh))) -> new_ltEs0(yvy49001, yvy50001, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(yvy49000, yvy50000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(yvy49000, yvy50000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(yvy49000, yvy50000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_@2, hf), hg))) -> new_ltEs0(yvy49002, yvy50002, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_Maybe, bcf), bbh) -> new_ltEs2(yvy49000, yvy50000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_Maybe, bdh)) -> new_ltEs2(yvy49000, yvy50000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(ty_[], bdb)) -> new_ltEs(yvy49000, yvy50000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(ty_[], bbg), bbh) -> new_ltEs(yvy49000, yvy50000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Left(yvy49000), Left(yvy50000), app(app(ty_Either, bcg), bch), bbh) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(yvy49000), Right(yvy50000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(yvy49000, yvy50000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_Maybe, hb)), fa)) -> new_lt2(yvy49001, yvy50001, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, fh)), eh), fa)) -> new_lt2(yvy49000, yvy50000, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_Maybe, ed))) -> new_ltEs2(yvy49001, yvy50001, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdh))) -> new_ltEs2(yvy49000, yvy50000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, bcf)), bbh)) -> new_ltEs2(yvy49000, yvy50000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(yvy49000, yvy50000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_Maybe, bac))) -> new_ltEs2(yvy49002, yvy50002, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(ty_[], he))) -> new_ltEs(yvy49002, yvy50002, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(ty_[], df))) -> new_ltEs(yvy49001, yvy50001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(yvy49000, yvy50000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(yvy49000, yvy50000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), eh), fa)) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(app(ty_@3, gg), gh), ha)), fa)) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), eh), app(app(ty_Either, bad), bae))) -> new_ltEs3(yvy49002, yvy50002, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(yvy49000, yvy50000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, de), app(app(ty_Either, ee), ef))) -> new_ltEs3(yvy49001, yvy50001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bbh)) -> new_ltEs3(yvy49000, yvy50000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_compare0(yvy49001, yvy50001, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], cd)), ce)) -> new_compare0(yvy49000, yvy50000, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, fb), fc)), eh), fa)) -> new_lt0(yvy49000, yvy50000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_@2, ge), gf)), fa)) -> new_lt0(yvy49001, yvy50001, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(ty_[], gd)), fa)) -> new_lt(yvy49001, yvy50001, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], eg)), eh), fa)) -> new_lt(yvy49000, yvy50000, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, gc), app(app(ty_Either, hc), hd)), fa)) -> new_lt3(yvy49001, yvy50001, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, ga), gb)), eh), fa)) -> new_lt3(yvy49000, yvy50000, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_Maybe, hb), fa) -> new_lt2(yvy49001, yvy50001, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, fh), eh, fa) -> new_lt2(yvy49000, yvy50000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_lt1(yvy49001, yvy50001, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_lt1(yvy49000, yvy50000, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_@2, ge), gf), fa) -> new_lt0(yvy49001, yvy50001, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, fb), fc), eh, fa) -> new_lt0(yvy49000, yvy50000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(ty_[], gd), fa) -> new_lt(yvy49001, yvy50001, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], eg), eh, fa) -> new_lt(yvy49000, yvy50000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), gc, app(app(ty_Either, hc), hd), fa) -> new_lt3(yvy49001, yvy50001, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, ga), gb), eh, fa) -> new_lt3(yvy49000, yvy50000, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(yvy4002, yvy3002, bb, bc, bd) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(yvy4001, yvy3001, cc, cd, ce) new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(yvy4000, yvy3000, df, dg, dh) new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) 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_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(yvy4002, yvy3002, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(yvy4001, yvy3001, cc, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(yvy4000, yvy3000, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], be) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, da) -> True new_ltEs4(Just(yvy49000), Nothing, da) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bah) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) new_compare25(yvy490, yvy500, True, bah) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) new_compare([], :(yvy50000, yvy50001), be) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs6(Nothing, Just(yvy3000), cch) -> False new_esEs6(Just(yvy4000), Nothing, cch) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cch) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ed) -> False new_esEs8([], :(yvy3000, yvy3001), ed) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), da) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) new_compare([], [], be) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bcd) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) new_esEs8([], [], ed) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bah) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bcd) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bah) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Neg(x0), Neg(x1)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare26(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primCompAux00(x0, GT) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_lt8(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_asAs(False, x0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, x2, x3, x4) new_compare(:(x0, x1), [], x2) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs4(Nothing, Nothing, x0) new_ltEs19(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, False, x2, x3) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Float) new_ltEs4(Nothing, Just(x0), x1) new_ltEs18(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_lt4(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_compare14(x0, x1) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Char) new_compare111(x0, x1, False, x2) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(True, x0) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare7(Char(x0), Char(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(GT, GT) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare16(x0, x1, x2, x3) new_compare25(Just(x0), Nothing, False, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs8([], [], x0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_compare5(x0, x1, ty_Double) new_lt13(x0, x1, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Just(x0), Nothing, x1) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs11(False, False) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0) new_esEs9(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), ty_Char) new_compare([], :(x0, x1), x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare113(x0, x1, True) new_compare([], [], x0) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare25(Nothing, Nothing, False, x0) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs6(Nothing, Nothing, x0) new_compare8(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare28(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_esEs6(Nothing, Just(x0), x1) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs29(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Int) new_compare5(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_lt12(x0, x1, x2) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_sr0(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Double) new_fsEs(x0) new_compare9(@0, @0) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), x1) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Float) new_ltEs13(False, False) new_compare114(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt18(x0, x1, x2) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare25(Just(x0), Just(x1), False, x2) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs8([], :(x0, x1), x2) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_compare5(x0, x1, ty_Integer) new_compare26(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs9(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(LT, LT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_esEs26(x0, x1, ty_@0) new_compare30(x0, x1, x2) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs18(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(:(x0, x1), :(x2, x3), x4) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs10(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, x2) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, GT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_gt0(x0, x1) new_compare5(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_not(False) new_lt19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, x2) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, True) new_compare25(x0, x1, True, x2) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare12(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (40) Complex Obligation (AND) ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], be) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, da) -> True new_ltEs4(Just(yvy49000), Nothing, da) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bah) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) new_compare25(yvy490, yvy500, True, bah) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) new_compare([], :(yvy50000, yvy50001), be) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs6(Nothing, Just(yvy3000), cch) -> False new_esEs6(Just(yvy4000), Nothing, cch) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cch) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ed) -> False new_esEs8([], :(yvy3000, yvy3001), ed) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), da) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) new_compare([], [], be) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bcd) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) new_esEs8([], [], ed) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bah) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bcd) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bah) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Neg(x0), Neg(x1)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare26(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primCompAux00(x0, GT) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_lt8(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_asAs(False, x0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, x2, x3, x4) new_compare(:(x0, x1), [], x2) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs4(Nothing, Nothing, x0) new_ltEs19(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, False, x2, x3) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Float) new_ltEs4(Nothing, Just(x0), x1) new_ltEs18(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_lt4(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_compare14(x0, x1) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Char) new_compare111(x0, x1, False, x2) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(True, x0) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare7(Char(x0), Char(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(GT, GT) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare16(x0, x1, x2, x3) new_compare25(Just(x0), Nothing, False, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs8([], [], x0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_compare5(x0, x1, ty_Double) new_lt13(x0, x1, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Just(x0), Nothing, x1) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs11(False, False) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0) new_esEs9(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), ty_Char) new_compare([], :(x0, x1), x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare113(x0, x1, True) new_compare([], [], x0) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare25(Nothing, Nothing, False, x0) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs6(Nothing, Nothing, x0) new_compare8(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare28(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_esEs6(Nothing, Just(x0), x1) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs29(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Int) new_compare5(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_lt12(x0, x1, x2) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_sr0(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Double) new_fsEs(x0) new_compare9(@0, @0) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), x1) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Float) new_ltEs13(False, False) new_compare114(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt18(x0, x1, x2) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare25(Just(x0), Just(x1), False, x2) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs8([], :(x0, x1), x2) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_compare5(x0, x1, ty_Integer) new_compare26(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs9(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(LT, LT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_esEs26(x0, x1, ty_@0) new_compare30(x0, x1, x2) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs18(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(:(x0, x1), :(x2, x3), x4) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs10(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, x2) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, GT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_gt0(x0, x1) new_compare5(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_not(False) new_lt19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, x2) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, True) new_compare25(x0, x1, True, x2) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare12(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_gt0(yvy500, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, new_gt(h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Just(yvy500), False, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs12(new_compare25(Nothing, Nothing, True, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 *new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Nothing, yvy41, h, ba) The graph contains the following edges 3 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 *new_addToFM_C1(yvy51, yvy52, yvy53, yvy54, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Nothing, yvy41, h, ba) The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cac)) -> new_esEs8(yvy4002, yvy3002, cac) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bca, bcb, bcc) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cag)) -> new_esEs6(yvy4001, yvy3001, cag) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bbg, bbh) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, ddd), dde)) -> new_esEs4(yvy20, yvy15, ddd, dde) new_compare(:(yvy49000, yvy49001), [], be) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbf), dbg)) -> new_ltEs11(yvy49002, yvy50002, dbf, dbg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hc, fh) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hb), fh) -> new_ltEs17(yvy49000, yvy50000, hb) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(yvy400, yvy500, bgg, bgh, bha) new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_lt18(yvy49001, yvy50001, dbd) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), be) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, be), be) new_compare26(yvy49000, yvy50000, True, bbg, bbh) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ed) -> new_asAs(new_esEs9(yvy4000, yvy3000, ed), new_esEs8(yvy4001, yvy3001, ed)) new_compare27(yvy49000, yvy50000, False, bc, bd) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bc, bd), bc, bd) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, da) -> True new_ltEs4(Just(yvy49000), Nothing, da) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_lt4(yvy49000, yvy50000, bc, bd) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_esEs7(yvy49000, yvy50000, chh, daa) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_lt4(yvy49000, yvy50000, chb, chc) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dcd), dce)) -> new_ltEs14(yvy49002, yvy50002, dcd, dce) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, dh)) -> new_ltEs4(yvy49000, yvy50000, dh) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Ratio, bae)) -> new_ltEs17(yvy49000, yvy50000, bae) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_lt18(yvy49000, yvy50000, dab) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs15(yvy4000, yvy3000, ccd) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(yvy4000, yvy3000, ccb, ccc) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_lt15(yvy49000, yvy50000, bag) -> new_esEs12(new_compare15(yvy49000, yvy50000, bag), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bch), bda)) -> new_ltEs11(yvy49001, yvy50001, bch, bda) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bdh)) -> new_ltEs17(yvy49001, yvy50001, bdh) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bed) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dac)) -> new_esEs8(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddf)) -> new_esEs15(yvy20, yvy15, ddf) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs12(yvy49000, yvy50000, hg, hh, baa) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bc, bd) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_lt13(yvy49001, yvy50001, daf, dag, dah) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs5(yvy4001, yvy3001, cee, cef, ceg) new_compare16(yvy49000, yvy50000, bbg, bbh) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bbg, bbh), bbg, bbh) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, bgc)) -> new_esEs15(yvy4000, yvy3000, bgc) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bc, bd) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bc, bd), bc, bd) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbf, cbg, cbh) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_lt13(yvy49000, yvy50000, chd, che, chf) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs12(yvy49002, yvy50002, dbh, dca, dcb) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs5(yvy20, yvy15, dch, dda, ddb) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bgg, bgh, bha) -> new_asAs(new_esEs24(yvy4000, yvy3000, bgg), new_asAs(new_esEs23(yvy4001, yvy3001, bgh), new_esEs22(yvy4002, yvy3002, bha))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(yvy4000, yvy3000, bfe, bff, bfg) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bed) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, cg)) -> new_compare19(yvy49000, yvy50000, cg) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cgh)) -> new_esEs8(yvy4000, yvy3000, cgh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_lt18(yvy49000, yvy50000, bcf) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(yvy49001, yvy50001, bdb, bdc, bdd) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs5(yvy49000, yvy50000, bca, bcb, bcc) new_lt19(yvy49000, yvy50000, app(ty_[], cha)) -> new_lt12(yvy49000, yvy50000, cha) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gg), fh) -> new_ltEs4(yvy49000, yvy50000, gg) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bef), beg), bed) -> new_esEs4(yvy4000, yvy3000, bef, beg) new_compare114(yvy49000, yvy50000, True, bbg, bbh) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_lt16(yvy49000, yvy50000, bbg, bbh) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], ga), fh) -> new_ltEs8(yvy49000, yvy50000, ga) new_esEs21(yvy49000, yvy50000, app(ty_[], bce)) -> new_esEs8(yvy49000, yvy50000, bce) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, bhe)) -> new_esEs6(yvy4002, yvy3002, bhe) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy49000, yvy50000, bc, bd) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfa), cfb)) -> new_esEs4(yvy4001, yvy3001, cfa, cfb) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bed) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, beh), bed) -> new_esEs15(yvy4000, yvy3000, beh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(yvy4900, yvy5000, bbc, bbd, bbe) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbc), cbd)) -> new_esEs7(yvy4001, yvy3001, cbc, cbd) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gb), gc), fh) -> new_ltEs11(yvy49000, yvy50000, gb, gc) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs14(yvy49000, yvy50000, bac, bad) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, fh) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bbg, bbh) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cff)) -> new_esEs8(yvy4001, yvy3001, cff) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cec, ced) -> new_asAs(new_esEs26(yvy4000, yvy3000, cec), new_esEs25(yvy4001, yvy3001, ced)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfa), bfb), bed) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fa), fb)) -> new_esEs4(yvy4000, yvy3000, fa, fb) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bah) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cca)) -> new_esEs6(yvy4000, yvy3000, cca) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, fh) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy49000, yvy50000, bca, bcb, bcc) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs5(yvy4000, yvy3000, cda, cdb, cdc) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfd), cfe)) -> new_esEs7(yvy4001, yvy3001, cfd, cfe) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fg)) -> new_esEs8(yvy4000, yvy3000, fg) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(yvy4001, yvy3001, cad, cae, caf) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bed) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, fh) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, gh), ha), fh) -> new_ltEs14(yvy49000, yvy50000, gh, ha) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bba), bbb)) -> new_ltEs11(yvy4900, yvy5000, bba, bbb) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, bhh)) -> new_esEs15(yvy4002, yvy3002, bhh) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(yvy49001, yvy50001, bdf, bdg) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_lt15(yvy49000, yvy50000, bag) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, eh)) -> new_esEs6(yvy4000, yvy3000, eh) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbb)) -> new_esEs15(yvy4001, yvy3001, cbb) new_compare25(Just(yvy4900), Just(yvy5000), False, bah) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bah), bah) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cde, cdf) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hc), fh)) -> new_ltEs14(yvy4900, yvy5000, hc, fh) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs15(yvy4000, yvy3000, cdg) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], ceb)) -> new_esEs8(yvy4000, yvy3000, ceb) new_compare25(yvy490, yvy500, True, bah) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs5(yvy4000, yvy3000, ee, ef, eg) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fc)) -> new_esEs15(yvy4000, yvy3000, fc) new_compare([], :(yvy50000, yvy50001), be) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dac)) -> new_lt12(yvy49001, yvy50001, dac) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs6(yvy4000, yvy3000, cdd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs17(yvy400, yvy500) new_esEs6(Nothing, Just(yvy3000), cch) -> False new_esEs6(Just(yvy4000), Nothing, cch) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cbe)) -> new_esEs8(yvy4001, yvy3001, cbe) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, cch) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(yvy4000, yvy3000, cce, ccf) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bba, bbb) -> new_pePe(new_lt8(yvy49000, yvy50000, bba), new_asAs(new_esEs21(yvy49000, yvy50000, bba), new_ltEs19(yvy49001, yvy50001, bbb))) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hc, fh) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cah), cba)) -> new_esEs4(yvy4001, yvy3001, cah, cba) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, fh) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ed) -> False new_esEs8([], :(yvy3000, yvy3001), ed) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs12(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs7(yvy4000, yvy3000, cgf, cgg) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, bhf), bhg)) -> new_esEs4(yvy4002, yvy3002, bhf, bhg) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs16(yvy400, yvy500) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs15(yvy4000, yvy3000, cge) new_compare5(yvy49000, yvy50000, app(ty_Maybe, cd)) -> new_compare15(yvy49000, yvy50000, cd) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bed) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy4002, yvy3002, bhb, bhc, bhd) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4000, yvy3000, bga, bgb) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, fh) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], bgf)) -> new_esEs8(yvy4000, yvy3000, bgf) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], dea)) -> new_esEs8(yvy20, yvy15, dea) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], ccg)) -> new_esEs8(yvy4000, yvy3000, ccg) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bag)) -> new_esEs6(yvy49000, yvy50000, bag) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bc, bd) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_ltEs4(Nothing, Just(yvy50000), da) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bcf)) -> new_esEs15(yvy49000, yvy50000, bcf) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, da)) -> new_ltEs4(yvy4900, yvy5000, da) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bed) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, be) -> new_fsEs(new_compare(yvy4900, yvy5000, be)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], be)) -> new_ltEs8(yvy4900, yvy5000, be) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_lt15(yvy49000, yvy50000, chg) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bbg), bbh)) -> new_esEs7(yvy49000, yvy50000, bbg, bbh) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bbc, bbd, bbe) -> new_pePe(new_lt19(yvy49000, yvy50000, bbc), new_asAs(new_esEs28(yvy49000, yvy50000, bbc), new_pePe(new_lt20(yvy49001, yvy50001, bbd), new_asAs(new_esEs27(yvy49001, yvy50001, bbd), new_ltEs20(yvy49002, yvy50002, bbe))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bcg)) -> new_ltEs8(yvy49001, yvy50001, bcg) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs11(yvy49000, yvy50000, dc, dd) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, caa), cab)) -> new_esEs7(yvy4002, yvy3002, caa, cab) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bca, bcb, bcc) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, fd), ff)) -> new_esEs7(yvy4000, yvy3000, fd, ff) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bea), beb), bec), bed) -> new_esEs5(yvy4000, yvy3000, bea, beb, bec) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bee), bed) -> new_esEs6(yvy4000, yvy3000, bee) new_compare30(yvy20, yvy15, dcg) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dcg), dcg) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgb)) -> new_esEs6(yvy4000, yvy3000, cgb) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bce) -> new_esEs12(new_compare(yvy49000, yvy50000, bce), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bed) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bfc), bed) -> new_esEs8(yvy4000, yvy3000, bfc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbe)) -> new_ltEs8(yvy49002, yvy50002, dbe) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, ea), eb)) -> new_ltEs14(yvy49000, yvy50000, ea, eb) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, ceh)) -> new_esEs6(yvy4001, yvy3001, ceh) new_compare([], [], be) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bbf)) -> new_ltEs17(yvy4900, yvy5000, bbf) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(yvy4000, yvy3000, cgc, cgd) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bce)) -> new_lt12(yvy49000, yvy50000, bce) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, gd), ge), gf), fh) -> new_ltEs12(yvy49000, yvy50000, gd, ge, gf) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_[], hd)) -> new_ltEs8(yvy49000, yvy50000, hd) new_esEs7(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, bfh)) -> new_esEs6(yvy4000, yvy3000, bfh) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfc)) -> new_esEs15(yvy4001, yvy3001, cfc) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, baf), new_esEs19(yvy4001, yvy3001, baf)) new_compare28(yvy49000, yvy50000, False, bca, bcb, bcc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bca, bcb, bcc), bca, bcb, bcc) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(app(ty_@2, he), hf)) -> new_ltEs11(yvy49000, yvy50000, he, hf) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bcd) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, app(ty_Maybe, bab)) -> new_ltEs4(yvy49000, yvy50000, bab) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddc)) -> new_esEs6(yvy20, yvy15, ddc) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, fh) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, ce), cf)) -> new_compare16(yvy49000, yvy50000, ce, cf) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bca, bcb, bcc) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bca, bcb, bcc) -> new_esEs12(new_compare13(yvy49000, yvy50000, bca, bcb, bcc), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, be) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, be)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_esEs7(yvy49001, yvy50001, dbb, dbc) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bc, bd) -> new_esEs12(new_compare12(yvy49000, yvy50000, bc, bd), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(yvy49000, yvy50000, ca, cb, cc) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbd)) -> new_esEs15(yvy49001, yvy50001, dbd) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(yvy49000, yvy50000, chd, che, chf) new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs15(yvy400, yvy500, baf) new_compare112(yvy49000, yvy50000, False, bca, bcb, bcc) -> GT new_compare27(yvy49000, yvy50000, True, bc, bd) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bag) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bag), bag) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcf)) -> new_ltEs17(yvy49002, yvy50002, dcf) new_esEs8([], [], ed) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, fh) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bah) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_lt15(yvy49001, yvy50001, dba) new_esEs29(yvy400, yvy500, app(ty_Maybe, cch)) -> new_esEs6(yvy400, yvy500, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ec)) -> new_ltEs17(yvy49000, yvy50000, ec) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_lt4(yvy49001, yvy50001, dad, dae) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bcd) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dad), dae)) -> new_esEs4(yvy49001, yvy50001, dad, dae) new_ltEs15(LT, LT) -> True new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chg)) -> new_esEs6(yvy49000, yvy50000, chg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chb), chc)) -> new_esEs4(yvy49000, yvy50000, chb, chc) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbb), dbc)) -> new_lt16(yvy49001, yvy50001, dbb, dbc) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfg, cfh, cga) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dba)) -> new_esEs6(yvy49001, yvy50001, dba) new_ltEs14(Right(yvy49000), Right(yvy50000), hc, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bed) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], db)) -> new_ltEs8(yvy49000, yvy50000, db) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bah) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bg), bh)) -> new_compare12(yvy49000, yvy50000, bg, bh) new_esEs29(yvy400, yvy500, app(app(ty_@2, cec), ced)) -> new_esEs4(yvy400, yvy500, cec, ced) new_esEs28(yvy49000, yvy50000, app(ty_[], cha)) -> new_esEs8(yvy49000, yvy50000, cha) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bcf) -> new_esEs12(new_compare19(yvy49000, yvy50000, bcf), LT) new_esEs29(yvy400, yvy500, app(ty_[], ed)) -> new_esEs8(yvy400, yvy500, ed) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bde)) -> new_ltEs4(yvy49001, yvy50001, bde) new_compare5(yvy49000, yvy50000, app(ty_[], bf)) -> new_compare(yvy49000, yvy50000, bf) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, fh) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddg), ddh)) -> new_esEs7(yvy20, yvy15, ddg, ddh) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs11(yvy400, yvy500) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(yvy49000, yvy50000, de, df, dg) new_esEs29(yvy400, yvy500, app(app(ty_Either, bfd), bed)) -> new_esEs7(yvy400, yvy500, bfd, bed) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dab)) -> new_esEs15(yvy49000, yvy50000, dab) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcc)) -> new_ltEs4(yvy49002, yvy50002, dcc) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bfd, bed) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bfd, bed) -> False new_ltEs17(yvy4900, yvy5000, bbf) -> new_fsEs(new_compare19(yvy4900, yvy5000, bbf)) new_lt16(yvy49000, yvy50000, bbg, bbh) -> new_esEs12(new_compare16(yvy49000, yvy50000, bbg, bbh), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, chh), daa)) -> new_lt16(yvy49000, yvy50000, chh, daa) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(yvy49001, yvy50001, daf, dag, dah) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs12(EQ, EQ) new_esEs28(x0, x1, ty_Char) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Neg(x0), Neg(x1)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare26(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primCompAux00(x0, GT) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_lt8(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_asAs(False, x0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, x2, x3, x4) new_compare(:(x0, x1), [], x2) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs4(Nothing, Nothing, x0) new_ltEs19(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, False, x2, x3) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Float) new_ltEs4(Nothing, Just(x0), x1) new_ltEs18(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_lt4(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_compare14(x0, x1) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Char) new_compare111(x0, x1, False, x2) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_asAs(True, x0) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare7(Char(x0), Char(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(GT, GT) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare16(x0, x1, x2, x3) new_compare25(Just(x0), Nothing, False, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs8([], [], x0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, True, x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_compare5(x0, x1, ty_Double) new_lt13(x0, x1, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Just(x0), Nothing, x1) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt19(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs11(False, False) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0) new_esEs9(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), ty_Char) new_compare([], :(x0, x1), x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare113(x0, x1, True) new_compare([], [], x0) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare25(Nothing, Nothing, False, x0) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs6(Nothing, Nothing, x0) new_compare8(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare28(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_esEs6(Nothing, Just(x0), x1) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs29(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Int) new_compare5(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare5(x0, x1, ty_Bool) new_lt12(x0, x1, x2) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_sr0(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Double) new_fsEs(x0) new_compare9(@0, @0) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), x1) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs23(x0, x1, ty_Int) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Just(x0), Nothing, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Float) new_ltEs13(False, False) new_compare114(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt18(x0, x1, x2) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare25(Just(x0), Just(x1), False, x2) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs8([], :(x0, x1), x2) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_compare5(x0, x1, ty_Integer) new_compare26(x0, x1, True, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs9(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(LT, LT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_esEs26(x0, x1, ty_@0) new_compare30(x0, x1, x2) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs18(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(:(x0, x1), :(x2, x3), x4) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Float) new_esEs10(Integer(x0), Integer(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs10(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, x2) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs15(GT, GT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_gt0(x0, x1) new_compare5(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_not(False) new_lt19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs8(x0, x1, x2) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_compare11(Integer(x0), Integer(x1)) new_primCompAux00(x0, LT) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, True) new_compare25(x0, x1, True, x2) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs15(LT, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare12(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) 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_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) The graph contains the following edges 3 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_addToFM_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs12(new_compare25(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C11(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy53, Just(yvy400), yvy41, h, ba) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba) -> new_addToFM_C(yvy54, Just(yvy400), yvy41, h, ba) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs12(GT, GT) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) The set Q consists of the following terms: new_sr(x0, x1) new_lt11(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs12(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt3(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, x0) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusNat1(Succ(x0), x1) new_esEs12(LT, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_compare8(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba)), h, ba) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = x_1 + x_2 + x_3 + x_4 + x_5 POL(EQ) = 0 POL(False) = 0 POL(GT) = 1 POL(LT) = 0 POL(Neg(x_1)) = 1 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 0 POL(Zero) = 0 POL(new_compare8(x_1, x_2)) = 1 + x_1 + x_2 POL(new_esEs12(x_1, x_2)) = 0 POL(new_lt11(x_1, x_2)) = 0 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_5 + x_6 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_10 + x_14 + x_15 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_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_1 + x_10 + x_11 + x_12 + 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_10 + x_11 + x_12 + 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_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt2(x_1, x_2)) = 1 + x_1 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 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_1 + x_2 + x_3 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + 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 ---------------------------------------- (49) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs12(GT, GT) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) The set Q consists of the following terms: new_sr(x0, x1) new_lt11(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs12(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt3(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, x0) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusNat1(Succ(x0), x1) new_esEs12(LT, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_compare8(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 1 less node. ---------------------------------------- (51) Complex Obligation (AND) ---------------------------------------- (52) 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) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs12(GT, GT) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) The set Q consists of the following terms: new_sr(x0, x1) new_lt11(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs12(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt3(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, x0) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusNat1(Succ(x0), x1) new_esEs12(LT, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_compare8(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (53) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 ---------------------------------------- (54) YES ---------------------------------------- (55) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs12(GT, GT) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) The set Q consists of the following terms: new_sr(x0, x1) new_lt11(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs12(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt3(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, x0) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusNat1(Succ(x0), x1) new_esEs12(LT, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_compare8(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (56) 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, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_4 + x_5 POL(EQ) = 0 POL(False) = 1 POL(GT) = 1 POL(LT) = 1 POL(Neg(x_1)) = 0 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 1 POL(Zero) = 0 POL(new_compare8(x_1, x_2)) = 1 + x_1 + x_2 POL(new_esEs12(x_1, x_2)) = x_2 POL(new_lt11(x_1, x_2)) = 1 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_4 + x_5 + x_6 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_14 + x_15 + x_2 + x_4 + x_5 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_1 + x_13 + x_14 + x_15 + x_2 + x_4 + x_5 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_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_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 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)) = x_2 POL(new_sIZE_RATIO) = 0 POL(new_sizeFM(x_1, x_2, x_3)) = 1 + x_1 + x_2 + x_3 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_2 + x_3 POL(new_sr(x_1, x_2)) = 1 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: new_esEs12(LT, LT) -> True new_esEs12(EQ, LT) -> False new_esEs12(GT, LT) -> False ---------------------------------------- (57) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy146) -> new_primCmpInt(Neg(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy146) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs12(LT, LT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba)) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs12(GT, GT) -> True new_primCmpInt3(yvy6200, yvy145) -> new_primCmpInt(Pos(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(new_primPlusNat1(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy145) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs12(EQ, EQ) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) The set Q consists of the following terms: new_sr(x0, x1) new_lt11(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Succ(x0), Succ(x1)) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs12(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt3(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, x0) new_primCmpNat0(Succ(x0), Zero) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpNat0(Succ(x0), Succ(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primPlusNat1(Succ(x0), x1) new_esEs12(LT, LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Succ(x0), Zero) new_compare8(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat0(Zero, Zero) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (58) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs12(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 *new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt11(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba)), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 11 >= 11, 12 >= 12, 14 >= 14, 15 >= 15 *new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) The graph contains the following edges 11 >= 1, 12 >= 2, 10 >= 3, 14 >= 5, 15 >= 6 ---------------------------------------- (59) YES ---------------------------------------- (60) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bca) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) new_compare25(yvy490, yvy500, True, bca) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) new_esEs6(Nothing, Just(yvy3000), bbb) -> False new_esEs6(Just(yvy4000), Nothing, bbb) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, bbb) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bde) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bca) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bde) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bca) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_compare30(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, ty_Char) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, False, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs17(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare15(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare114(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Double) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_ltEs19(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare25(Nothing, Just(x0), False, x1) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt8(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_lt18(x0, x1, x2) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_compare25(Just(x0), Just(x1), False, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Succ(x1)) new_compare25(x0, x1, True, x2) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt15(x0, x1, x2) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, True, x2, x3, x4) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_compare5(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs6(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare(:(x0, x1), [], x2) new_lt13(x0, x1, x2, x3, x4) new_esEs8([], :(x0, x1), x2) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs6(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt16(x0, x1, x2, x3) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Integer) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_esEs6(Nothing, Nothing, x0) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_compare25(Just(x0), Nothing, False, x1) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(LT, LT) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_compare26(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_compare13(x0, x1, x2, x3, x4) new_esEs22(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare25(Nothing, Nothing, False, x0) new_lt10(x0, x1) new_compare16(x0, x1, x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs10(Integer(x0), Integer(x1)) new_compare32(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_gt0(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_not(False) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare11(Integer(x0), Integer(x1)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_ltEs15(LT, LT) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, True, x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Ordering) new_compare114(x0, x1, True, x2, x3) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (61) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (62) Complex Obligation (AND) ---------------------------------------- (63) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bca) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) new_compare25(yvy490, yvy500, True, bca) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) new_esEs6(Nothing, Just(yvy3000), bbb) -> False new_esEs6(Just(yvy4000), Nothing, bbb) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, bbb) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bde) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bca) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bde) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bca) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_compare30(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, ty_Char) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, False, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs17(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare15(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare114(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Double) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_ltEs19(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare25(Nothing, Just(x0), False, x1) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt8(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_lt18(x0, x1, x2) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_compare25(Just(x0), Just(x1), False, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Succ(x1)) new_compare25(x0, x1, True, x2) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt15(x0, x1, x2) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, True, x2, x3, x4) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_compare5(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs6(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare(:(x0, x1), [], x2) new_lt13(x0, x1, x2, x3, x4) new_esEs8([], :(x0, x1), x2) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs6(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt16(x0, x1, x2, x3) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Integer) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_esEs6(Nothing, Nothing, x0) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_compare25(Just(x0), Nothing, False, x1) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(LT, LT) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_compare26(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_compare13(x0, x1, x2, x3, x4) new_esEs22(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare25(Nothing, Nothing, False, x0) new_lt10(x0, x1) new_compare16(x0, x1, x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs10(Integer(x0), Integer(x1)) new_compare32(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_gt0(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_not(False) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare11(Integer(x0), Integer(x1)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_ltEs15(LT, LT) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, True, x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Ordering) new_compare114(x0, x1, True, x2, x3) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (64) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 *new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, bc) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_splitLT20(yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) The graph contains the following edges 3 > 1, 3 > 2, 3 > 3, 3 > 4, 3 > 5, 7 >= 7, 8 >= 8 *new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9 *new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs12(new_compare25(Just(yvy400), Nothing, False, h), LT), h, ba) The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 6 > 5, 7 >= 7, 8 >= 8 *new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy34, yvy35, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_splitLT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT0(yvy34, yvy400, h, ba) The graph contains the following edges 4 >= 1, 5 >= 2, 7 >= 3, 8 >= 4 ---------------------------------------- (65) YES ---------------------------------------- (66) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) The TRS R consists of the following rules: new_esEs22(yvy4002, yvy3002, app(ty_[], cag)) -> new_esEs8(yvy4002, yvy3002, cag) new_esEs23(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_compare13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_compare28(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, app(ty_Maybe, cbc)) -> new_esEs6(yvy4001, yvy3001, cbc) new_pePe(True, yvy220) -> True new_ltEs20(yvy49002, yvy50002, ty_Ordering) -> new_ltEs15(yvy49002, yvy50002) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs23(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_compare26(yvy49000, yvy50000, False, bch, bda) -> new_compare114(yvy49000, yvy50000, new_ltEs14(yvy49000, yvy50000, bch, bda), bch, bda) new_lt20(yvy49001, yvy50001, ty_Ordering) -> new_lt17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(app(ty_@2, dde), ddf)) -> new_esEs4(yvy20, yvy15, dde, ddf) new_compare(:(yvy49000, yvy49001), [], bf) -> GT new_ltEs20(yvy49002, yvy50002, app(app(ty_@2, dbg), dbh)) -> new_ltEs11(yvy49002, yvy50002, dbg, dbh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(yvy49000), Left(yvy50000), hd, ga) -> False new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Ratio, hc), ga) -> new_ltEs17(yvy49000, yvy50000, hc) new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_lt20(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_lt18(yvy49001, yvy50001, dbe) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bf) -> new_primCompAux0(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bf), bf) new_compare26(yvy49000, yvy50000, True, bch, bda) -> EQ new_esEs8(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ee) -> new_asAs(new_esEs9(yvy4000, yvy3000, ee), new_esEs8(yvy4001, yvy3001, ee)) new_compare27(yvy49000, yvy50000, False, bd, be) -> new_compare10(yvy49000, yvy50000, new_ltEs11(yvy49000, yvy50000, bd, be), bd, be) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_esEs24(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, db) -> True new_ltEs4(Just(yvy49000), Nothing, db) -> False new_lt8(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_lt4(yvy49000, yvy50000, bd, be) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat1(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs15(EQ, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_esEs7(yvy49000, yvy50000, daa, dab) new_lt19(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_lt4(yvy49000, yvy50000, chc, chd) new_esEs9(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49002, yvy50002, app(app(ty_Either, dce), dcf)) -> new_ltEs14(yvy49002, yvy50002, dce, dcf) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, ea)) -> new_ltEs4(yvy49000, yvy50000, ea) new_ltEs19(yvy49001, yvy50001, ty_Ordering) -> new_ltEs15(yvy49001, yvy50001) new_ltEs18(yvy4900, yvy5000, ty_Float) -> new_ltEs5(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000) -> new_esEs12(new_compare6(yvy49000, yvy50000), LT) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Ratio, baf)) -> new_ltEs17(yvy49000, yvy50000, baf) new_ltEs15(GT, LT) -> False new_esEs6(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_lt19(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_lt18(yvy49000, yvy50000, dac) new_esEs24(yvy4000, yvy3000, app(ty_Ratio, cch)) -> new_esEs15(yvy4000, yvy3000, cch) new_esEs24(yvy4000, yvy3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) new_ltEs13(True, True) -> True new_compare29(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs15(yvy49000, yvy50000)) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_lt15(yvy49000, yvy50000, bbh) -> new_esEs12(new_compare15(yvy49000, yvy50000, bbh), LT) new_ltEs20(yvy49002, yvy50002, ty_Integer) -> new_ltEs10(yvy49002, yvy50002) new_ltEs19(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs11(yvy49001, yvy50001, bea, beb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_not(True) -> False new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_ltEs17(yvy49001, yvy50001, bfa) new_primCompAux00(yvy225, LT) -> LT new_esEs6(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(Left(yvy4000), Left(yvy3000), ty_Ordering, bbg) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_lt20(yvy49001, yvy50001, ty_Bool) -> new_lt14(yvy49001, yvy50001) new_esEs27(yvy49001, yvy50001, ty_Bool) -> new_esEs11(yvy49001, yvy50001) new_ltEs19(yvy49001, yvy50001, ty_Integer) -> new_ltEs10(yvy49001, yvy50001) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs27(yvy49001, yvy50001, app(ty_[], dad)) -> new_esEs8(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Char) -> new_esEs17(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, app(ty_Ratio, ddg)) -> new_esEs15(yvy20, yvy15, ddg) new_esEs12(LT, LT) -> True new_esEs21(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs12(yvy49000, yvy50000, hh, baa, bab) new_esEs14(@0, @0) -> True new_compare8(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(yvy400, yvy300, bag, bah, bba) new_ltEs19(yvy49001, yvy50001, ty_Char) -> new_ltEs6(yvy49001, yvy50001) new_compare10(yvy49000, yvy50000, True, bd, be) -> LT new_ltEs15(GT, EQ) -> False new_lt20(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_lt13(yvy49001, yvy50001, dag, dah, dba) new_primCompAux00(yvy225, GT) -> GT new_compare110(yvy49000, yvy50000, True) -> LT new_esEs25(yvy4001, yvy3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs5(yvy4001, yvy3001, cef, ceg, ceh) new_compare16(yvy49000, yvy50000, bch, bda) -> new_compare26(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, bch, bda), bch, bda) new_esEs24(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs27(yvy49001, yvy50001, ty_Ordering) -> new_esEs12(yvy49001, yvy50001) new_lt19(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Bool) -> new_ltEs13(yvy49002, yvy50002) new_esEs22(yvy4002, yvy3002, ty_Int) -> new_esEs16(yvy4002, yvy3002) new_ltEs18(yvy4900, yvy5000, ty_Double) -> new_ltEs16(yvy4900, yvy5000) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_esEs27(yvy49001, yvy50001, ty_Int) -> new_esEs16(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Ratio, bhb)) -> new_esEs15(yvy4000, yvy3000, bhb) new_esEs22(yvy4002, yvy3002, ty_Ordering) -> new_esEs12(yvy4002, yvy3002) new_compare12(yvy49000, yvy50000, bd, be) -> new_compare27(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bd, be), bd, be) new_esEs24(yvy4000, yvy3000, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(yvy4000, yvy3000, ccb, ccc, ccd) new_lt19(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_lt13(yvy49000, yvy50000, che, chf, chg) new_ltEs20(yvy49002, yvy50002, app(app(app(ty_@3, dca), dcb), dcc)) -> new_ltEs12(yvy49002, yvy50002, dca, dcb, dcc) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy20, yvy15, dda, ddb, ddc) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, bah, bba) -> new_asAs(new_esEs24(yvy4000, yvy3000, bag), new_asAs(new_esEs23(yvy4001, yvy3001, bah), new_esEs22(yvy4002, yvy3002, bba))) new_compare5(yvy49000, yvy50000, ty_Int) -> new_compare8(yvy49000, yvy50000) new_compare32(yvy400, h) -> new_compare25(Just(yvy400), Nothing, False, h) new_ltEs19(yvy49001, yvy50001, ty_Bool) -> new_ltEs13(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs5(yvy4000, yvy3000, bgd, bge, bgf) new_ltEs18(yvy4900, yvy5000, ty_Integer) -> new_ltEs10(yvy4900, yvy5000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_@0, bbg) -> new_esEs14(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_compare5(yvy49000, yvy50000, app(ty_Ratio, da)) -> new_compare19(yvy49000, yvy50000, da) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs8(yvy4000, yvy3000, cha) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_lt8(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_lt18(yvy49000, yvy50000, bdg) new_ltEs19(yvy49001, yvy50001, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs12(yvy49001, yvy50001, bec, bed, bee) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(yvy49000, yvy50000, bdb, bdc, bdd) new_lt19(yvy49000, yvy50000, app(ty_[], chb)) -> new_lt12(yvy49000, yvy50000, chb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy220) -> yvy220 new_esEs27(yvy49001, yvy50001, ty_@0) -> new_esEs14(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_Maybe, gh), ga) -> new_ltEs4(yvy49000, yvy50000, gh) new_esEs11(False, True) -> False new_esEs11(True, False) -> False new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cec), ced)) -> new_esEs7(yvy4000, yvy3000, cec, ced) new_lt8(yvy49000, yvy50000, ty_Bool) -> new_lt14(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bff), bfg), bbg) -> new_esEs4(yvy4000, yvy3000, bff, bfg) new_compare114(yvy49000, yvy50000, True, bch, bda) -> LT new_lt8(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_lt16(yvy49000, yvy50000, bch, bda) new_ltEs18(yvy4900, yvy5000, ty_@0) -> new_ltEs9(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_gt2(yvy35, yvy30, bb) -> new_esEs12(new_compare30(yvy35, yvy30, bb), GT) new_esEs23(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_ltEs19(yvy49001, yvy50001, ty_Double) -> new_ltEs16(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, ty_Bool) -> new_esEs11(yvy4002, yvy3002) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(ty_[], gb), ga) -> new_ltEs8(yvy49000, yvy50000, gb) new_esEs21(yvy49000, yvy50000, app(ty_[], bdf)) -> new_esEs8(yvy49000, yvy50000, bdf) new_esEs22(yvy4002, yvy3002, app(ty_Maybe, caa)) -> new_esEs6(yvy4002, yvy3002, caa) new_esEs21(yvy49000, yvy50000, app(app(ty_@2, bd), be)) -> new_esEs4(yvy49000, yvy50000, bd, be) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy4001, yvy3001, app(app(ty_@2, cfb), cfc)) -> new_esEs4(yvy4001, yvy3001, cfb, cfc) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Bool, bbg) -> new_esEs11(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bfh), bbg) -> new_esEs15(yvy4000, yvy3000, bfh) new_ltEs18(yvy4900, yvy5000, ty_Bool) -> new_ltEs13(yvy4900, yvy5000) new_gt0(yvy300, h) -> new_esEs12(new_compare31(yvy300, h), GT) new_ltEs18(yvy4900, yvy5000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs12(yvy4900, yvy5000, bcd, bce, bcf) new_esEs23(yvy4001, yvy3001, app(app(ty_Either, cbg), cbh)) -> new_esEs7(yvy4001, yvy3001, cbg, cbh) new_esEs21(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_@2, gc), gd), ga) -> new_ltEs11(yvy49000, yvy50000, gc, gd) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) new_ltEs20(yvy49002, yvy50002, ty_Double) -> new_ltEs16(yvy49002, yvy50002) new_esEs9(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_Either, bad), bae)) -> new_ltEs14(yvy49000, yvy50000, bad, bae) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Float, ga) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_compare114(yvy49000, yvy50000, False, bch, bda) -> GT new_esEs25(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs8(yvy4001, yvy3001, cfg) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bbc, bbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bbc), new_esEs25(yvy4001, yvy3001, bbd)) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare6(yvy4900, yvy5000)) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bga), bgb), bbg) -> new_esEs7(yvy4000, yvy3000, bga, bgb) new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare25(Just(yvy4900), Nothing, False, bca) -> GT new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_compare5(yvy49000, yvy50000, ty_@0) -> new_compare9(yvy49000, yvy50000) new_esEs24(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs6(yvy4000, yvy3000, cce) new_lt11(yvy205, yvy204) -> new_esEs12(new_compare8(yvy205, yvy204), LT) new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_lt6(yvy49000, yvy50000) -> new_esEs12(new_compare9(yvy49000, yvy50000), LT) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Double, ga) -> new_ltEs16(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) new_esEs23(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs5(yvy4000, yvy3000, cdd, cde, cdf) new_esEs25(yvy4001, yvy3001, app(app(ty_Either, cfe), cff)) -> new_esEs7(yvy4001, yvy3001, cfe, cff) new_compare5(yvy49000, yvy50000, ty_Float) -> new_compare6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, app(ty_[], fh)) -> new_esEs8(yvy4000, yvy3000, fh) new_esEs23(yvy4001, yvy3001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(yvy4001, yvy3001, cah, cba, cbb) new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_primPlusNat1(Succ(yvy1610), yvy300000) -> Succ(Succ(new_primPlusNat0(yvy1610, yvy300000))) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Int, bbg) -> new_esEs16(yvy4000, yvy3000) new_esEs24(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs16(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primPlusNat0(Succ(yvy16100), Zero) -> Succ(yvy16100) new_primPlusNat0(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs25(yvy4001, yvy3001, ty_Ordering) -> new_esEs12(yvy4001, yvy3001) new_primPlusNat1(Zero, yvy300000) -> Succ(yvy300000) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare8(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs24(yvy4000, yvy3000, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_@0, ga) -> new_ltEs9(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(ty_Either, ha), hb), ga) -> new_ltEs14(yvy49000, yvy50000, ha, hb) new_ltEs20(yvy49002, yvy50002, ty_@0) -> new_ltEs9(yvy49002, yvy50002) new_ltEs18(yvy4900, yvy5000, app(app(ty_@2, bcb), bcc)) -> new_ltEs11(yvy4900, yvy5000, bcb, bcc) new_ltEs9(yvy4900, yvy5000) -> new_fsEs(new_compare9(yvy4900, yvy5000)) new_esEs22(yvy4002, yvy3002, app(ty_Ratio, cad)) -> new_esEs15(yvy4002, yvy3002, cad) new_ltEs19(yvy49001, yvy50001, app(app(ty_Either, beg), beh)) -> new_ltEs14(yvy49001, yvy50001, beg, beh) new_esEs25(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_lt15(yvy49000, yvy50000, bbh) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49001, yvy50001, ty_Char) -> new_lt10(yvy49001, yvy50001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs9(yvy4000, yvy3000, app(ty_Maybe, fa)) -> new_esEs6(yvy4000, yvy3000, fa) new_esEs23(yvy4001, yvy3001, app(ty_Ratio, cbf)) -> new_esEs15(yvy4001, yvy3001, cbf) new_compare25(Just(yvy4900), Just(yvy5000), False, bca) -> new_compare111(yvy4900, yvy5000, new_ltEs18(yvy4900, yvy5000, bca), bca) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49002, yvy50002, ty_Float) -> new_ltEs5(yvy49002, yvy50002) new_esEs6(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) new_esEs24(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_fsEs(yvy209) -> new_not(new_esEs12(yvy209, GT)) new_ltEs18(yvy4900, yvy5000, app(app(ty_Either, hd), ga)) -> new_ltEs14(yvy4900, yvy5000, hd, ga) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_[], cee)) -> new_esEs8(yvy4000, yvy3000, cee) new_compare25(yvy490, yvy500, True, bca) -> EQ new_esEs9(yvy4000, yvy3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs5(yvy4000, yvy3000, ef, eg, eh) new_esEs9(yvy4000, yvy3000, app(ty_Ratio, fd)) -> new_esEs15(yvy4000, yvy3000, fd) new_compare([], :(yvy50000, yvy50001), bf) -> LT new_lt20(yvy49001, yvy50001, app(ty_[], dad)) -> new_lt12(yvy49001, yvy50001, dad) new_esEs6(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdg)) -> new_esEs6(yvy4000, yvy3000, cdg) new_esEs6(Nothing, Just(yvy3000), bbb) -> False new_esEs6(Just(yvy4000), Nothing, bbb) -> False new_esEs23(yvy4001, yvy3001, app(ty_[], cca)) -> new_esEs8(yvy4001, yvy3001, cca) new_ltEs15(EQ, GT) -> True new_esEs24(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Nothing, Nothing, bbb) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_esEs11(False, False) -> True new_esEs24(yvy4000, yvy3000, app(app(ty_Either, cda), cdb)) -> new_esEs7(yvy4000, yvy3000, cda, cdb) new_ltEs18(yvy4900, yvy5000, ty_Ordering) -> new_ltEs15(yvy4900, yvy5000) new_ltEs11(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bcb, bcc) -> new_pePe(new_lt8(yvy49000, yvy50000, bcb), new_asAs(new_esEs21(yvy49000, yvy50000, bcb), new_ltEs19(yvy49001, yvy50001, bcc))) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs21(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs17(yvy20, yvy15) new_ltEs14(Left(yvy49000), Right(yvy50000), hd, ga) -> True new_ltEs19(yvy49001, yvy50001, ty_Float) -> new_ltEs5(yvy49001, yvy50001) new_esEs23(yvy4001, yvy3001, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4001, yvy3001, cbd, cbe) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_compare18(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Ordering, ga) -> new_ltEs15(yvy49000, yvy50000) new_ltEs6(yvy4900, yvy5000) -> new_fsEs(new_compare7(yvy4900, yvy5000)) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(:(yvy4000, yvy4001), [], ee) -> False new_esEs8([], :(yvy3000, yvy3001), ee) -> False new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(yvy4000, yvy3000, cgg, cgh) new_lt19(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_lt17(yvy49000, yvy50000) -> new_esEs12(new_compare17(yvy49000, yvy50000), LT) new_compare19(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare11(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs22(yvy4002, yvy3002, app(app(ty_@2, cab), cac)) -> new_esEs4(yvy4002, yvy3002, cab, cac) new_esEs31(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs6(yvy400, yvy300, bbb) new_esEs22(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cgf)) -> new_esEs15(yvy4000, yvy3000, cgf) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs11(yvy400, yvy300) new_compare5(yvy49000, yvy50000, app(ty_Maybe, ce)) -> new_compare15(yvy49000, yvy50000, ce) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Integer, bbg) -> new_esEs10(yvy4000, yvy3000) new_ltEs19(yvy49001, yvy50001, ty_@0) -> new_ltEs9(yvy49001, yvy50001) new_esEs22(yvy4002, yvy3002, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg, bhh) new_lt20(yvy49001, yvy50001, ty_@0) -> new_lt6(yvy49001, yvy50001) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_@2, bgh), bha)) -> new_esEs4(yvy4000, yvy3000, bgh, bha) new_gt1(yvy400, h) -> new_esEs12(new_compare32(yvy400, h), GT) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Bool, ga) -> new_ltEs13(yvy49000, yvy50000) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs14(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_[], bhe)) -> new_esEs8(yvy4000, yvy3000, bhe) new_ltEs15(LT, GT) -> True new_lt19(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(ty_[], deb)) -> new_esEs8(yvy20, yvy15, deb) new_compare33(h) -> new_compare25(Nothing, Nothing, True, h) new_esEs25(yvy4001, yvy3001, ty_Char) -> new_esEs17(yvy4001, yvy3001) new_esEs12(GT, GT) -> True new_esEs25(yvy4001, yvy3001, ty_Bool) -> new_esEs11(yvy4001, yvy3001) new_esEs24(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs8(yvy4000, yvy3000, cdc) new_asAs(True, yvy201) -> yvy201 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(ty_Maybe, bbh)) -> new_esEs6(yvy49000, yvy50000, bbh) new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, False, bd, be) -> GT new_lt8(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_lt8(yvy49000, yvy50000, ty_Float) -> new_lt9(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs24(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt20(yvy49001, yvy50001, ty_Float) -> new_lt9(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs17(yvy400, yvy300) new_ltEs4(Nothing, Just(yvy50000), db) -> True new_esEs21(yvy49000, yvy50000, app(ty_Ratio, bdg)) -> new_esEs15(yvy49000, yvy50000, bdg) new_ltEs18(yvy4900, yvy5000, app(ty_Maybe, db)) -> new_ltEs4(yvy4900, yvy5000, db) new_lt8(yvy49000, yvy50000, ty_Char) -> new_lt10(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Float, bbg) -> new_esEs13(yvy4000, yvy3000) new_ltEs8(yvy4900, yvy5000, bf) -> new_fsEs(new_compare(yvy4900, yvy5000, bf)) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_ltEs18(yvy4900, yvy5000, app(ty_[], bf)) -> new_ltEs8(yvy4900, yvy5000, bf) new_compare110(yvy49000, yvy50000, False) -> GT new_primCompAux00(yvy225, EQ) -> yvy225 new_lt19(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_lt15(yvy49000, yvy50000, chh) new_esEs12(EQ, EQ) -> True new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_lt19(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs17(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs21(yvy49000, yvy50000, app(app(ty_Either, bch), bda)) -> new_esEs7(yvy49000, yvy50000, bch, bda) new_primMulNat0(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_compare5(yvy49000, yvy50000, ty_Integer) -> new_compare11(yvy49000, yvy50000) new_esEs22(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) new_esEs21(yvy49000, yvy50000, ty_Integer) -> new_esEs10(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bcd, bce, bcf) -> new_pePe(new_lt19(yvy49000, yvy50000, bcd), new_asAs(new_esEs28(yvy49000, yvy50000, bcd), new_pePe(new_lt20(yvy49001, yvy50001, bce), new_asAs(new_esEs27(yvy49001, yvy50001, bce), new_ltEs20(yvy49002, yvy50002, bcf))))) new_ltEs19(yvy49001, yvy50001, app(ty_[], bdh)) -> new_ltEs8(yvy49001, yvy50001, bdh) new_compare5(yvy49000, yvy50000, ty_Double) -> new_compare18(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dd), de)) -> new_ltEs11(yvy49000, yvy50000, dd, de) new_compare11(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_compare9(@0, @0) -> EQ new_esEs22(yvy4002, yvy3002, app(app(ty_Either, cae), caf)) -> new_esEs7(yvy4002, yvy3002, cae, caf) new_esEs9(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_compare28(yvy49000, yvy50000, True, bdb, bdc, bdd) -> EQ new_esEs27(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(False, True) -> True new_esEs6(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs13(False, False) -> True new_esEs9(yvy4000, yvy3000, app(app(ty_Either, ff), fg)) -> new_esEs7(yvy4000, yvy3000, ff, fg) new_esEs7(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bfb), bfc), bfd), bbg) -> new_esEs5(yvy4000, yvy3000, bfb, bfc, bfd) new_ltEs15(EQ, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs15(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bbg) -> new_esEs6(yvy4000, yvy3000, bfe) new_compare30(yvy20, yvy15, dch) -> new_compare25(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dch), dch) new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cgc)) -> new_esEs6(yvy4000, yvy3000, cgc) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Ordering) -> new_esEs12(yvy4000, yvy3000) new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs11(yvy4000, yvy3000) new_lt12(yvy49000, yvy50000, bdf) -> new_esEs12(new_compare(yvy49000, yvy50000, bdf), LT) new_lt10(yvy49000, yvy50000) -> new_esEs12(new_compare7(yvy49000, yvy50000), LT) new_lt19(yvy49000, yvy50000, ty_Int) -> new_lt11(yvy49000, yvy50000) new_esEs9(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare25(Nothing, Just(yvy300), False, h) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Char, bbg) -> new_esEs17(yvy4000, yvy3000) new_esEs9(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_esEs7(Left(yvy4000), Left(yvy3000), app(ty_[], bgc), bbg) -> new_esEs8(yvy4000, yvy3000, bgc) new_ltEs20(yvy49002, yvy50002, app(ty_[], dbf)) -> new_ltEs8(yvy49002, yvy50002, dbf) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, eb), ec)) -> new_ltEs14(yvy49000, yvy50000, eb, ec) new_compare17(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs12(yvy49000, yvy50000)) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs21(yvy49000, yvy50000, ty_Bool) -> new_esEs11(yvy49000, yvy50000) new_esEs25(yvy4001, yvy3001, app(ty_Maybe, cfa)) -> new_esEs6(yvy4001, yvy3001, cfa) new_compare([], [], bf) -> EQ new_ltEs15(LT, EQ) -> True new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs18(yvy4900, yvy5000, ty_Char) -> new_ltEs6(yvy4900, yvy5000) new_ltEs18(yvy4900, yvy5000, app(ty_Ratio, bcg)) -> new_ltEs17(yvy4900, yvy5000, bcg) new_lt20(yvy49001, yvy50001, ty_Double) -> new_lt7(yvy49001, yvy50001) new_esEs26(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_compare24(yvy49000, yvy50000, True) -> EQ new_lt8(yvy49000, yvy50000, app(ty_[], bdf)) -> new_lt12(yvy49000, yvy50000, bdf) new_ltEs14(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, ge), gf), gg), ga) -> new_ltEs12(yvy49000, yvy50000, ge, gf, gg) new_esEs21(yvy49000, yvy50000, ty_Char) -> new_esEs17(yvy49000, yvy50000) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(app(ty_Either, bhc), bhd)) -> new_esEs7(yvy4000, yvy3000, bhc, bhd) new_esEs11(True, True) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_[], he)) -> new_ltEs8(yvy49000, yvy50000, he) new_esEs7(Right(yvy4000), Right(yvy3000), bbf, app(ty_Maybe, bgg)) -> new_esEs6(yvy4000, yvy3000, bgg) new_esEs31(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs15(yvy400, yvy300, bbe) new_esEs25(yvy4001, yvy3001, app(ty_Ratio, cfd)) -> new_esEs15(yvy4001, yvy3001, cfd) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbe) -> new_asAs(new_esEs20(yvy4000, yvy3000, bbe), new_esEs19(yvy4001, yvy3001, bbe)) new_compare28(yvy49000, yvy50000, False, bdb, bdc, bdd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bdb, bdc, bdd), bdb, bdc, bdd) new_esEs22(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs27(yvy49001, yvy50001, ty_Integer) -> new_esEs10(yvy49001, yvy50001) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(app(ty_@2, hf), hg)) -> new_ltEs11(yvy49000, yvy50000, hf, hg) new_gt(h) -> new_esEs12(new_compare33(h), GT) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs15(GT, GT) -> True new_compare111(yvy198, yvy199, False, bde) -> GT new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs11(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, app(ty_Maybe, bac)) -> new_ltEs4(yvy49000, yvy50000, bac) new_esEs30(yvy20, yvy15, app(ty_Maybe, ddd)) -> new_esEs6(yvy20, yvy15, ddd) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) new_esEs23(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_esEs31(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs4(yvy400, yvy300, bbc, bbd) new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Int, ga) -> new_ltEs7(yvy49000, yvy50000) new_not(False) -> True new_compare5(yvy49000, yvy50000, app(app(ty_Either, cf), cg)) -> new_compare16(yvy49000, yvy50000, cf, cg) new_esEs6(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_compare112(yvy49000, yvy50000, True, bdb, bdc, bdd) -> LT new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare5(yvy49000, yvy50000, ty_Bool) -> new_compare14(yvy49000, yvy50000) new_lt13(yvy49000, yvy50000, bdb, bdc, bdd) -> new_esEs12(new_compare13(yvy49000, yvy50000, bdb, bdc, bdd), LT) new_primCompAux0(yvy49000, yvy50000, yvy221, bf) -> new_primCompAux00(yvy221, new_compare5(yvy49000, yvy50000, bf)) new_esEs27(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_esEs7(yvy49001, yvy50001, dbc, dbd) new_esEs25(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs22(yvy4002, yvy3002, ty_Char) -> new_esEs17(yvy4002, yvy3002) new_lt7(yvy49000, yvy50000) -> new_esEs12(new_compare18(yvy49000, yvy50000), LT) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yvy49000, yvy50000, ty_Ordering) -> new_esEs12(yvy49000, yvy50000) new_compare29(yvy49000, yvy50000, True) -> EQ new_primPlusNat0(Succ(yvy16100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat0(yvy16100, yvy3000000))) new_lt4(yvy49000, yvy50000, bd, be) -> new_esEs12(new_compare12(yvy49000, yvy50000, bd, be), LT) new_compare5(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_compare13(yvy49000, yvy50000, cb, cc, cd) new_esEs27(yvy49001, yvy50001, app(ty_Ratio, dbe)) -> new_esEs15(yvy49001, yvy50001, dbe) new_lt19(yvy49000, yvy50000, ty_Integer) -> new_lt5(yvy49000, yvy50000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs5(yvy49000, yvy50000, che, chf, chg) new_compare112(yvy49000, yvy50000, False, bdb, bdc, bdd) -> GT new_compare27(yvy49000, yvy50000, True, bd, be) -> EQ new_esEs7(Right(yvy4000), Right(yvy3000), bbf, ty_Int) -> new_esEs16(yvy4000, yvy3000) new_compare15(yvy49000, yvy50000, bbh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, bbh), bbh) new_esEs21(yvy49000, yvy50000, ty_Int) -> new_esEs16(yvy49000, yvy50000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt20(yvy49001, yvy50001, ty_Int) -> new_lt11(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, app(ty_[], ee)) -> new_esEs8(yvy400, yvy300, ee) new_ltEs19(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_ltEs20(yvy49002, yvy50002, app(ty_Ratio, dcg)) -> new_ltEs17(yvy49002, yvy50002, dcg) new_esEs8([], [], ee) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Char, ga) -> new_ltEs6(yvy49000, yvy50000) new_ltEs20(yvy49002, yvy50002, ty_Char) -> new_ltEs6(yvy49002, yvy50002) new_compare25(Nothing, Nothing, False, bca) -> LT new_lt20(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_lt15(yvy49001, yvy50001, dbb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ed)) -> new_ltEs17(yvy49000, yvy50000, ed) new_lt8(yvy49000, yvy50000, ty_@0) -> new_lt6(yvy49000, yvy50000) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Float) -> new_ltEs5(yvy49000, yvy50000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_compare6(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare8(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(yvy400, yvy300, bbf, bbg) new_lt20(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_lt4(yvy49001, yvy50001, dae, daf) new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs18(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) new_compare111(yvy198, yvy199, True, bde) -> LT new_ltEs13(True, False) -> False new_ltEs20(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_esEs27(yvy49001, yvy50001, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy49001, yvy50001, dae, daf) new_ltEs15(LT, LT) -> True new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs16(yvy400, yvy300) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs16(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs22(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, app(ty_Maybe, chh)) -> new_esEs6(yvy49000, yvy50000, chh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, chc), chd)) -> new_esEs4(yvy49000, yvy50000, chc, chd) new_compare7(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_lt5(yvy49000, yvy50000) -> new_esEs12(new_compare11(yvy49000, yvy50000), LT) new_lt20(yvy49001, yvy50001, app(app(ty_Either, dbc), dbd)) -> new_lt16(yvy49001, yvy50001, dbc, dbd) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs6(yvy49000, yvy50000) new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_lt20(yvy49001, yvy50001, ty_Integer) -> new_lt5(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs16(yvy20, yvy15) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_Double) -> new_ltEs16(yvy49000, yvy50000) new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare11(yvy4900, yvy5000)) new_lt14(yvy49000, yvy50000) -> new_esEs12(new_compare14(yvy49000, yvy50000), LT) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy49001, yvy50001, app(ty_Maybe, dbb)) -> new_esEs6(yvy49001, yvy50001, dbb) new_ltEs14(Right(yvy49000), Right(yvy50000), hd, ty_@0) -> new_ltEs9(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Left(yvy3000), ty_Double, bbg) -> new_esEs18(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], dc)) -> new_ltEs8(yvy49000, yvy50000, dc) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs10(yvy49000, yvy50000) new_esEs27(yvy49001, yvy50001, ty_Double) -> new_esEs18(yvy49001, yvy50001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare25(Nothing, Just(yvy5000), False, bca) -> LT new_compare5(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare12(yvy49000, yvy50000, bh, ca) new_esEs28(yvy49000, yvy50000, app(ty_[], chb)) -> new_esEs8(yvy49000, yvy50000, chb) new_lt19(yvy49000, yvy50000, ty_Ordering) -> new_lt17(yvy49000, yvy50000) new_lt18(yvy49000, yvy50000, bdg) -> new_esEs12(new_compare19(yvy49000, yvy50000, bdg), LT) new_compare5(yvy49000, yvy50000, ty_Char) -> new_compare7(yvy49000, yvy50000) new_ltEs19(yvy49001, yvy50001, app(ty_Maybe, bef)) -> new_ltEs4(yvy49001, yvy50001, bef) new_compare5(yvy49000, yvy50000, app(ty_[], bg)) -> new_compare(yvy49000, yvy50000, bg) new_compare14(yvy49000, yvy50000) -> new_compare24(yvy49000, yvy50000, new_esEs11(yvy49000, yvy50000)) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Left(yvy49000), Left(yvy50000), ty_Integer, ga) -> new_ltEs10(yvy49000, yvy50000) new_compare6(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare8(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs16(yvy4001, yvy3001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs13(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, app(app(ty_Either, ddh), dea)) -> new_esEs7(yvy20, yvy15, ddh, dea) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs12(yvy20, yvy15) new_compare5(yvy49000, yvy50000, ty_Ordering) -> new_compare17(yvy49000, yvy50000) new_esEs6(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) new_asAs(False, yvy201) -> False new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(yvy49000, yvy50000, df, dg, dh) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dac)) -> new_esEs15(yvy49000, yvy50000, dac) new_esEs23(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) new_ltEs20(yvy49002, yvy50002, app(ty_Maybe, dcd)) -> new_ltEs4(yvy49002, yvy50002, dcd) new_esEs25(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt8(yvy49000, yvy50000, ty_Double) -> new_lt7(yvy49000, yvy50000) new_esEs7(Left(yvy4000), Right(yvy3000), bbf, bbg) -> False new_esEs7(Right(yvy4000), Left(yvy3000), bbf, bbg) -> False new_ltEs17(yvy4900, yvy5000, bcg) -> new_fsEs(new_compare19(yvy4900, yvy5000, bcg)) new_lt16(yvy49000, yvy50000, bch, bda) -> new_esEs12(new_compare16(yvy49000, yvy50000, bch, bda), LT) new_esEs24(yvy4000, yvy3000, ty_Char) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt19(yvy49000, yvy50000, app(app(ty_Either, daa), dab)) -> new_lt16(yvy49000, yvy50000, daa, dab) new_esEs27(yvy49001, yvy50001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs5(yvy49001, yvy50001, dag, dah, dba) The set Q consists of the following terms: new_esEs27(x0, x1, ty_@0) new_esEs8(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3) new_esEs8([], [], x0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_compare30(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, ty_Char) new_compare5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, False, x2, x3, x4) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs17(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare15(x0, x1, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, GT) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_asAs(False, x0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare114(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_primCmpNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Double) new_ltEs13(False, True) new_ltEs13(True, False) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare10(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_ltEs19(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare25(Nothing, Just(x0), False, x1) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt8(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Bool) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs8(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs17(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Double) new_lt18(x0, x1, x2) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_compare25(Just(x0), Just(x1), False, x2) new_compare14(x0, x1) new_ltEs18(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_pePe(True, x0) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(x0, x1) new_ltEs15(EQ, EQ) new_compare([], [], x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Float) new_compare112(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Succ(x1)) new_compare25(x0, x1, True, x2) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare5(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, ty_Char) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1) new_lt19(x0, x1, ty_Int) new_primEqNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Char(x0), Char(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt15(x0, x1, x2) new_ltEs5(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Int) new_compare28(x0, x1, True, x2, x3, x4) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_compare5(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs6(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Bool) new_lt7(x0, x1) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primPlusNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(False, False) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare(:(x0, x1), [], x2) new_lt13(x0, x1, x2, x3, x4) new_esEs8([], :(x0, x1), x2) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_compare113(x0, x1, True) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs6(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Ordering) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare8(x0, x1) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt16(x0, x1, x2, x3) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs13(True, True) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_Ordering) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs25(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs25(x0, x1, ty_Char) new_compare17(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Integer) new_gt(x0) new_ltEs19(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Ordering) new_compare([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_esEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare24(x0, x1, True) new_compare5(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, x0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_esEs6(Nothing, Nothing, x0) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_fsEs(x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primPlusNat1(Succ(x0), x1) new_esEs23(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, ty_Ordering) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt19(x0, x1, ty_@0) new_not(True) new_compare5(x0, x1, app(ty_Ratio, x2)) new_esEs8(:(x0, x1), [], x2) new_compare25(Just(x0), Nothing, False, x1) new_esEs23(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt19(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(False, False) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Double) new_esEs25(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(True, True) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs15(GT, EQ) new_esEs23(x0, x1, ty_Double) new_ltEs15(EQ, GT) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Char) new_esEs11(False, True) new_esEs11(True, False) new_compare113(x0, x1, False) new_lt4(x0, x1, x2, x3) new_lt8(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, ty_Integer) new_compare27(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_compare5(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare31(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(LT, LT) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_compare26(x0, x1, False, x2, x3) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Int) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt14(x0, x1) new_esEs9(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_compare13(x0, x1, x2, x3, x4) new_esEs22(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs14(@0, @0) new_pePe(False, x0) new_ltEs9(x0, x1) new_esEs22(x0, x1, ty_Float) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, False) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare25(Nothing, Nothing, False, x0) new_lt10(x0, x1) new_compare16(x0, x1, x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs18(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs10(Integer(x0), Integer(x1)) new_compare32(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_compare5(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Ordering) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs30(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(GT, GT) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Ordering) new_gt0(x0, x1) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs16(x0, x1) new_lt11(x0, x1) new_ltEs18(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_not(False) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare11(Integer(x0), Integer(x1)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primCompAux00(x0, LT) new_compare110(x0, x1, True) new_ltEs15(LT, LT) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, False) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, True, x2) new_esEs30(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Ordering) new_compare114(x0, x1, True, x2, x3) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (67) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) The graph contains the following edges 5 >= 1, 7 >= 2, 8 >= 3 *new_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs12(new_compare25(Nothing, Just(yvy300), False, h), LT), h, ba) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 7, 3 >= 8 *new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 *new_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT1(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 5 >= 4, 7 >= 6, 8 >= 7 *new_splitLT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT(yvy34, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3 *new_splitLT2(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 7 >= 7, 8 >= 8 ---------------------------------------- (68) YES ---------------------------------------- (69) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (70) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (71) YES ---------------------------------------- (72) 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. ---------------------------------------- (73) 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 ---------------------------------------- (74) YES ---------------------------------------- (75) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat(yvy20800, yvy20700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (76) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(yvy20800), Succ(yvy20700)) -> new_primMinusNat(yvy20800, yvy20700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (77) YES ---------------------------------------- (78) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy16100), Succ(yvy3000000)) -> new_primPlusNat(yvy16100, yvy3000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (79) 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(yvy16100), Succ(yvy3000000)) -> new_primPlusNat(yvy16100, yvy3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (80) YES