/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) DependencyGraphProof [EQUIVALENT, 0 ms] (22) AND (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) DependencyGraphProof [EQUIVALENT, 0 ms] (34) AND (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 45 ms] (43) YES (44) QDP (45) DependencyGraphProof [EQUIVALENT, 0 ms] (46) AND (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES (50) QDP (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] (52) YES (53) QDP (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] (55) YES (56) QDP (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] (58) YES (59) QDP (60) QDPSizeChangeProof [EQUIVALENT, 0 ms] (61) YES (62) QDP (63) QDPSizeChangeProof [EQUIVALENT, 0 ms] (64) YES (65) QDP (66) QDPSizeChangeProof [EQUIVALENT, 0 ms] (67) YES (68) QDP (69) QDPOrderProof [EQUIVALENT, 96 ms] (70) QDP (71) DependencyGraphProof [EQUIVALENT, 0 ms] (72) TRUE ---------------------------------------- (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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (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 = 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord 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 b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (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 a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (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 | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) | sIZE_RATIO * size_l < size_r = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: 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 "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; " "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wwz wxu = gcd3 wwz wxu; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } ; " "gcd1 True wwz wxu = error []; gcd1 wxv wxw wxx = gcd0 wxw wxx; " "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; gcd2 wxy wxz wyu = gcd0 wxz wyu; " "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; gcd3 wyv wyw = gcd0 wyv wyw; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; " The following Function with conditions "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz)|sIZE_RATIO * size_l < size_rmkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz|sIZE_RATIO * size_r < size_lmkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz))|otherwisemkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " is transformed to "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; " "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; " The following Function with conditions "splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key|split_key > keysplitGT fm_r split_key|split_key < keymkVBalBranch key elt (splitGT fm_l split_key) fm_r|otherwisefm_r; " is transformed to "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; " "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; " "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; " "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); " "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); " "splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; " The following Function with conditions "splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key|split_key < keysplitLT fm_l split_key|split_key > keymkVBalBranch key elt fm_l (splitLT fm_r split_key)|otherwisefm_l; " is transformed to "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; " "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; " "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); " "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; " "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); " "splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = 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'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D xxv xxw = gcd xxv xxw; " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; " "mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); " "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); " "mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxz; " "mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); " "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; " "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; " "mkBranchRight_size xyv xyw xyx = sizeFM xyx; " "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchBalance_ok xyv xyw xyx = True; " "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchLeft_size xyv xyw xyx = sizeFM xyv; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; " The bindings of the following Let/Where expression "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; ; lts = splitLT fm1 split_key; } " are unpacked to the following functions on top level "plusFMGts xzw xzx = splitGT xzw xzx; " "plusFMLts xzw xzx = splitLT xzw xzx; " The bindings of the following Let/Where expression "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } " are unpacked to the following functions on top level "mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); " "mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; " "mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); " "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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 a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = 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 a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord 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 b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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 b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];4512[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 5[label="",style="solid", color="burlywood", weight=3]; 4513[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 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"];4514[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 8[label="",style="solid", color="burlywood", weight=3]; 4515[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 4515[label="",style="solid", color="burlywood", weight=9]; 4515 -> 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"];4516[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 4516[label="",style="solid", color="burlywood", weight=9]; 4516 -> 19[label="",style="solid", color="burlywood", weight=3]; 4517[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 4517[label="",style="solid", color="burlywood", weight=9]; 4517 -> 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"];4518[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 4518[label="",style="solid", color="burlywood", weight=9]; 4518 -> 24[label="",style="solid", color="burlywood", weight=3]; 4519[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 4519[label="",style="solid", color="burlywood", weight=9]; 4519 -> 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"];4520[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 4520[label="",style="solid", color="burlywood", weight=9]; 4520 -> 38[label="",style="solid", color="burlywood", weight=3]; 4521[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 4521[label="",style="solid", color="burlywood", weight=9]; 4521 -> 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"];4522[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4522[label="",style="solid", color="burlywood", weight=9]; 4522 -> 52[label="",style="solid", color="burlywood", weight=3]; 4523[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 4523[label="",style="solid", color="burlywood", weight=9]; 4523 -> 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"];4524[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4524[label="",style="solid", color="burlywood", weight=9]; 4524 -> 54[label="",style="solid", color="burlywood", weight=3]; 4525[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 4525[label="",style="solid", color="burlywood", weight=9]; 4525 -> 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"];4526[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];52 -> 4526[label="",style="solid", color="burlywood", weight=9]; 4526 -> 59[label="",style="solid", color="burlywood", weight=3]; 4527[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 4527[label="",style="solid", color="burlywood", weight=9]; 4527 -> 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"];4528[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 4528[label="",style="solid", color="burlywood", weight=9]; 4528 -> 61[label="",style="solid", color="burlywood", weight=3]; 4529[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 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"];4530[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];54 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 63[label="",style="solid", color="burlywood", weight=3]; 4531[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 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"];4532[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];55 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 65[label="",style="solid", color="burlywood", weight=3]; 4533[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 4533[label="",style="solid", color="burlywood", weight=9]; 4533 -> 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"];4534[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];80 -> 4534[label="",style="solid", color="burlywood", weight=9]; 4534 -> 104[label="",style="solid", color="burlywood", weight=3]; 4535[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 4535[label="",style="solid", color="burlywood", weight=9]; 4535 -> 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"];4536[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4536[label="",style="solid", color="burlywood", weight=9]; 4536 -> 106[label="",style="solid", color="burlywood", weight=3]; 4537[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 4537[label="",style="solid", color="burlywood", weight=9]; 4537 -> 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 -> 121[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"];4538[label="yvy41/False",fontsize=10,color="white",style="solid",shape="box"];211 -> 4538[label="",style="solid", color="burlywood", weight=9]; 4538 -> 218[label="",style="solid", color="burlywood", weight=3]; 4539[label="yvy41/True",fontsize=10,color="white",style="solid",shape="box"];211 -> 4539[label="",style="solid", color="burlywood", weight=9]; 4539 -> 219[label="",style="solid", color="burlywood", weight=3]; 221 -> 121[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"];4540[label="yvy42/False",fontsize=10,color="white",style="solid",shape="box"];220 -> 4540[label="",style="solid", color="burlywood", weight=9]; 4540 -> 227[label="",style="solid", color="burlywood", weight=3]; 4541[label="yvy42/True",fontsize=10,color="white",style="solid",shape="box"];220 -> 4541[label="",style="solid", color="burlywood", weight=9]; 4541 -> 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 -> 121[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"];4542[label="yvy43/False",fontsize=10,color="white",style="solid",shape="box"];266 -> 4542[label="",style="solid", color="burlywood", weight=9]; 4542 -> 279[label="",style="solid", color="burlywood", weight=3]; 4543[label="yvy43/True",fontsize=10,color="white",style="solid",shape="box"];266 -> 4543[label="",style="solid", color="burlywood", weight=9]; 4543 -> 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 -> 121[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"];4544[label="yvy37/False",fontsize=10,color="white",style="solid",shape="box"];178 -> 4544[label="",style="solid", color="burlywood", weight=9]; 4544 -> 184[label="",style="solid", color="burlywood", weight=3]; 4545[label="yvy37/True",fontsize=10,color="white",style="solid",shape="box"];178 -> 4545[label="",style="solid", color="burlywood", weight=9]; 4545 -> 185[label="",style="solid", color="burlywood", weight=3]; 187 -> 121[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"];4546[label="yvy38/False",fontsize=10,color="white",style="solid",shape="box"];186 -> 4546[label="",style="solid", color="burlywood", weight=9]; 4546 -> 192[label="",style="solid", color="burlywood", weight=3]; 4547[label="yvy38/True",fontsize=10,color="white",style="solid",shape="box"];186 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 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 -> 121[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"];4548[label="yvy44/False",fontsize=10,color="white",style="solid",shape="box"];295 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 308[label="",style="solid", color="burlywood", weight=3]; 4549[label="yvy44/True",fontsize=10,color="white",style="solid",shape="box"];295 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 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"];4550[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];104 -> 4550[label="",style="solid", color="burlywood", weight=9]; 4550 -> 146[label="",style="solid", color="burlywood", weight=3]; 4551[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];104 -> 4551[label="",style="solid", color="burlywood", weight=9]; 4551 -> 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"];4552[label="yvy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];105 -> 4552[label="",style="solid", color="burlywood", weight=9]; 4552 -> 148[label="",style="solid", color="burlywood", weight=3]; 4553[label="yvy50/Just yvy500",fontsize=10,color="white",style="solid",shape="box"];105 -> 4553[label="",style="solid", color="burlywood", weight=9]; 4553 -> 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 -> 2489[label="",style="dashed", color="red", weight=0]; 217[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];217 -> 2490[label="",style="dashed", color="magenta", weight=3]; 217 -> 2491[label="",style="dashed", color="magenta", weight=3]; 217 -> 2492[label="",style="dashed", color="magenta", weight=3]; 121[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4554[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];121 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 169[label="",style="solid", color="burlywood", weight=3]; 4555[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];121 -> 4555[label="",style="solid", color="burlywood", weight=9]; 4555 -> 170[label="",style="solid", color="burlywood", weight=3]; 4556[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];121 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 171[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 -> 2489[label="",style="dashed", color="red", weight=0]; 226[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];226 -> 2493[label="",style="dashed", color="magenta", weight=3]; 226 -> 2494[label="",style="dashed", color="magenta", weight=3]; 226 -> 2495[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 -> 2489[label="",style="dashed", color="red", weight=0]; 278[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];278 -> 2496[label="",style="dashed", color="magenta", weight=3]; 278 -> 2497[label="",style="dashed", color="magenta", weight=3]; 278 -> 2498[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 -> 2489[label="",style="dashed", color="red", weight=0]; 183[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="magenta"];183 -> 2499[label="",style="dashed", color="magenta", weight=3]; 183 -> 2500[label="",style="dashed", color="magenta", weight=3]; 183 -> 2501[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 -> 2489[label="",style="dashed", color="red", weight=0]; 191[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];191 -> 2502[label="",style="dashed", color="magenta", weight=3]; 191 -> 2503[label="",style="dashed", color="magenta", weight=3]; 191 -> 2504[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 -> 2489[label="",style="dashed", color="red", weight=0]; 307[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];307 -> 2505[label="",style="dashed", color="magenta", weight=3]; 307 -> 2506[label="",style="dashed", color="magenta", weight=3]; 307 -> 2507[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]; 2490[label="Just yvy300",fontsize=16,color="green",shape="box"];2491[label="Nothing",fontsize=16,color="green",shape="box"];2492[label="False",fontsize=16,color="green",shape="box"];2489[label="compare2 yvy490 yvy500 yvy157",fontsize=16,color="burlywood",shape="triangle"];4557[label="yvy157/False",fontsize=10,color="white",style="solid",shape="box"];2489 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 2545[label="",style="solid", color="burlywood", weight=3]; 4558[label="yvy157/True",fontsize=10,color="white",style="solid",shape="box"];2489 -> 4558[label="",style="solid", color="burlywood", weight=9]; 4558 -> 2546[label="",style="solid", color="burlywood", weight=3]; 169[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4559[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];169 -> 4559[label="",style="solid", color="burlywood", weight=9]; 4559 -> 231[label="",style="solid", color="burlywood", weight=3]; 4560[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];169 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 232[label="",style="solid", color="burlywood", weight=3]; 4561[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];169 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 233[label="",style="solid", color="burlywood", weight=3]; 170[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4562[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];170 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 234[label="",style="solid", color="burlywood", weight=3]; 4563[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];170 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 235[label="",style="solid", color="burlywood", weight=3]; 4564[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];170 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 236[label="",style="solid", color="burlywood", weight=3]; 171[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4565[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];171 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 237[label="",style="solid", color="burlywood", weight=3]; 4566[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];171 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 238[label="",style="solid", color="burlywood", weight=3]; 4567[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];171 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 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"];4568[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];230 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 284[label="",style="solid", color="burlywood", weight=3]; 4569[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];230 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 285[label="",style="solid", color="burlywood", weight=3]; 2493[label="Nothing",fontsize=16,color="green",shape="box"];2494[label="Just yvy400",fontsize=16,color="green",shape="box"];2495[label="False",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"];4570[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];282 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 322[label="",style="solid", color="burlywood", weight=3]; 4571[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];282 -> 4571[label="",style="solid", color="burlywood", weight=9]; 4571 -> 323[label="",style="solid", color="burlywood", weight=3]; 2496[label="Just yvy300",fontsize=16,color="green",shape="box"];2497[label="Just yvy400",fontsize=16,color="green",shape="box"];2498[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4572[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 2547[label="",style="solid", color="blue", weight=3]; 4573[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 2548[label="",style="solid", color="blue", weight=3]; 4574[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 2549[label="",style="solid", color="blue", weight=3]; 4575[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 2550[label="",style="solid", color="blue", weight=3]; 4576[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 2551[label="",style="solid", color="blue", weight=3]; 4577[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 2552[label="",style="solid", color="blue", weight=3]; 4578[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 2553[label="",style="solid", color="blue", weight=3]; 4579[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 2554[label="",style="solid", color="blue", weight=3]; 4580[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 2555[label="",style="solid", color="blue", weight=3]; 4581[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 2556[label="",style="solid", color="blue", weight=3]; 4582[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 2557[label="",style="solid", color="blue", weight=3]; 4583[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2558[label="",style="solid", color="blue", weight=3]; 4584[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2559[label="",style="solid", color="blue", weight=3]; 4585[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2560[label="",style="solid", color="blue", weight=3]; 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]; 2499[label="Just yvy300",fontsize=16,color="green",shape="box"];2500[label="Nothing",fontsize=16,color="green",shape="box"];2501[label="False",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"];4586[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];196 -> 4586[label="",style="solid", color="burlywood", weight=9]; 4586 -> 289[label="",style="solid", color="burlywood", weight=3]; 4587[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];196 -> 4587[label="",style="solid", color="burlywood", weight=9]; 4587 -> 290[label="",style="solid", color="burlywood", weight=3]; 2502[label="Nothing",fontsize=16,color="green",shape="box"];2503[label="Just yvy400",fontsize=16,color="green",shape="box"];2504[label="False",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"];4588[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];207 -> 4588[label="",style="solid", color="burlywood", weight=9]; 4588 -> 293[label="",style="solid", color="burlywood", weight=3]; 4589[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];207 -> 4589[label="",style="solid", color="burlywood", weight=9]; 4589 -> 294[label="",style="solid", color="burlywood", weight=3]; 2505[label="Just yvy300",fontsize=16,color="green",shape="box"];2506[label="Just yvy400",fontsize=16,color="green",shape="box"];2507[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];4590[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2561[label="",style="solid", color="blue", weight=3]; 4591[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2562[label="",style="solid", color="blue", weight=3]; 4592[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2563[label="",style="solid", color="blue", weight=3]; 4593[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2564[label="",style="solid", color="blue", weight=3]; 4594[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2565[label="",style="solid", color="blue", weight=3]; 4595[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2566[label="",style="solid", color="blue", weight=3]; 4596[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2567[label="",style="solid", color="blue", weight=3]; 4597[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2568[label="",style="solid", color="blue", weight=3]; 4598[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2569[label="",style="solid", color="blue", weight=3]; 4599[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2570[label="",style="solid", color="blue", weight=3]; 4600[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2571[label="",style="solid", color="blue", weight=3]; 4601[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2572[label="",style="solid", color="blue", weight=3]; 4602[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2573[label="",style="solid", color="blue", weight=3]; 4603[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2574[label="",style="solid", color="blue", weight=3]; 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 -> 121[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"];4604[label="yvy39/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 4604[label="",style="solid", color="burlywood", weight=9]; 4604 -> 370[label="",style="solid", color="burlywood", weight=3]; 4605[label="yvy39/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 4605[label="",style="solid", color="burlywood", weight=9]; 4605 -> 371[label="",style="solid", color="burlywood", weight=3]; 209 -> 121[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"];4606[label="yvy40/False",fontsize=10,color="white",style="solid",shape="box"];208 -> 4606[label="",style="solid", color="burlywood", weight=9]; 4606 -> 374[label="",style="solid", color="burlywood", weight=3]; 4607[label="yvy40/True",fontsize=10,color="white",style="solid",shape="box"];208 -> 4607[label="",style="solid", color="burlywood", weight=9]; 4607 -> 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"];4608[label="yvy59/False",fontsize=10,color="white",style="solid",shape="box"];376 -> 4608[label="",style="solid", color="burlywood", weight=9]; 4608 -> 380[label="",style="solid", color="burlywood", weight=3]; 4609[label="yvy59/True",fontsize=10,color="white",style="solid",shape="box"];376 -> 4609[label="",style="solid", color="burlywood", weight=9]; 4609 -> 381[label="",style="solid", color="burlywood", weight=3]; 2545[label="compare2 yvy490 yvy500 False",fontsize=16,color="black",shape="box"];2545 -> 2600[label="",style="solid", color="black", weight=3]; 2546[label="compare2 yvy490 yvy500 True",fontsize=16,color="black",shape="box"];2546 -> 2601[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"];4610[label="yvy60/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 395[label="",style="solid", color="burlywood", weight=3]; 4611[label="yvy60/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 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"];4612[label="yvy61/False",fontsize=10,color="white",style="solid",shape="box"];399 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 403[label="",style="solid", color="burlywood", weight=3]; 4613[label="yvy61/True",fontsize=10,color="white",style="solid",shape="box"];399 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 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]; 2547[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4614[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 2602[label="",style="solid", color="burlywood", weight=3]; 4615[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4615[label="",style="solid", color="burlywood", weight=9]; 4615 -> 2603[label="",style="solid", color="burlywood", weight=3]; 2548[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4616[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4616[label="",style="solid", color="burlywood", weight=9]; 4616 -> 2604[label="",style="solid", color="burlywood", weight=3]; 2549[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4617[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4617[label="",style="solid", color="burlywood", weight=9]; 4617 -> 2605[label="",style="solid", color="burlywood", weight=3]; 4618[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4618[label="",style="solid", color="burlywood", weight=9]; 4618 -> 2606[label="",style="solid", color="burlywood", weight=3]; 2550[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4619[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2550 -> 4619[label="",style="solid", color="burlywood", weight=9]; 4619 -> 2607[label="",style="solid", color="burlywood", weight=3]; 2551[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2551 -> 2608[label="",style="solid", color="black", weight=3]; 2552[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2552 -> 2609[label="",style="solid", color="black", weight=3]; 2553[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4620[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2553 -> 4620[label="",style="solid", color="burlywood", weight=9]; 4620 -> 2610[label="",style="solid", color="burlywood", weight=3]; 4621[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2553 -> 4621[label="",style="solid", color="burlywood", weight=9]; 4621 -> 2611[label="",style="solid", color="burlywood", weight=3]; 2554[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4622[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2554 -> 4622[label="",style="solid", color="burlywood", weight=9]; 4622 -> 2612[label="",style="solid", color="burlywood", weight=3]; 4623[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2554 -> 4623[label="",style="solid", color="burlywood", weight=9]; 4623 -> 2613[label="",style="solid", color="burlywood", weight=3]; 2555[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2555 -> 2614[label="",style="solid", color="black", weight=3]; 2556[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2556 -> 2615[label="",style="solid", color="black", weight=3]; 2557 -> 121[label="",style="dashed", color="red", weight=0]; 2557[label="yvy400 == yvy300",fontsize=16,color="magenta"];2558[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4624[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2558 -> 4624[label="",style="solid", color="burlywood", weight=9]; 4624 -> 2616[label="",style="solid", color="burlywood", weight=3]; 2559[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4625[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4625[label="",style="solid", color="burlywood", weight=9]; 4625 -> 2617[label="",style="solid", color="burlywood", weight=3]; 2560[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4626[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4626[label="",style="solid", color="burlywood", weight=9]; 4626 -> 2618[label="",style="solid", color="burlywood", 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"];4627[label="yvy62/False",fontsize=10,color="white",style="solid",shape="box"];426 -> 4627[label="",style="solid", color="burlywood", weight=9]; 4627 -> 430[label="",style="solid", color="burlywood", weight=3]; 4628[label="yvy62/True",fontsize=10,color="white",style="solid",shape="box"];426 -> 4628[label="",style="solid", color="burlywood", weight=9]; 4628 -> 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"];4629[label="yvy63/False",fontsize=10,color="white",style="solid",shape="box"];432 -> 4629[label="",style="solid", color="burlywood", weight=9]; 4629 -> 436[label="",style="solid", color="burlywood", weight=3]; 4630[label="yvy63/True",fontsize=10,color="white",style="solid",shape="box"];432 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 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"];4631[label="yvy64/False",fontsize=10,color="white",style="solid",shape="box"];439 -> 4631[label="",style="solid", color="burlywood", weight=9]; 4631 -> 443[label="",style="solid", color="burlywood", weight=3]; 4632[label="yvy64/True",fontsize=10,color="white",style="solid",shape="box"];439 -> 4632[label="",style="solid", color="burlywood", weight=9]; 4632 -> 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"];4633[label="yvy65/False",fontsize=10,color="white",style="solid",shape="box"];448 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 452[label="",style="solid", color="burlywood", weight=3]; 4634[label="yvy65/True",fontsize=10,color="white",style="solid",shape="box"];448 -> 4634[label="",style="solid", color="burlywood", weight=9]; 4634 -> 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]; 2561 -> 2547[label="",style="dashed", color="red", weight=0]; 2561[label="yvy400 == yvy300",fontsize=16,color="magenta"];2562 -> 2548[label="",style="dashed", color="red", weight=0]; 2562[label="yvy400 == yvy300",fontsize=16,color="magenta"];2563 -> 2549[label="",style="dashed", color="red", weight=0]; 2563[label="yvy400 == yvy300",fontsize=16,color="magenta"];2564 -> 2550[label="",style="dashed", color="red", weight=0]; 2564[label="yvy400 == yvy300",fontsize=16,color="magenta"];2565 -> 2551[label="",style="dashed", color="red", weight=0]; 2565[label="yvy400 == yvy300",fontsize=16,color="magenta"];2566 -> 2552[label="",style="dashed", color="red", weight=0]; 2566[label="yvy400 == yvy300",fontsize=16,color="magenta"];2567 -> 2553[label="",style="dashed", color="red", weight=0]; 2567[label="yvy400 == yvy300",fontsize=16,color="magenta"];2568 -> 2554[label="",style="dashed", color="red", weight=0]; 2568[label="yvy400 == yvy300",fontsize=16,color="magenta"];2569 -> 2555[label="",style="dashed", color="red", weight=0]; 2569[label="yvy400 == yvy300",fontsize=16,color="magenta"];2570 -> 2556[label="",style="dashed", color="red", weight=0]; 2570[label="yvy400 == yvy300",fontsize=16,color="magenta"];2571 -> 121[label="",style="dashed", color="red", weight=0]; 2571[label="yvy400 == yvy300",fontsize=16,color="magenta"];2572 -> 2558[label="",style="dashed", color="red", weight=0]; 2572[label="yvy400 == yvy300",fontsize=16,color="magenta"];2573 -> 2559[label="",style="dashed", color="red", weight=0]; 2573[label="yvy400 == yvy300",fontsize=16,color="magenta"];2574 -> 2560[label="",style="dashed", color="red", weight=0]; 2574[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"];4635[label="yvy66/False",fontsize=10,color="white",style="solid",shape="box"];456 -> 4635[label="",style="solid", color="burlywood", weight=9]; 4635 -> 460[label="",style="solid", color="burlywood", weight=3]; 4636[label="yvy66/True",fontsize=10,color="white",style="solid",shape="box"];456 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 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 -> 121[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"];4637[label="yvy52/False",fontsize=10,color="white",style="solid",shape="box"];354 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 464[label="",style="solid", color="burlywood", weight=3]; 4638[label="yvy52/True",fontsize=10,color="white",style="solid",shape="box"];354 -> 4638[label="",style="solid", color="burlywood", weight=9]; 4638 -> 465[label="",style="solid", color="burlywood", weight=3]; 363 -> 121[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"];4639[label="yvy53/False",fontsize=10,color="white",style="solid",shape="box"];362 -> 4639[label="",style="solid", color="burlywood", weight=9]; 4639 -> 468[label="",style="solid", color="burlywood", weight=3]; 4640[label="yvy53/True",fontsize=10,color="white",style="solid",shape="box"];362 -> 4640[label="",style="solid", color="burlywood", weight=9]; 4640 -> 469[label="",style="solid", color="burlywood", weight=3]; 365 -> 121[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"];4641[label="yvy55/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 4641[label="",style="solid", color="burlywood", weight=9]; 4641 -> 472[label="",style="solid", color="burlywood", weight=3]; 4642[label="yvy55/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 4642[label="",style="solid", color="burlywood", weight=9]; 4642 -> 473[label="",style="solid", color="burlywood", weight=3]; 367 -> 121[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"];4643[label="yvy57/False",fontsize=10,color="white",style="solid",shape="box"];366 -> 4643[label="",style="solid", color="burlywood", weight=9]; 4643 -> 476[label="",style="solid", color="burlywood", weight=3]; 4644[label="yvy57/True",fontsize=10,color="white",style="solid",shape="box"];366 -> 4644[label="",style="solid", color="burlywood", weight=9]; 4644 -> 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"];4645[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];369 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 478[label="",style="solid", color="burlywood", weight=3]; 4646[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 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"];4647[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];373 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 482[label="",style="solid", color="burlywood", weight=3]; 4648[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 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 -> 121[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]; 2600[label="compare1 yvy490 yvy500 (yvy490 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4649[label="yvy490/Nothing",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 2671[label="",style="solid", color="burlywood", weight=3]; 4650[label="yvy490/Just yvy4900",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 2672[label="",style="solid", color="burlywood", weight=3]; 2601[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 -> 121[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 -> 121[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]; 2602[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4651[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 2673[label="",style="solid", color="burlywood", weight=3]; 4652[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 2674[label="",style="solid", color="burlywood", weight=3]; 2603[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4653[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2603 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 2675[label="",style="solid", color="burlywood", weight=3]; 4654[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2603 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 2676[label="",style="solid", color="burlywood", weight=3]; 2604[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4655[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2604 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 2677[label="",style="solid", color="burlywood", weight=3]; 2605[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4656[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 2678[label="",style="solid", color="burlywood", weight=3]; 4657[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4657[label="",style="solid", color="burlywood", weight=9]; 4657 -> 2679[label="",style="solid", color="burlywood", weight=3]; 2606[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4658[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2606 -> 4658[label="",style="solid", color="burlywood", weight=9]; 4658 -> 2680[label="",style="solid", color="burlywood", weight=3]; 4659[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2606 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 2681[label="",style="solid", color="burlywood", weight=3]; 2607[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4660[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2607 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 2682[label="",style="solid", color="burlywood", weight=3]; 2608[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4661[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 2683[label="",style="solid", color="burlywood", weight=3]; 2609[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4662[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 2684[label="",style="solid", color="burlywood", weight=3]; 2610[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4663[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 2685[label="",style="solid", color="burlywood", weight=3]; 4664[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 2686[label="",style="solid", color="burlywood", weight=3]; 2611[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4665[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2611 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 2687[label="",style="solid", color="burlywood", weight=3]; 4666[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2611 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 2688[label="",style="solid", color="burlywood", weight=3]; 2612[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4667[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 2689[label="",style="solid", color="burlywood", weight=3]; 4668[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 2690[label="",style="solid", color="burlywood", weight=3]; 2613[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4669[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 2691[label="",style="solid", color="burlywood", weight=3]; 4670[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 2692[label="",style="solid", color="burlywood", weight=3]; 2614[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4671[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 2693[label="",style="solid", color="burlywood", weight=3]; 2615[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4672[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 2694[label="",style="solid", color="burlywood", weight=3]; 4673[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 2695[label="",style="solid", color="burlywood", weight=3]; 2616[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4674[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 2696[label="",style="solid", color="burlywood", weight=3]; 2617[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4675[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 2697[label="",style="solid", color="burlywood", weight=3]; 2618[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4676[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2618 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 2698[label="",style="solid", color="burlywood", weight=3]; 429 -> 121[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 -> 121[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 -> 121[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 -> 121[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 -> 121[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 -> 2489[label="",style="dashed", color="red", weight=0]; 463[label="compare2 Nothing Nothing True",fontsize=16,color="magenta"];463 -> 2517[label="",style="dashed", color="magenta", weight=3]; 463 -> 2518[label="",style="dashed", color="magenta", weight=3]; 463 -> 2519[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 -> 2489[label="",style="dashed", color="red", weight=0]; 467[label="compare2 Nothing (Just yvy500) False",fontsize=16,color="magenta"];467 -> 2520[label="",style="dashed", color="magenta", weight=3]; 467 -> 2521[label="",style="dashed", color="magenta", weight=3]; 467 -> 2522[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 -> 2489[label="",style="dashed", color="red", weight=0]; 471[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="magenta"];471 -> 2523[label="",style="dashed", color="magenta", weight=3]; 471 -> 2524[label="",style="dashed", color="magenta", weight=3]; 471 -> 2525[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 -> 2489[label="",style="dashed", color="red", weight=0]; 475[label="compare2 (Just yvy400) (Just yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];475 -> 2526[label="",style="dashed", color="magenta", weight=3]; 475 -> 2527[label="",style="dashed", color="magenta", weight=3]; 475 -> 2528[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]; 2671[label="compare1 Nothing yvy500 (Nothing <= yvy500)",fontsize=16,color="burlywood",shape="box"];4677[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2737[label="",style="solid", color="burlywood", weight=3]; 4678[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2738[label="",style="solid", color="burlywood", weight=3]; 2672[label="compare1 (Just yvy4900) yvy500 (Just yvy4900 <= yvy500)",fontsize=16,color="burlywood",shape="box"];4679[label="yvy500/Nothing",fontsize=10,color="white",style="solid",shape="box"];2672 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 2739[label="",style="solid", color="burlywood", weight=3]; 4680[label="yvy500/Just yvy5000",fontsize=10,color="white",style="solid",shape="box"];2672 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 2740[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"];2673[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2673 -> 2741[label="",style="solid", color="black", weight=3]; 2674[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];2674 -> 2742[label="",style="solid", color="black", weight=3]; 2675[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];2675 -> 2743[label="",style="solid", color="black", weight=3]; 2676[label="[] == []",fontsize=16,color="black",shape="box"];2676 -> 2744[label="",style="solid", color="black", weight=3]; 2677[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];2677 -> 2745[label="",style="solid", color="black", weight=3]; 2678[label="False == False",fontsize=16,color="black",shape="box"];2678 -> 2746[label="",style="solid", color="black", weight=3]; 2679[label="False == True",fontsize=16,color="black",shape="box"];2679 -> 2747[label="",style="solid", color="black", weight=3]; 2680[label="True == False",fontsize=16,color="black",shape="box"];2680 -> 2748[label="",style="solid", color="black", weight=3]; 2681[label="True == True",fontsize=16,color="black",shape="box"];2681 -> 2749[label="",style="solid", color="black", weight=3]; 2682[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];2682 -> 2750[label="",style="solid", color="black", weight=3]; 2683[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4681[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2683 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 2751[label="",style="solid", color="burlywood", weight=3]; 2684[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4682[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 2752[label="",style="solid", color="burlywood", weight=3]; 2685[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2685 -> 2753[label="",style="solid", color="black", weight=3]; 2686[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2686 -> 2754[label="",style="solid", color="black", weight=3]; 2687[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];2687 -> 2755[label="",style="solid", color="black", weight=3]; 2688[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];2688 -> 2756[label="",style="solid", color="black", weight=3]; 2689[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2689 -> 2757[label="",style="solid", color="black", weight=3]; 2690[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];2690 -> 2758[label="",style="solid", color="black", weight=3]; 2691[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];2691 -> 2759[label="",style="solid", color="black", weight=3]; 2692[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];2692 -> 2760[label="",style="solid", color="black", weight=3]; 2693[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4683[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];2693 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 2761[label="",style="solid", color="burlywood", weight=3]; 2694[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4684[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 2762[label="",style="solid", color="burlywood", weight=3]; 4685[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 2763[label="",style="solid", color="burlywood", weight=3]; 2695[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4686[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 2764[label="",style="solid", color="burlywood", weight=3]; 4687[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 2765[label="",style="solid", color="burlywood", weight=3]; 2696[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];2696 -> 2766[label="",style="solid", color="black", weight=3]; 2697[label="() == ()",fontsize=16,color="black",shape="box"];2697 -> 2767[label="",style="solid", color="black", weight=3]; 2698[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];2698 -> 2768[label="",style="solid", color="black", 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]; 2517[label="Nothing",fontsize=16,color="green",shape="box"];2518[label="Nothing",fontsize=16,color="green",shape="box"];2519[label="True",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]; 2520[label="Just yvy500",fontsize=16,color="green",shape="box"];2521[label="Nothing",fontsize=16,color="green",shape="box"];2522[label="False",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]; 2523[label="Nothing",fontsize=16,color="green",shape="box"];2524[label="Just yvy400",fontsize=16,color="green",shape="box"];2525[label="False",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]; 2526[label="Just yvy500",fontsize=16,color="green",shape="box"];2527[label="Just yvy400",fontsize=16,color="green",shape="box"];2528[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];4688[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4688[label="",style="solid", color="blue", weight=9]; 4688 -> 2575[label="",style="solid", color="blue", weight=3]; 4689[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4689[label="",style="solid", color="blue", weight=9]; 4689 -> 2576[label="",style="solid", color="blue", weight=3]; 4690[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 2577[label="",style="solid", color="blue", weight=3]; 4691[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 2578[label="",style="solid", color="blue", weight=3]; 4692[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 2579[label="",style="solid", color="blue", weight=3]; 4693[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4693[label="",style="solid", color="blue", weight=9]; 4693 -> 2580[label="",style="solid", color="blue", weight=3]; 4694[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4694[label="",style="solid", color="blue", weight=9]; 4694 -> 2581[label="",style="solid", color="blue", weight=3]; 4695[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4695[label="",style="solid", color="blue", weight=9]; 4695 -> 2582[label="",style="solid", color="blue", weight=3]; 4696[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4696[label="",style="solid", color="blue", weight=9]; 4696 -> 2583[label="",style="solid", color="blue", weight=3]; 4697[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4697[label="",style="solid", color="blue", weight=9]; 4697 -> 2584[label="",style="solid", color="blue", weight=3]; 4698[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4698[label="",style="solid", color="blue", weight=9]; 4698 -> 2585[label="",style="solid", color="blue", weight=3]; 4699[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4699[label="",style="solid", color="blue", weight=9]; 4699 -> 2586[label="",style="solid", color="blue", weight=3]; 4700[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4700[label="",style="solid", color="blue", weight=9]; 4700 -> 2587[label="",style="solid", color="blue", weight=3]; 4701[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4701[label="",style="solid", color="blue", weight=9]; 4701 -> 2588[label="",style="solid", color="blue", weight=3]; 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 -> 3306[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 -> 3307[label="",style="dashed", color="magenta", weight=3]; 714 -> 3308[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"];4702[label="yvy79/False",fontsize=10,color="white",style="solid",shape="box"];713 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 717[label="",style="solid", color="burlywood", weight=3]; 4703[label="yvy79/True",fontsize=10,color="white",style="solid",shape="box"];713 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 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 -> 3306[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 -> 3309[label="",style="dashed", color="magenta", weight=3]; 725 -> 3310[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"];4704[label="yvy80/False",fontsize=10,color="white",style="solid",shape="box"];724 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 728[label="",style="solid", color="burlywood", weight=3]; 4705[label="yvy80/True",fontsize=10,color="white",style="solid",shape="box"];724 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 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"];2737[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2737 -> 2802[label="",style="solid", color="black", weight=3]; 2738[label="compare1 Nothing (Just yvy5000) (Nothing <= Just yvy5000)",fontsize=16,color="black",shape="box"];2738 -> 2803[label="",style="solid", color="black", weight=3]; 2739[label="compare1 (Just yvy4900) Nothing (Just yvy4900 <= Nothing)",fontsize=16,color="black",shape="box"];2739 -> 2804[label="",style="solid", color="black", weight=3]; 2740[label="compare1 (Just yvy4900) (Just yvy5000) (Just yvy4900 <= Just yvy5000)",fontsize=16,color="black",shape="box"];2740 -> 2805[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"];2741 -> 2881[label="",style="dashed", color="red", weight=0]; 2741[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2741 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2742[label="False",fontsize=16,color="green",shape="box"];2743[label="False",fontsize=16,color="green",shape="box"];2744[label="True",fontsize=16,color="green",shape="box"];2745 -> 2881[label="",style="dashed", color="red", weight=0]; 2745[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2745 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2746[label="True",fontsize=16,color="green",shape="box"];2747[label="False",fontsize=16,color="green",shape="box"];2748[label="False",fontsize=16,color="green",shape="box"];2749[label="True",fontsize=16,color="green",shape="box"];2750 -> 2881[label="",style="dashed", color="red", weight=0]; 2750[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2750 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2751[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2751 -> 2817[label="",style="solid", color="black", weight=3]; 2752[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];2752 -> 2818[label="",style="solid", color="black", weight=3]; 2753[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4706[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4706[label="",style="solid", color="blue", weight=9]; 4706 -> 2819[label="",style="solid", color="blue", weight=3]; 4707[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4707[label="",style="solid", color="blue", weight=9]; 4707 -> 2820[label="",style="solid", color="blue", weight=3]; 4708[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4708[label="",style="solid", color="blue", weight=9]; 4708 -> 2821[label="",style="solid", color="blue", weight=3]; 4709[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4709[label="",style="solid", color="blue", weight=9]; 4709 -> 2822[label="",style="solid", color="blue", weight=3]; 4710[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4710[label="",style="solid", color="blue", weight=9]; 4710 -> 2823[label="",style="solid", color="blue", weight=3]; 4711[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4711[label="",style="solid", color="blue", weight=9]; 4711 -> 2824[label="",style="solid", color="blue", weight=3]; 4712[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4712[label="",style="solid", color="blue", weight=9]; 4712 -> 2825[label="",style="solid", color="blue", weight=3]; 4713[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4713[label="",style="solid", color="blue", weight=9]; 4713 -> 2826[label="",style="solid", color="blue", weight=3]; 4714[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4714[label="",style="solid", color="blue", weight=9]; 4714 -> 2827[label="",style="solid", color="blue", weight=3]; 4715[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4715[label="",style="solid", color="blue", weight=9]; 4715 -> 2828[label="",style="solid", color="blue", weight=3]; 4716[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4716[label="",style="solid", color="blue", weight=9]; 4716 -> 2829[label="",style="solid", color="blue", weight=3]; 4717[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4717[label="",style="solid", color="blue", weight=9]; 4717 -> 2830[label="",style="solid", color="blue", weight=3]; 4718[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4718[label="",style="solid", color="blue", weight=9]; 4718 -> 2831[label="",style="solid", color="blue", weight=3]; 4719[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4719[label="",style="solid", color="blue", weight=9]; 4719 -> 2832[label="",style="solid", color="blue", weight=3]; 2754[label="False",fontsize=16,color="green",shape="box"];2755[label="False",fontsize=16,color="green",shape="box"];2756[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4720[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4720[label="",style="solid", color="blue", weight=9]; 4720 -> 2833[label="",style="solid", color="blue", weight=3]; 4721[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4721[label="",style="solid", color="blue", weight=9]; 4721 -> 2834[label="",style="solid", color="blue", weight=3]; 4722[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4722[label="",style="solid", color="blue", weight=9]; 4722 -> 2835[label="",style="solid", color="blue", weight=3]; 4723[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4723[label="",style="solid", color="blue", weight=9]; 4723 -> 2836[label="",style="solid", color="blue", weight=3]; 4724[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4724[label="",style="solid", color="blue", weight=9]; 4724 -> 2837[label="",style="solid", color="blue", weight=3]; 4725[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4725[label="",style="solid", color="blue", weight=9]; 4725 -> 2838[label="",style="solid", color="blue", weight=3]; 4726[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4726[label="",style="solid", color="blue", weight=9]; 4726 -> 2839[label="",style="solid", color="blue", weight=3]; 4727[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4727[label="",style="solid", color="blue", weight=9]; 4727 -> 2840[label="",style="solid", color="blue", weight=3]; 4728[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4728[label="",style="solid", color="blue", weight=9]; 4728 -> 2841[label="",style="solid", color="blue", weight=3]; 4729[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4729[label="",style="solid", color="blue", weight=9]; 4729 -> 2842[label="",style="solid", color="blue", weight=3]; 4730[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2843[label="",style="solid", color="blue", weight=3]; 4731[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2844[label="",style="solid", color="blue", weight=3]; 4732[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2845[label="",style="solid", color="blue", weight=3]; 4733[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2846[label="",style="solid", color="blue", weight=3]; 2757[label="True",fontsize=16,color="green",shape="box"];2758[label="False",fontsize=16,color="green",shape="box"];2759[label="False",fontsize=16,color="green",shape="box"];2760[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4734[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2847[label="",style="solid", color="blue", weight=3]; 4735[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2848[label="",style="solid", color="blue", weight=3]; 4736[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2849[label="",style="solid", color="blue", weight=3]; 4737[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2850[label="",style="solid", color="blue", weight=3]; 4738[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 2851[label="",style="solid", color="blue", weight=3]; 4739[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 2852[label="",style="solid", color="blue", weight=3]; 4740[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 2853[label="",style="solid", color="blue", weight=3]; 4741[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 2854[label="",style="solid", color="blue", weight=3]; 4742[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 2855[label="",style="solid", color="blue", weight=3]; 4743[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 2856[label="",style="solid", color="blue", weight=3]; 4744[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4744[label="",style="solid", color="blue", weight=9]; 4744 -> 2857[label="",style="solid", color="blue", weight=3]; 4745[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4745[label="",style="solid", color="blue", weight=9]; 4745 -> 2858[label="",style="solid", color="blue", weight=3]; 4746[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4746[label="",style="solid", color="blue", weight=9]; 4746 -> 2859[label="",style="solid", color="blue", weight=3]; 4747[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 4747[label="",style="solid", color="blue", weight=9]; 4747 -> 2860[label="",style="solid", color="blue", weight=3]; 2761[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];2761 -> 2861[label="",style="solid", color="black", weight=3]; 2762[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4748[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2762 -> 4748[label="",style="solid", color="burlywood", weight=9]; 4748 -> 2862[label="",style="solid", color="burlywood", weight=3]; 4749[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2762 -> 4749[label="",style="solid", color="burlywood", weight=9]; 4749 -> 2863[label="",style="solid", color="burlywood", weight=3]; 2763[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4750[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4750[label="",style="solid", color="burlywood", weight=9]; 4750 -> 2864[label="",style="solid", color="burlywood", weight=3]; 4751[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2763 -> 4751[label="",style="solid", color="burlywood", weight=9]; 4751 -> 2865[label="",style="solid", color="burlywood", weight=3]; 2764[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4752[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4752[label="",style="solid", color="burlywood", weight=9]; 4752 -> 2866[label="",style="solid", color="burlywood", weight=3]; 4753[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2764 -> 4753[label="",style="solid", color="burlywood", weight=9]; 4753 -> 2867[label="",style="solid", color="burlywood", weight=3]; 2765[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4754[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4754[label="",style="solid", color="burlywood", weight=9]; 4754 -> 2868[label="",style="solid", color="burlywood", weight=3]; 4755[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4755[label="",style="solid", color="burlywood", weight=9]; 4755 -> 2869[label="",style="solid", color="burlywood", weight=3]; 2766 -> 2881[label="",style="dashed", color="red", weight=0]; 2766[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];2766 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2767[label="True",fontsize=16,color="green",shape="box"];2768 -> 2615[label="",style="dashed", color="red", weight=0]; 2768[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];2768 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2871[label="",style="dashed", color="magenta", weight=3]; 660[label="compare3 (Just yvy20) (Just yvy15)",fontsize=16,color="black",shape="box"];660 -> 823[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 -> 824[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 -> 825[label="",style="dashed", color="magenta", weight=3]; 664 -> 826[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 -> 827[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 -> 828[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 -> 829[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 -> 830[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 -> 831[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 -> 832[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 -> 833[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 -> 834[label="",style="dashed", color="magenta", weight=3]; 686 -> 835[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"];4756[label="yvy75/False",fontsize=10,color="white",style="solid",shape="box"];689 -> 4756[label="",style="solid", color="burlywood", weight=9]; 4756 -> 836[label="",style="solid", color="burlywood", weight=3]; 4757[label="yvy75/True",fontsize=10,color="white",style="solid",shape="box"];689 -> 4757[label="",style="solid", color="burlywood", weight=9]; 4757 -> 837[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 -> 838[label="",style="dashed", color="magenta", weight=3]; 594 -> 839[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 -> 840[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"];4758[label="yvy76/False",fontsize=10,color="white",style="solid",shape="box"];691 -> 4758[label="",style="solid", color="burlywood", weight=9]; 4758 -> 841[label="",style="solid", color="burlywood", weight=3]; 4759[label="yvy76/True",fontsize=10,color="white",style="solid",shape="box"];691 -> 4759[label="",style="solid", color="burlywood", weight=9]; 4759 -> 842[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 -> 843[label="",style="dashed", color="magenta", weight=3]; 596 -> 844[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"];4760[label="yvy77/False",fontsize=10,color="white",style="solid",shape="box"];693 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 845[label="",style="solid", color="burlywood", weight=3]; 4761[label="yvy77/True",fontsize=10,color="white",style="solid",shape="box"];693 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 846[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 -> 847[label="",style="dashed", color="magenta", weight=3]; 598 -> 848[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2547[label="",style="dashed", color="red", weight=0]; 2575[label="yvy400 == yvy500",fontsize=16,color="magenta"];2575 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2548[label="",style="dashed", color="red", weight=0]; 2576[label="yvy400 == yvy500",fontsize=16,color="magenta"];2576 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2549[label="",style="dashed", color="red", weight=0]; 2577[label="yvy400 == yvy500",fontsize=16,color="magenta"];2577 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2550[label="",style="dashed", color="red", weight=0]; 2578[label="yvy400 == yvy500",fontsize=16,color="magenta"];2578 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2551[label="",style="dashed", color="red", weight=0]; 2579[label="yvy400 == yvy500",fontsize=16,color="magenta"];2579 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2552[label="",style="dashed", color="red", weight=0]; 2580[label="yvy400 == yvy500",fontsize=16,color="magenta"];2580 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2553[label="",style="dashed", color="red", weight=0]; 2581[label="yvy400 == yvy500",fontsize=16,color="magenta"];2581 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2554[label="",style="dashed", color="red", weight=0]; 2582[label="yvy400 == yvy500",fontsize=16,color="magenta"];2582 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2555[label="",style="dashed", color="red", weight=0]; 2583[label="yvy400 == yvy500",fontsize=16,color="magenta"];2583 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2556[label="",style="dashed", color="red", weight=0]; 2584[label="yvy400 == yvy500",fontsize=16,color="magenta"];2584 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2585 -> 121[label="",style="dashed", color="red", weight=0]; 2585[label="yvy400 == yvy500",fontsize=16,color="magenta"];2585 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2558[label="",style="dashed", color="red", weight=0]; 2586[label="yvy400 == yvy500",fontsize=16,color="magenta"];2586 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2559[label="",style="dashed", color="red", weight=0]; 2587[label="yvy400 == yvy500",fontsize=16,color="magenta"];2587 -> 2631[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]; 710 -> 457[label="",style="dashed", color="red", weight=0]; 710[label="Just yvy400 > Just yvy500",fontsize=16,color="magenta"];710 -> 863[label="",style="dashed", color="magenta", weight=3]; 710 -> 864[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"];4762[label="yvy78/False",fontsize=10,color="white",style="solid",shape="box"];709 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 865[label="",style="solid", color="burlywood", weight=3]; 4763[label="yvy78/True",fontsize=10,color="white",style="solid",shape="box"];709 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 866[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 -> 867[label="",style="dashed", color="magenta", weight=3]; 600 -> 868[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 -> 869[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 -> 870[label="",style="solid", color="black", weight=3]; 3307[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3307 -> 3315[label="",style="solid", color="black", weight=3]; 3308 -> 986[label="",style="dashed", color="red", weight=0]; 3308[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3308 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3308 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3306[label="yvy179 < yvy178",fontsize=16,color="black",shape="triangle"];3306 -> 3318[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 -> 873[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 -> 874[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 -> 875[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 -> 876[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 -> 877[label="",style="solid", color="black", weight=3]; 3309[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3309 -> 3319[label="",style="solid", color="black", weight=3]; 3310 -> 986[label="",style="dashed", color="red", weight=0]; 3310[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3310 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3321[label="",style="dashed", color="magenta", 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 -> 880[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 -> 881[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 -> 2489[label="",style="dashed", color="red", weight=0]; 732[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];732 -> 2532[label="",style="dashed", color="magenta", weight=3]; 732 -> 2533[label="",style="dashed", color="magenta", weight=3]; 732 -> 2534[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"];2802[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2802 -> 2872[label="",style="solid", color="black", weight=3]; 2803[label="compare1 Nothing (Just yvy5000) True",fontsize=16,color="black",shape="box"];2803 -> 2873[label="",style="solid", color="black", weight=3]; 2804[label="compare1 (Just yvy4900) Nothing False",fontsize=16,color="black",shape="box"];2804 -> 2874[label="",style="solid", color="black", weight=3]; 2805 -> 2875[label="",style="dashed", color="red", weight=0]; 2805[label="compare1 (Just yvy4900) (Just yvy5000) (yvy4900 <= yvy5000)",fontsize=16,color="magenta"];2805 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2878[label="",style="dashed", color="magenta", weight=3]; 735 -> 2489[label="",style="dashed", color="red", weight=0]; 735[label="compare2 Nothing (Just yvy300) (Nothing == Just yvy300)",fontsize=16,color="magenta"];735 -> 2535[label="",style="dashed", color="magenta", weight=3]; 735 -> 2536[label="",style="dashed", color="magenta", weight=3]; 735 -> 2537[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 -> 2489[label="",style="dashed", color="red", weight=0]; 738[label="compare2 (Just yvy400) Nothing (Just yvy400 == Nothing)",fontsize=16,color="magenta"];738 -> 2538[label="",style="dashed", color="magenta", weight=3]; 738 -> 2539[label="",style="dashed", color="magenta", weight=3]; 738 -> 2540[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"];2882 -> 2547[label="",style="dashed", color="red", weight=0]; 2882[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2882 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2883[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4764[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4764[label="",style="solid", color="blue", weight=9]; 4764 -> 2896[label="",style="solid", color="blue", weight=3]; 4765[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4765[label="",style="solid", color="blue", weight=9]; 4765 -> 2897[label="",style="solid", color="blue", weight=3]; 4766[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4766[label="",style="solid", color="blue", weight=9]; 4766 -> 2898[label="",style="solid", color="blue", weight=3]; 4767[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4767[label="",style="solid", color="blue", weight=9]; 4767 -> 2899[label="",style="solid", color="blue", weight=3]; 4768[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4768[label="",style="solid", color="blue", weight=9]; 4768 -> 2900[label="",style="solid", color="blue", weight=3]; 4769[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4769[label="",style="solid", color="blue", weight=9]; 4769 -> 2901[label="",style="solid", color="blue", weight=3]; 4770[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4770[label="",style="solid", color="blue", weight=9]; 4770 -> 2902[label="",style="solid", color="blue", weight=3]; 4771[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4771[label="",style="solid", color="blue", weight=9]; 4771 -> 2903[label="",style="solid", color="blue", weight=3]; 4772[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4772[label="",style="solid", color="blue", weight=9]; 4772 -> 2904[label="",style="solid", color="blue", weight=3]; 4773[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4773[label="",style="solid", color="blue", weight=9]; 4773 -> 2905[label="",style="solid", color="blue", weight=3]; 4774[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4774[label="",style="solid", color="blue", weight=9]; 4774 -> 2906[label="",style="solid", color="blue", weight=3]; 4775[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4775[label="",style="solid", color="blue", weight=9]; 4775 -> 2907[label="",style="solid", color="blue", weight=3]; 4776[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4776[label="",style="solid", color="blue", weight=9]; 4776 -> 2908[label="",style="solid", color="blue", weight=3]; 4777[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2883 -> 4777[label="",style="solid", color="blue", weight=9]; 4777 -> 2909[label="",style="solid", color="blue", weight=3]; 2881[label="yvy174 && yvy175",fontsize=16,color="burlywood",shape="triangle"];4778[label="yvy174/False",fontsize=10,color="white",style="solid",shape="box"];2881 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 2910[label="",style="solid", color="burlywood", weight=3]; 4779[label="yvy174/True",fontsize=10,color="white",style="solid",shape="box"];2881 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 2911[label="",style="solid", color="burlywood", weight=3]; 2884 -> 2881[label="",style="dashed", color="red", weight=0]; 2884[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2884 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2885[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4780[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4780[label="",style="solid", color="blue", weight=9]; 4780 -> 2914[label="",style="solid", color="blue", weight=3]; 4781[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4781[label="",style="solid", color="blue", weight=9]; 4781 -> 2915[label="",style="solid", color="blue", weight=3]; 4782[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4782[label="",style="solid", color="blue", weight=9]; 4782 -> 2916[label="",style="solid", color="blue", weight=3]; 4783[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4783[label="",style="solid", color="blue", weight=9]; 4783 -> 2917[label="",style="solid", color="blue", weight=3]; 4784[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4784[label="",style="solid", color="blue", weight=9]; 4784 -> 2918[label="",style="solid", color="blue", weight=3]; 4785[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4785[label="",style="solid", color="blue", weight=9]; 4785 -> 2919[label="",style="solid", color="blue", weight=3]; 4786[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4786[label="",style="solid", color="blue", weight=9]; 4786 -> 2920[label="",style="solid", color="blue", weight=3]; 4787[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4787[label="",style="solid", color="blue", weight=9]; 4787 -> 2921[label="",style="solid", color="blue", weight=3]; 4788[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4788[label="",style="solid", color="blue", weight=9]; 4788 -> 2922[label="",style="solid", color="blue", weight=3]; 4789[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4789[label="",style="solid", color="blue", weight=9]; 4789 -> 2923[label="",style="solid", color="blue", weight=3]; 4790[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4790[label="",style="solid", color="blue", weight=9]; 4790 -> 2924[label="",style="solid", color="blue", weight=3]; 4791[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4791[label="",style="solid", color="blue", weight=9]; 4791 -> 2925[label="",style="solid", color="blue", weight=3]; 4792[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4792[label="",style="solid", color="blue", weight=9]; 4792 -> 2926[label="",style="solid", color="blue", weight=3]; 4793[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4793[label="",style="solid", color="blue", weight=9]; 4793 -> 2927[label="",style="solid", color="blue", weight=3]; 2886[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4794[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4794[label="",style="solid", color="blue", weight=9]; 4794 -> 2928[label="",style="solid", color="blue", weight=3]; 4795[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4795[label="",style="solid", color="blue", weight=9]; 4795 -> 2929[label="",style="solid", color="blue", weight=3]; 4796[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4796[label="",style="solid", color="blue", weight=9]; 4796 -> 2930[label="",style="solid", color="blue", weight=3]; 4797[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4797[label="",style="solid", color="blue", weight=9]; 4797 -> 2931[label="",style="solid", color="blue", weight=3]; 4798[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4798[label="",style="solid", color="blue", weight=9]; 4798 -> 2932[label="",style="solid", color="blue", weight=3]; 4799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4799[label="",style="solid", color="blue", weight=9]; 4799 -> 2933[label="",style="solid", color="blue", weight=3]; 4800[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4800[label="",style="solid", color="blue", weight=9]; 4800 -> 2934[label="",style="solid", color="blue", weight=3]; 4801[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4801[label="",style="solid", color="blue", weight=9]; 4801 -> 2935[label="",style="solid", color="blue", weight=3]; 4802[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4802[label="",style="solid", color="blue", weight=9]; 4802 -> 2936[label="",style="solid", color="blue", weight=3]; 4803[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4803[label="",style="solid", color="blue", weight=9]; 4803 -> 2937[label="",style="solid", color="blue", weight=3]; 4804[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 2938[label="",style="solid", color="blue", weight=3]; 4805[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 2939[label="",style="solid", color="blue", weight=3]; 4806[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 2940[label="",style="solid", color="blue", weight=3]; 4807[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 2941[label="",style="solid", color="blue", weight=3]; 2887[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4808[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 2942[label="",style="solid", color="blue", weight=3]; 4809[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 2943[label="",style="solid", color="blue", weight=3]; 4810[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 2944[label="",style="solid", color="blue", weight=3]; 4811[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 2945[label="",style="solid", color="blue", weight=3]; 4812[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 2946[label="",style="solid", color="blue", weight=3]; 4813[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 2947[label="",style="solid", color="blue", weight=3]; 4814[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2948[label="",style="solid", color="blue", weight=3]; 4815[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2949[label="",style="solid", color="blue", weight=3]; 4816[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4816[label="",style="solid", color="blue", weight=9]; 4816 -> 2950[label="",style="solid", color="blue", weight=3]; 4817[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4817[label="",style="solid", color="blue", weight=9]; 4817 -> 2951[label="",style="solid", color="blue", weight=3]; 4818[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2952[label="",style="solid", color="blue", weight=3]; 4819[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2953[label="",style="solid", color="blue", weight=3]; 4820[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2954[label="",style="solid", color="blue", weight=3]; 4821[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2955[label="",style="solid", color="blue", weight=3]; 2817 -> 2556[label="",style="dashed", color="red", weight=0]; 2817[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2817 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2818[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4822[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2818 -> 4822[label="",style="solid", color="burlywood", weight=9]; 4822 -> 2958[label="",style="solid", color="burlywood", weight=3]; 4823[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2818 -> 4823[label="",style="solid", color="burlywood", weight=9]; 4823 -> 2959[label="",style="solid", color="burlywood", weight=3]; 2819 -> 2547[label="",style="dashed", color="red", weight=0]; 2819[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2819 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2548[label="",style="dashed", color="red", weight=0]; 2820[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2820 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2549[label="",style="dashed", color="red", weight=0]; 2821[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2821 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2550[label="",style="dashed", color="red", weight=0]; 2822[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2822 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2551[label="",style="dashed", color="red", weight=0]; 2823[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2823 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2552[label="",style="dashed", color="red", weight=0]; 2824[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2824 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2553[label="",style="dashed", color="red", weight=0]; 2825[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2825 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2554[label="",style="dashed", color="red", weight=0]; 2826[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2826 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2555[label="",style="dashed", color="red", weight=0]; 2827[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2827 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2556[label="",style="dashed", color="red", weight=0]; 2828[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2828 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2829 -> 121[label="",style="dashed", color="red", weight=0]; 2829[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2829 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2558[label="",style="dashed", color="red", weight=0]; 2830[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2830 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2559[label="",style="dashed", color="red", weight=0]; 2831[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2831 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2560[label="",style="dashed", color="red", weight=0]; 2832[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2832 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2547[label="",style="dashed", color="red", weight=0]; 2833[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2833 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2548[label="",style="dashed", color="red", weight=0]; 2834[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2834 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2549[label="",style="dashed", color="red", weight=0]; 2835[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2835 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2550[label="",style="dashed", color="red", weight=0]; 2836[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2836 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2551[label="",style="dashed", color="red", weight=0]; 2837[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2837 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2552[label="",style="dashed", color="red", weight=0]; 2838[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2838 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2553[label="",style="dashed", color="red", weight=0]; 2839[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2839 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2839 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2554[label="",style="dashed", color="red", weight=0]; 2840[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2840 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2840 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2555[label="",style="dashed", color="red", weight=0]; 2841[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2841 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2841 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2556[label="",style="dashed", color="red", weight=0]; 2842[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2842 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2842 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2843 -> 121[label="",style="dashed", color="red", weight=0]; 2843[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2843 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2843 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2558[label="",style="dashed", color="red", weight=0]; 2844[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2844 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2844 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2559[label="",style="dashed", color="red", weight=0]; 2845[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2845 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2845 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2560[label="",style="dashed", color="red", weight=0]; 2846[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2846 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2846 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2547[label="",style="dashed", color="red", weight=0]; 2847[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2847 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2847 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2548[label="",style="dashed", color="red", weight=0]; 2848[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2848 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2848 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2549[label="",style="dashed", color="red", weight=0]; 2849[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2849 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2550[label="",style="dashed", color="red", weight=0]; 2850[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2850 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2850 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2551[label="",style="dashed", color="red", weight=0]; 2851[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2851 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2851 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2552[label="",style="dashed", color="red", weight=0]; 2852[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2852 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2852 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2553[label="",style="dashed", color="red", weight=0]; 2853[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2853 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2853 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2554[label="",style="dashed", color="red", weight=0]; 2854[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2854 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2854 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2555[label="",style="dashed", color="red", weight=0]; 2855[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2855 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2556[label="",style="dashed", color="red", weight=0]; 2856[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2856 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2856 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2857 -> 121[label="",style="dashed", color="red", weight=0]; 2857[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2857 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2857 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2558[label="",style="dashed", color="red", weight=0]; 2858[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2858 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2858 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2559[label="",style="dashed", color="red", weight=0]; 2859[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2859 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2859 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2560[label="",style="dashed", color="red", weight=0]; 2860[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2860 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2860 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2556[label="",style="dashed", color="red", weight=0]; 2861[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2861 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2861 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2862[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4824[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4824[label="",style="solid", color="burlywood", weight=9]; 4824 -> 3046[label="",style="solid", color="burlywood", weight=3]; 4825[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4825[label="",style="solid", color="burlywood", weight=9]; 4825 -> 3047[label="",style="solid", color="burlywood", weight=3]; 2863[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2863 -> 3048[label="",style="solid", color="black", weight=3]; 2864[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4826[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2864 -> 4826[label="",style="solid", color="burlywood", weight=9]; 4826 -> 3049[label="",style="solid", color="burlywood", weight=3]; 4827[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2864 -> 4827[label="",style="solid", color="burlywood", weight=9]; 4827 -> 3050[label="",style="solid", color="burlywood", weight=3]; 2865[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4828[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4828[label="",style="solid", color="burlywood", weight=9]; 4828 -> 3051[label="",style="solid", color="burlywood", weight=3]; 4829[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4829[label="",style="solid", color="burlywood", weight=9]; 4829 -> 3052[label="",style="solid", color="burlywood", weight=3]; 2866[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2866 -> 3053[label="",style="solid", color="black", weight=3]; 2867[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4830[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2867 -> 4830[label="",style="solid", color="burlywood", weight=9]; 4830 -> 3054[label="",style="solid", color="burlywood", weight=3]; 4831[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2867 -> 4831[label="",style="solid", color="burlywood", weight=9]; 4831 -> 3055[label="",style="solid", color="burlywood", weight=3]; 2868[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4832[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2868 -> 4832[label="",style="solid", color="burlywood", weight=9]; 4832 -> 3056[label="",style="solid", color="burlywood", weight=3]; 4833[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2868 -> 4833[label="",style="solid", color="burlywood", weight=9]; 4833 -> 3057[label="",style="solid", color="burlywood", weight=3]; 2869[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4834[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2869 -> 4834[label="",style="solid", color="burlywood", weight=9]; 4834 -> 3058[label="",style="solid", color="burlywood", weight=3]; 4835[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2869 -> 4835[label="",style="solid", color="burlywood", weight=9]; 4835 -> 3059[label="",style="solid", color="burlywood", weight=3]; 2888[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4836[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 3060[label="",style="solid", color="blue", weight=3]; 4837[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4837[label="",style="solid", color="blue", weight=9]; 4837 -> 3061[label="",style="solid", color="blue", weight=3]; 2889[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4838[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 4838[label="",style="solid", color="blue", weight=9]; 4838 -> 3062[label="",style="solid", color="blue", weight=3]; 4839[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2889 -> 4839[label="",style="solid", color="blue", weight=9]; 4839 -> 3063[label="",style="solid", color="blue", weight=3]; 2870[label="yvy3000",fontsize=16,color="green",shape="box"];2871[label="yvy4000",fontsize=16,color="green",shape="box"];823 -> 2489[label="",style="dashed", color="red", weight=0]; 823[label="compare2 (Just yvy20) (Just yvy15) (Just yvy20 == Just yvy15)",fontsize=16,color="magenta"];823 -> 2541[label="",style="dashed", color="magenta", weight=3]; 823 -> 2542[label="",style="dashed", color="magenta", weight=3]; 823 -> 2543[label="",style="dashed", color="magenta", weight=3]; 824[label="yvy19",fontsize=16,color="green",shape="box"];825[label="yvy18",fontsize=16,color="green",shape="box"];826[label="yvy20",fontsize=16,color="green",shape="box"];827[label="yvy33",fontsize=16,color="green",shape="box"];828[label="yvy34",fontsize=16,color="green",shape="box"];829[label="yvy33",fontsize=16,color="green",shape="box"];830[label="yvy34",fontsize=16,color="green",shape="box"];831[label="yvy33",fontsize=16,color="green",shape="box"];832[label="yvy34",fontsize=16,color="green",shape="box"];833[label="yvy33",fontsize=16,color="green",shape="box"];834[label="yvy35",fontsize=16,color="green",shape="box"];835[label="yvy34",fontsize=16,color="green",shape="box"];836[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];836 -> 1126[label="",style="solid", color="black", weight=3]; 837[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];837 -> 1127[label="",style="solid", color="black", weight=3]; 838[label="Nothing",fontsize=16,color="green",shape="box"];839[label="yvy53",fontsize=16,color="green",shape="box"];840[label="yvy500",fontsize=16,color="green",shape="box"];841[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 False",fontsize=16,color="black",shape="box"];841 -> 1128[label="",style="solid", color="black", weight=3]; 842[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];842 -> 1129[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="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];845 -> 1130[label="",style="solid", color="black", weight=3]; 846[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];846 -> 1131[label="",style="solid", color="black", weight=3]; 847[label="Just yvy400",fontsize=16,color="green",shape="box"];848[label="yvy53",fontsize=16,color="green",shape="box"];2619[label="yvy500",fontsize=16,color="green",shape="box"];2620[label="yvy500",fontsize=16,color="green",shape="box"];2621[label="yvy500",fontsize=16,color="green",shape="box"];2622[label="yvy500",fontsize=16,color="green",shape="box"];2623[label="yvy500",fontsize=16,color="green",shape="box"];2624[label="yvy500",fontsize=16,color="green",shape="box"];2625[label="yvy500",fontsize=16,color="green",shape="box"];2626[label="yvy500",fontsize=16,color="green",shape="box"];2627[label="yvy500",fontsize=16,color="green",shape="box"];2628[label="yvy500",fontsize=16,color="green",shape="box"];2629[label="yvy500",fontsize=16,color="green",shape="box"];2630[label="yvy500",fontsize=16,color="green",shape="box"];2631[label="yvy500",fontsize=16,color="green",shape="box"];2632[label="yvy500",fontsize=16,color="green",shape="box"];863[label="yvy400",fontsize=16,color="green",shape="box"];864[label="yvy500",fontsize=16,color="green",shape="box"];865[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 False",fontsize=16,color="black",shape="box"];865 -> 1132[label="",style="solid", color="black", weight=3]; 866[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];866 -> 1133[label="",style="solid", color="black", weight=3]; 867[label="Just yvy400",fontsize=16,color="green",shape="box"];868[label="yvy53",fontsize=16,color="green",shape="box"];869[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"];869 -> 1134[label="",style="solid", color="black", weight=3]; 870[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4840[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];870 -> 4840[label="",style="solid", color="burlywood", weight=9]; 4840 -> 1135[label="",style="solid", color="burlywood", weight=3]; 4841[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];870 -> 4841[label="",style="solid", color="burlywood", weight=9]; 4841 -> 1136[label="",style="solid", color="burlywood", weight=3]; 3315 -> 2420[label="",style="dashed", color="red", weight=0]; 3315[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3315 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3316 -> 1547[label="",style="dashed", color="red", weight=0]; 3316[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3317 -> 1548[label="",style="dashed", color="red", weight=0]; 3317[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 -> 1301[label="",style="solid", color="black", weight=3]; 3318 -> 121[label="",style="dashed", color="red", weight=0]; 3318[label="compare yvy179 yvy178 == LT",fontsize=16,color="magenta"];3318 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3403[label="",style="dashed", color="magenta", weight=3]; 873[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];873 -> 1138[label="",style="solid", color="black", weight=3]; 874 -> 590[label="",style="dashed", color="red", weight=0]; 874[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];874 -> 1139[label="",style="dashed", color="magenta", weight=3]; 874 -> 1140[label="",style="dashed", color="magenta", weight=3]; 874 -> 1141[label="",style="dashed", color="magenta", weight=3]; 874 -> 1142[label="",style="dashed", color="magenta", weight=3]; 875 -> 1403[label="",style="dashed", color="red", weight=0]; 875[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"];875 -> 1404[label="",style="dashed", color="magenta", weight=3]; 876[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"];876 -> 1144[label="",style="solid", color="black", weight=3]; 877[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];4842[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];877 -> 4842[label="",style="solid", color="burlywood", weight=9]; 4842 -> 1145[label="",style="solid", color="burlywood", weight=3]; 4843[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];877 -> 4843[label="",style="solid", color="burlywood", weight=9]; 4843 -> 1146[label="",style="solid", color="burlywood", weight=3]; 3319 -> 2420[label="",style="dashed", color="red", weight=0]; 3319[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3319 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3320 -> 1547[label="",style="dashed", color="red", weight=0]; 3320[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3321 -> 1575[label="",style="dashed", color="red", weight=0]; 3321[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];880[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"];880 -> 1148[label="",style="solid", color="black", weight=3]; 881 -> 590[label="",style="dashed", color="red", weight=0]; 881[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];881 -> 1149[label="",style="dashed", color="magenta", weight=3]; 881 -> 1150[label="",style="dashed", color="magenta", weight=3]; 881 -> 1151[label="",style="dashed", color="magenta", weight=3]; 881 -> 1152[label="",style="dashed", color="magenta", weight=3]; 2532[label="Nothing",fontsize=16,color="green",shape="box"];2533[label="Nothing",fontsize=16,color="green",shape="box"];2534[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2534 -> 2589[label="",style="solid", color="black", weight=3]; 2872[label="LT",fontsize=16,color="green",shape="box"];2873[label="LT",fontsize=16,color="green",shape="box"];2874[label="compare0 (Just yvy4900) Nothing otherwise",fontsize=16,color="black",shape="box"];2874 -> 3064[label="",style="solid", color="black", weight=3]; 2876[label="yvy4900",fontsize=16,color="green",shape="box"];2877[label="yvy5000",fontsize=16,color="green",shape="box"];2878[label="yvy4900 <= yvy5000",fontsize=16,color="blue",shape="box"];4844[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4844[label="",style="solid", color="blue", weight=9]; 4844 -> 3065[label="",style="solid", color="blue", weight=3]; 4845[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4845[label="",style="solid", color="blue", weight=9]; 4845 -> 3066[label="",style="solid", color="blue", weight=3]; 4846[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4846[label="",style="solid", color="blue", weight=9]; 4846 -> 3067[label="",style="solid", color="blue", weight=3]; 4847[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4847[label="",style="solid", color="blue", weight=9]; 4847 -> 3068[label="",style="solid", color="blue", weight=3]; 4848[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4848[label="",style="solid", color="blue", weight=9]; 4848 -> 3069[label="",style="solid", color="blue", weight=3]; 4849[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4849[label="",style="solid", color="blue", weight=9]; 4849 -> 3070[label="",style="solid", color="blue", weight=3]; 4850[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4850[label="",style="solid", color="blue", weight=9]; 4850 -> 3071[label="",style="solid", color="blue", weight=3]; 4851[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4851[label="",style="solid", color="blue", weight=9]; 4851 -> 3072[label="",style="solid", color="blue", weight=3]; 4852[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4852[label="",style="solid", color="blue", weight=9]; 4852 -> 3073[label="",style="solid", color="blue", weight=3]; 4853[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4853[label="",style="solid", color="blue", weight=9]; 4853 -> 3074[label="",style="solid", color="blue", weight=3]; 4854[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4854[label="",style="solid", color="blue", weight=9]; 4854 -> 3075[label="",style="solid", color="blue", weight=3]; 4855[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4855[label="",style="solid", color="blue", weight=9]; 4855 -> 3076[label="",style="solid", color="blue", weight=3]; 4856[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4856[label="",style="solid", color="blue", weight=9]; 4856 -> 3077[label="",style="solid", color="blue", weight=3]; 4857[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4857[label="",style="solid", color="blue", weight=9]; 4857 -> 3078[label="",style="solid", color="blue", weight=3]; 2875[label="compare1 (Just yvy168) (Just yvy169) yvy170",fontsize=16,color="burlywood",shape="triangle"];4858[label="yvy170/False",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4858[label="",style="solid", color="burlywood", weight=9]; 4858 -> 3079[label="",style="solid", color="burlywood", weight=3]; 4859[label="yvy170/True",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4859[label="",style="solid", color="burlywood", weight=9]; 4859 -> 3080[label="",style="solid", color="burlywood", weight=3]; 2535[label="Just yvy300",fontsize=16,color="green",shape="box"];2536[label="Nothing",fontsize=16,color="green",shape="box"];2537[label="Nothing == Just yvy300",fontsize=16,color="black",shape="box"];2537 -> 2590[label="",style="solid", color="black", weight=3]; 2538[label="Nothing",fontsize=16,color="green",shape="box"];2539[label="Just yvy400",fontsize=16,color="green",shape="box"];2540[label="Just yvy400 == Nothing",fontsize=16,color="black",shape="box"];2540 -> 2591[label="",style="solid", color="black", weight=3]; 2894[label="yvy3001",fontsize=16,color="green",shape="box"];2895[label="yvy4001",fontsize=16,color="green",shape="box"];2896 -> 2547[label="",style="dashed", color="red", weight=0]; 2896[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2896 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2897 -> 2548[label="",style="dashed", color="red", weight=0]; 2897[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2897 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2897 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2898 -> 2549[label="",style="dashed", color="red", weight=0]; 2898[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2898 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2898 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2899 -> 2550[label="",style="dashed", color="red", weight=0]; 2899[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2899 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2899 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2900 -> 2551[label="",style="dashed", color="red", weight=0]; 2900[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2900 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2901 -> 2552[label="",style="dashed", color="red", weight=0]; 2901[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2901 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2553[label="",style="dashed", color="red", weight=0]; 2902[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2902 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2902 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2903 -> 2554[label="",style="dashed", color="red", weight=0]; 2903[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2903 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2903 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2904 -> 2555[label="",style="dashed", color="red", weight=0]; 2904[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2904 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2905 -> 2556[label="",style="dashed", color="red", weight=0]; 2905[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2905 -> 3124[label="",style="dashed", color="magenta", weight=3]; 2905 -> 3125[label="",style="dashed", color="magenta", weight=3]; 2906 -> 121[label="",style="dashed", color="red", weight=0]; 2906[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2906 -> 3126[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3127[label="",style="dashed", color="magenta", weight=3]; 2907 -> 2558[label="",style="dashed", color="red", weight=0]; 2907[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2907 -> 3128[label="",style="dashed", color="magenta", weight=3]; 2907 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2908 -> 2559[label="",style="dashed", color="red", weight=0]; 2908[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2908 -> 3130[label="",style="dashed", color="magenta", weight=3]; 2908 -> 3131[label="",style="dashed", color="magenta", weight=3]; 2909 -> 2560[label="",style="dashed", color="red", weight=0]; 2909[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2909 -> 3132[label="",style="dashed", color="magenta", weight=3]; 2909 -> 3133[label="",style="dashed", color="magenta", weight=3]; 2910[label="False && yvy175",fontsize=16,color="black",shape="box"];2910 -> 3134[label="",style="solid", color="black", weight=3]; 2911[label="True && yvy175",fontsize=16,color="black",shape="box"];2911 -> 3135[label="",style="solid", color="black", weight=3]; 2912[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4860[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4860[label="",style="solid", color="blue", weight=9]; 4860 -> 3136[label="",style="solid", color="blue", weight=3]; 4861[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4861[label="",style="solid", color="blue", weight=9]; 4861 -> 3137[label="",style="solid", color="blue", weight=3]; 4862[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4862[label="",style="solid", color="blue", weight=9]; 4862 -> 3138[label="",style="solid", color="blue", weight=3]; 4863[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4863[label="",style="solid", color="blue", weight=9]; 4863 -> 3139[label="",style="solid", color="blue", weight=3]; 4864[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4864[label="",style="solid", color="blue", weight=9]; 4864 -> 3140[label="",style="solid", color="blue", weight=3]; 4865[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4865[label="",style="solid", color="blue", weight=9]; 4865 -> 3141[label="",style="solid", color="blue", weight=3]; 4866[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4866[label="",style="solid", color="blue", weight=9]; 4866 -> 3142[label="",style="solid", color="blue", weight=3]; 4867[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4867[label="",style="solid", color="blue", weight=9]; 4867 -> 3143[label="",style="solid", color="blue", weight=3]; 4868[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4868[label="",style="solid", color="blue", weight=9]; 4868 -> 3144[label="",style="solid", color="blue", weight=3]; 4869[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4869[label="",style="solid", color="blue", weight=9]; 4869 -> 3145[label="",style="solid", color="blue", weight=3]; 4870[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4870[label="",style="solid", color="blue", weight=9]; 4870 -> 3146[label="",style="solid", color="blue", weight=3]; 4871[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4871[label="",style="solid", color="blue", weight=9]; 4871 -> 3147[label="",style="solid", color="blue", weight=3]; 4872[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4872[label="",style="solid", color="blue", weight=9]; 4872 -> 3148[label="",style="solid", color="blue", weight=3]; 4873[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4873[label="",style="solid", color="blue", weight=9]; 4873 -> 3149[label="",style="solid", color="blue", weight=3]; 2913[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4874[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4874[label="",style="solid", color="blue", weight=9]; 4874 -> 3150[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"];2913 -> 4875[label="",style="solid", color="blue", weight=9]; 4875 -> 3151[label="",style="solid", color="blue", weight=3]; 4876[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4876[label="",style="solid", color="blue", weight=9]; 4876 -> 3152[label="",style="solid", color="blue", weight=3]; 4877[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4877[label="",style="solid", color="blue", weight=9]; 4877 -> 3153[label="",style="solid", color="blue", weight=3]; 4878[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4878[label="",style="solid", color="blue", weight=9]; 4878 -> 3154[label="",style="solid", color="blue", weight=3]; 4879[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4879[label="",style="solid", color="blue", weight=9]; 4879 -> 3155[label="",style="solid", color="blue", weight=3]; 4880[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4880[label="",style="solid", color="blue", weight=9]; 4880 -> 3156[label="",style="solid", color="blue", weight=3]; 4881[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 3157[label="",style="solid", color="blue", weight=3]; 4882[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 3158[label="",style="solid", color="blue", weight=3]; 4883[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 3159[label="",style="solid", color="blue", weight=3]; 4884[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 3160[label="",style="solid", color="blue", weight=3]; 4885[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 3161[label="",style="solid", color="blue", weight=3]; 4886[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 3162[label="",style="solid", color="blue", weight=3]; 4887[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 3163[label="",style="solid", color="blue", weight=3]; 2914 -> 2547[label="",style="dashed", color="red", weight=0]; 2914[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2914 -> 3164[label="",style="dashed", color="magenta", weight=3]; 2914 -> 3165[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2548[label="",style="dashed", color="red", weight=0]; 2915[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2915 -> 3166[label="",style="dashed", color="magenta", weight=3]; 2915 -> 3167[label="",style="dashed", color="magenta", weight=3]; 2916 -> 2549[label="",style="dashed", color="red", weight=0]; 2916[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2916 -> 3168[label="",style="dashed", color="magenta", weight=3]; 2916 -> 3169[label="",style="dashed", color="magenta", weight=3]; 2917 -> 2550[label="",style="dashed", color="red", weight=0]; 2917[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2917 -> 3170[label="",style="dashed", color="magenta", weight=3]; 2917 -> 3171[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2551[label="",style="dashed", color="red", weight=0]; 2918[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2918 -> 3172[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3173[label="",style="dashed", color="magenta", weight=3]; 2919 -> 2552[label="",style="dashed", color="red", weight=0]; 2919[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2919 -> 3174[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3175[label="",style="dashed", color="magenta", weight=3]; 2920 -> 2553[label="",style="dashed", color="red", weight=0]; 2920[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2920 -> 3176[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3177[label="",style="dashed", color="magenta", weight=3]; 2921 -> 2554[label="",style="dashed", color="red", weight=0]; 2921[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2921 -> 3178[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3179[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2555[label="",style="dashed", color="red", weight=0]; 2922[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2922 -> 3180[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3181[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2556[label="",style="dashed", color="red", weight=0]; 2923[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2923 -> 3182[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3183[label="",style="dashed", color="magenta", weight=3]; 2924 -> 121[label="",style="dashed", color="red", weight=0]; 2924[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2924 -> 3184[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3185[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2558[label="",style="dashed", color="red", weight=0]; 2925[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2925 -> 3186[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3187[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2559[label="",style="dashed", color="red", weight=0]; 2926[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2926 -> 3188[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3189[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2560[label="",style="dashed", color="red", weight=0]; 2927[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2927 -> 3190[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3191[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2547[label="",style="dashed", color="red", weight=0]; 2928[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2928 -> 3192[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3193[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2548[label="",style="dashed", color="red", weight=0]; 2929[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2929 -> 3194[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3195[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2549[label="",style="dashed", color="red", weight=0]; 2930[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2930 -> 3196[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3197[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2550[label="",style="dashed", color="red", weight=0]; 2931[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2931 -> 3198[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3199[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2551[label="",style="dashed", color="red", weight=0]; 2932[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2932 -> 3200[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3201[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2552[label="",style="dashed", color="red", weight=0]; 2933[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2933 -> 3202[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3203[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2553[label="",style="dashed", color="red", weight=0]; 2934[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2934 -> 3204[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3205[label="",style="dashed", color="magenta", weight=3]; 2935 -> 2554[label="",style="dashed", color="red", weight=0]; 2935[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2935 -> 3206[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3207[label="",style="dashed", color="magenta", weight=3]; 2936 -> 2555[label="",style="dashed", color="red", weight=0]; 2936[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2936 -> 3208[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3209[label="",style="dashed", color="magenta", weight=3]; 2937 -> 2556[label="",style="dashed", color="red", weight=0]; 2937[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2937 -> 3210[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3211[label="",style="dashed", color="magenta", weight=3]; 2938 -> 121[label="",style="dashed", color="red", weight=0]; 2938[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2938 -> 3212[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3213[label="",style="dashed", color="magenta", weight=3]; 2939 -> 2558[label="",style="dashed", color="red", weight=0]; 2939[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2939 -> 3214[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3215[label="",style="dashed", color="magenta", weight=3]; 2940 -> 2559[label="",style="dashed", color="red", weight=0]; 2940[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2940 -> 3216[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3217[label="",style="dashed", color="magenta", weight=3]; 2941 -> 2560[label="",style="dashed", color="red", weight=0]; 2941[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2941 -> 3218[label="",style="dashed", color="magenta", weight=3]; 2941 -> 3219[label="",style="dashed", color="magenta", weight=3]; 2942 -> 2547[label="",style="dashed", color="red", weight=0]; 2942[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2942 -> 3220[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3221[label="",style="dashed", color="magenta", weight=3]; 2943 -> 2548[label="",style="dashed", color="red", weight=0]; 2943[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2943 -> 3222[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3223[label="",style="dashed", color="magenta", weight=3]; 2944 -> 2549[label="",style="dashed", color="red", weight=0]; 2944[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2944 -> 3224[label="",style="dashed", color="magenta", weight=3]; 2944 -> 3225[label="",style="dashed", color="magenta", weight=3]; 2945 -> 2550[label="",style="dashed", color="red", weight=0]; 2945[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2945 -> 3226[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3227[label="",style="dashed", color="magenta", weight=3]; 2946 -> 2551[label="",style="dashed", color="red", weight=0]; 2946[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2946 -> 3228[label="",style="dashed", color="magenta", weight=3]; 2946 -> 3229[label="",style="dashed", color="magenta", weight=3]; 2947 -> 2552[label="",style="dashed", color="red", weight=0]; 2947[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2947 -> 3230[label="",style="dashed", color="magenta", weight=3]; 2947 -> 3231[label="",style="dashed", color="magenta", weight=3]; 2948 -> 2553[label="",style="dashed", color="red", weight=0]; 2948[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2948 -> 3232[label="",style="dashed", color="magenta", weight=3]; 2948 -> 3233[label="",style="dashed", color="magenta", weight=3]; 2949 -> 2554[label="",style="dashed", color="red", weight=0]; 2949[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2949 -> 3234[label="",style="dashed", color="magenta", weight=3]; 2949 -> 3235[label="",style="dashed", color="magenta", weight=3]; 2950 -> 2555[label="",style="dashed", color="red", weight=0]; 2950[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2950 -> 3236[label="",style="dashed", color="magenta", weight=3]; 2950 -> 3237[label="",style="dashed", color="magenta", weight=3]; 2951 -> 2556[label="",style="dashed", color="red", weight=0]; 2951[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2951 -> 3238[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3239[label="",style="dashed", color="magenta", weight=3]; 2952 -> 121[label="",style="dashed", color="red", weight=0]; 2952[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2952 -> 3240[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3241[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2558[label="",style="dashed", color="red", weight=0]; 2953[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2953 -> 3242[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3243[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2559[label="",style="dashed", color="red", weight=0]; 2954[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2954 -> 3244[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3245[label="",style="dashed", color="magenta", weight=3]; 2955 -> 2560[label="",style="dashed", color="red", weight=0]; 2955[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2955 -> 3246[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3247[label="",style="dashed", color="magenta", weight=3]; 2956 -> 986[label="",style="dashed", color="red", weight=0]; 2956[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2957 -> 986[label="",style="dashed", color="red", weight=0]; 2957[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2957 -> 3248[label="",style="dashed", color="magenta", weight=3]; 2957 -> 3249[label="",style="dashed", color="magenta", weight=3]; 2958[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4888[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2958 -> 4888[label="",style="solid", color="burlywood", weight=9]; 4888 -> 3250[label="",style="solid", color="burlywood", weight=3]; 4889[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2958 -> 4889[label="",style="solid", color="burlywood", weight=9]; 4889 -> 3251[label="",style="solid", color="burlywood", weight=3]; 2959[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4890[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4890[label="",style="solid", color="burlywood", weight=9]; 4890 -> 3252[label="",style="solid", color="burlywood", weight=3]; 4891[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2959 -> 4891[label="",style="solid", color="burlywood", weight=9]; 4891 -> 3253[label="",style="solid", color="burlywood", weight=3]; 2960[label="yvy3000",fontsize=16,color="green",shape="box"];2961[label="yvy4000",fontsize=16,color="green",shape="box"];2962[label="yvy3000",fontsize=16,color="green",shape="box"];2963[label="yvy4000",fontsize=16,color="green",shape="box"];2964[label="yvy3000",fontsize=16,color="green",shape="box"];2965[label="yvy4000",fontsize=16,color="green",shape="box"];2966[label="yvy3000",fontsize=16,color="green",shape="box"];2967[label="yvy4000",fontsize=16,color="green",shape="box"];2968[label="yvy3000",fontsize=16,color="green",shape="box"];2969[label="yvy4000",fontsize=16,color="green",shape="box"];2970[label="yvy3000",fontsize=16,color="green",shape="box"];2971[label="yvy4000",fontsize=16,color="green",shape="box"];2972[label="yvy3000",fontsize=16,color="green",shape="box"];2973[label="yvy4000",fontsize=16,color="green",shape="box"];2974[label="yvy3000",fontsize=16,color="green",shape="box"];2975[label="yvy4000",fontsize=16,color="green",shape="box"];2976[label="yvy3000",fontsize=16,color="green",shape="box"];2977[label="yvy4000",fontsize=16,color="green",shape="box"];2978[label="yvy3000",fontsize=16,color="green",shape="box"];2979[label="yvy4000",fontsize=16,color="green",shape="box"];2980[label="yvy3000",fontsize=16,color="green",shape="box"];2981[label="yvy4000",fontsize=16,color="green",shape="box"];2982[label="yvy3000",fontsize=16,color="green",shape="box"];2983[label="yvy4000",fontsize=16,color="green",shape="box"];2984[label="yvy3000",fontsize=16,color="green",shape="box"];2985[label="yvy4000",fontsize=16,color="green",shape="box"];2986[label="yvy3000",fontsize=16,color="green",shape="box"];2987[label="yvy4000",fontsize=16,color="green",shape="box"];2988[label="yvy3000",fontsize=16,color="green",shape="box"];2989[label="yvy4000",fontsize=16,color="green",shape="box"];2990[label="yvy3000",fontsize=16,color="green",shape="box"];2991[label="yvy4000",fontsize=16,color="green",shape="box"];2992[label="yvy3000",fontsize=16,color="green",shape="box"];2993[label="yvy4000",fontsize=16,color="green",shape="box"];2994[label="yvy3000",fontsize=16,color="green",shape="box"];2995[label="yvy4000",fontsize=16,color="green",shape="box"];2996[label="yvy3000",fontsize=16,color="green",shape="box"];2997[label="yvy4000",fontsize=16,color="green",shape="box"];2998[label="yvy3000",fontsize=16,color="green",shape="box"];2999[label="yvy4000",fontsize=16,color="green",shape="box"];3000[label="yvy3000",fontsize=16,color="green",shape="box"];3001[label="yvy4000",fontsize=16,color="green",shape="box"];3002[label="yvy3000",fontsize=16,color="green",shape="box"];3003[label="yvy4000",fontsize=16,color="green",shape="box"];3004[label="yvy3000",fontsize=16,color="green",shape="box"];3005[label="yvy4000",fontsize=16,color="green",shape="box"];3006[label="yvy3000",fontsize=16,color="green",shape="box"];3007[label="yvy4000",fontsize=16,color="green",shape="box"];3008[label="yvy3000",fontsize=16,color="green",shape="box"];3009[label="yvy4000",fontsize=16,color="green",shape="box"];3010[label="yvy3000",fontsize=16,color="green",shape="box"];3011[label="yvy4000",fontsize=16,color="green",shape="box"];3012[label="yvy3000",fontsize=16,color="green",shape="box"];3013[label="yvy4000",fontsize=16,color="green",shape="box"];3014[label="yvy3000",fontsize=16,color="green",shape="box"];3015[label="yvy4000",fontsize=16,color="green",shape="box"];3016[label="yvy3000",fontsize=16,color="green",shape="box"];3017[label="yvy4000",fontsize=16,color="green",shape="box"];3018[label="yvy3000",fontsize=16,color="green",shape="box"];3019[label="yvy4000",fontsize=16,color="green",shape="box"];3020[label="yvy3000",fontsize=16,color="green",shape="box"];3021[label="yvy4000",fontsize=16,color="green",shape="box"];3022[label="yvy3000",fontsize=16,color="green",shape="box"];3023[label="yvy4000",fontsize=16,color="green",shape="box"];3024[label="yvy3000",fontsize=16,color="green",shape="box"];3025[label="yvy4000",fontsize=16,color="green",shape="box"];3026[label="yvy3000",fontsize=16,color="green",shape="box"];3027[label="yvy4000",fontsize=16,color="green",shape="box"];3028[label="yvy3000",fontsize=16,color="green",shape="box"];3029[label="yvy4000",fontsize=16,color="green",shape="box"];3030[label="yvy3000",fontsize=16,color="green",shape="box"];3031[label="yvy4000",fontsize=16,color="green",shape="box"];3032[label="yvy3000",fontsize=16,color="green",shape="box"];3033[label="yvy4000",fontsize=16,color="green",shape="box"];3034[label="yvy3000",fontsize=16,color="green",shape="box"];3035[label="yvy4000",fontsize=16,color="green",shape="box"];3036[label="yvy3000",fontsize=16,color="green",shape="box"];3037[label="yvy4000",fontsize=16,color="green",shape="box"];3038[label="yvy3000",fontsize=16,color="green",shape="box"];3039[label="yvy4000",fontsize=16,color="green",shape="box"];3040[label="yvy3000",fontsize=16,color="green",shape="box"];3041[label="yvy4000",fontsize=16,color="green",shape="box"];3042[label="yvy3000",fontsize=16,color="green",shape="box"];3043[label="yvy4000",fontsize=16,color="green",shape="box"];3044 -> 986[label="",style="dashed", color="red", weight=0]; 3044[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3044 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3045 -> 986[label="",style="dashed", color="red", weight=0]; 3045[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3045 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3046[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3046 -> 3258[label="",style="solid", color="black", weight=3]; 3047[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3047 -> 3259[label="",style="solid", color="black", weight=3]; 3048[label="False",fontsize=16,color="green",shape="box"];3049[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3049 -> 3260[label="",style="solid", color="black", weight=3]; 3050[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3050 -> 3261[label="",style="solid", color="black", weight=3]; 3051[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3051 -> 3262[label="",style="solid", color="black", weight=3]; 3052[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3052 -> 3263[label="",style="solid", color="black", weight=3]; 3053[label="False",fontsize=16,color="green",shape="box"];3054[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3054 -> 3264[label="",style="solid", color="black", weight=3]; 3055[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3055 -> 3265[label="",style="solid", color="black", weight=3]; 3056[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3056 -> 3266[label="",style="solid", color="black", weight=3]; 3057[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3057 -> 3267[label="",style="solid", color="black", weight=3]; 3058[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3058 -> 3268[label="",style="solid", color="black", weight=3]; 3059[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3059 -> 3269[label="",style="solid", color="black", weight=3]; 3060 -> 2556[label="",style="dashed", color="red", weight=0]; 3060[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3060 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3061 -> 2560[label="",style="dashed", color="red", weight=0]; 3061[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3061 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3062 -> 2556[label="",style="dashed", color="red", weight=0]; 3062[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3062 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3063 -> 2560[label="",style="dashed", color="red", weight=0]; 3063[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3063 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3277[label="",style="dashed", color="magenta", weight=3]; 2541[label="Just yvy15",fontsize=16,color="green",shape="box"];2542[label="Just yvy20",fontsize=16,color="green",shape="box"];2543[label="Just yvy20 == Just yvy15",fontsize=16,color="black",shape="box"];2543 -> 2592[label="",style="solid", color="black", weight=3]; 1126[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1126 -> 1372[label="",style="solid", color="black", weight=3]; 1127 -> 590[label="",style="dashed", color="red", weight=0]; 1127[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1127 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1128[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 otherwise",fontsize=16,color="black",shape="box"];1128 -> 1376[label="",style="solid", color="black", weight=3]; 1129 -> 590[label="",style="dashed", color="red", weight=0]; 1129[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41)",fontsize=16,color="magenta"];1129 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1130[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1130 -> 1380[label="",style="solid", color="black", weight=3]; 1131 -> 590[label="",style="dashed", color="red", weight=0]; 1131[label="FiniteMap.mkBalBranch Nothing yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1131 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1132[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1132 -> 1384[label="",style="solid", color="black", weight=3]; 1133 -> 590[label="",style="dashed", color="red", weight=0]; 1133[label="FiniteMap.mkBalBranch (Just yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41)",fontsize=16,color="magenta"];1133 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1134[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"];1134 -> 1388[label="",style="solid", color="black", weight=3]; 1135[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4892[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1135 -> 4892[label="",style="solid", color="burlywood", weight=9]; 4892 -> 1389[label="",style="solid", color="burlywood", weight=3]; 4893[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1135 -> 4893[label="",style="solid", color="burlywood", weight=9]; 4893 -> 1390[label="",style="solid", color="burlywood", weight=3]; 1136[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4894[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4894[label="",style="solid", color="burlywood", weight=9]; 4894 -> 1391[label="",style="solid", color="burlywood", weight=3]; 4895[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4895[label="",style="solid", color="burlywood", weight=9]; 4895 -> 1392[label="",style="solid", color="burlywood", weight=3]; 3401[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];2420[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4896[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4896[label="",style="solid", color="burlywood", weight=9]; 4896 -> 2442[label="",style="solid", color="burlywood", weight=3]; 4897[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4897[label="",style="solid", color="burlywood", weight=9]; 4897 -> 2443[label="",style="solid", color="burlywood", weight=3]; 1547[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1547 -> 1684[label="",style="solid", color="black", weight=3]; 1548[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1548 -> 1685[label="",style="solid", color="black", weight=3]; 1301[label="primMulInt yvy4001 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4898[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];1301 -> 4898[label="",style="solid", color="burlywood", weight=9]; 4898 -> 1490[label="",style="solid", color="burlywood", weight=3]; 4899[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];1301 -> 4899[label="",style="solid", color="burlywood", weight=9]; 4899 -> 1491[label="",style="solid", color="burlywood", weight=3]; 3402[label="LT",fontsize=16,color="green",shape="box"];3403 -> 1631[label="",style="dashed", color="red", weight=0]; 3403[label="compare yvy179 yvy178",fontsize=16,color="magenta"];3403 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3403 -> 3420[label="",style="dashed", color="magenta", weight=3]; 1138[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"];1138 -> 1400[label="",style="solid", color="black", weight=3]; 1139[label="yvy60",fontsize=16,color="green",shape="box"];1140 -> 12[label="",style="dashed", color="red", weight=0]; 1140[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1140 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1141[label="yvy63",fontsize=16,color="green",shape="box"];1142[label="yvy61",fontsize=16,color="green",shape="box"];1404 -> 3306[label="",style="dashed", color="red", weight=0]; 1404[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];1404 -> 3311[label="",style="dashed", color="magenta", weight=3]; 1404 -> 3312[label="",style="dashed", color="magenta", weight=3]; 1403[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy93",fontsize=16,color="burlywood",shape="triangle"];4900[label="yvy93/False",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4900[label="",style="solid", color="burlywood", weight=9]; 4900 -> 1408[label="",style="solid", color="burlywood", weight=3]; 4901[label="yvy93/True",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4901[label="",style="solid", color="burlywood", weight=9]; 4901 -> 1409[label="",style="solid", color="burlywood", weight=3]; 1144[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"];1144 -> 1410[label="",style="solid", color="black", weight=3]; 1145[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];4902[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1145 -> 4902[label="",style="solid", color="burlywood", weight=9]; 4902 -> 1411[label="",style="solid", color="burlywood", weight=3]; 4903[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1145 -> 4903[label="",style="solid", color="burlywood", weight=9]; 4903 -> 1412[label="",style="solid", color="burlywood", weight=3]; 1146[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];4904[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1146 -> 4904[label="",style="solid", color="burlywood", weight=9]; 4904 -> 1413[label="",style="solid", color="burlywood", weight=3]; 4905[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1146 -> 4905[label="",style="solid", color="burlywood", weight=9]; 4905 -> 1414[label="",style="solid", color="burlywood", weight=3]; 3404[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];1575[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1575 -> 1697[label="",style="solid", color="black", weight=3]; 1148[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"];1148 -> 1417[label="",style="solid", color="black", weight=3]; 1149[label="yvy60",fontsize=16,color="green",shape="box"];1150 -> 12[label="",style="dashed", color="red", weight=0]; 1150[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1150 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1151[label="yvy63",fontsize=16,color="green",shape="box"];1152[label="yvy61",fontsize=16,color="green",shape="box"];2589[label="True",fontsize=16,color="green",shape="box"];3064[label="compare0 (Just yvy4900) Nothing True",fontsize=16,color="black",shape="box"];3064 -> 3278[label="",style="solid", color="black", weight=3]; 3065[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3065 -> 3279[label="",style="solid", color="black", weight=3]; 3066[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4906[label="yvy4900/False",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4906[label="",style="solid", color="burlywood", weight=9]; 4906 -> 3280[label="",style="solid", color="burlywood", weight=3]; 4907[label="yvy4900/True",fontsize=10,color="white",style="solid",shape="box"];3066 -> 4907[label="",style="solid", color="burlywood", weight=9]; 4907 -> 3281[label="",style="solid", color="burlywood", weight=3]; 3067[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3067 -> 3282[label="",style="solid", color="black", weight=3]; 3068[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3068 -> 3283[label="",style="solid", color="black", weight=3]; 3069[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3069 -> 3284[label="",style="solid", color="black", weight=3]; 3070[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3070 -> 3285[label="",style="solid", color="black", weight=3]; 3071[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3071 -> 3286[label="",style="solid", color="black", weight=3]; 3072[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4908[label="yvy4900/(yvy49000,yvy49001,yvy49002)",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4908[label="",style="solid", color="burlywood", weight=9]; 4908 -> 3287[label="",style="solid", color="burlywood", weight=3]; 3073[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4909[label="yvy4900/Nothing",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4909[label="",style="solid", color="burlywood", weight=9]; 4909 -> 3288[label="",style="solid", color="burlywood", weight=3]; 4910[label="yvy4900/Just yvy49000",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4910[label="",style="solid", color="burlywood", weight=9]; 4910 -> 3289[label="",style="solid", color="burlywood", weight=3]; 3074[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4911[label="yvy4900/LT",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4911[label="",style="solid", color="burlywood", weight=9]; 4911 -> 3290[label="",style="solid", color="burlywood", weight=3]; 4912[label="yvy4900/EQ",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4912[label="",style="solid", color="burlywood", weight=9]; 4912 -> 3291[label="",style="solid", color="burlywood", weight=3]; 4913[label="yvy4900/GT",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4913[label="",style="solid", color="burlywood", weight=9]; 4913 -> 3292[label="",style="solid", color="burlywood", weight=3]; 3075[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3075 -> 3293[label="",style="solid", color="black", weight=3]; 3076[label="yvy4900 <= yvy5000",fontsize=16,color="black",shape="triangle"];3076 -> 3294[label="",style="solid", color="black", weight=3]; 3077[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4914[label="yvy4900/Left yvy49000",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4914[label="",style="solid", color="burlywood", weight=9]; 4914 -> 3295[label="",style="solid", color="burlywood", weight=3]; 4915[label="yvy4900/Right yvy49000",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 3296[label="",style="solid", color="burlywood", weight=3]; 3078[label="yvy4900 <= yvy5000",fontsize=16,color="burlywood",shape="triangle"];4916[label="yvy4900/(yvy49000,yvy49001)",fontsize=10,color="white",style="solid",shape="box"];3078 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 3297[label="",style="solid", color="burlywood", weight=3]; 3079[label="compare1 (Just yvy168) (Just yvy169) False",fontsize=16,color="black",shape="box"];3079 -> 3298[label="",style="solid", color="black", weight=3]; 3080[label="compare1 (Just yvy168) (Just yvy169) True",fontsize=16,color="black",shape="box"];3080 -> 3299[label="",style="solid", color="black", weight=3]; 2590[label="False",fontsize=16,color="green",shape="box"];2591[label="False",fontsize=16,color="green",shape="box"];3106[label="yvy3000",fontsize=16,color="green",shape="box"];3107[label="yvy4000",fontsize=16,color="green",shape="box"];3108[label="yvy3000",fontsize=16,color="green",shape="box"];3109[label="yvy4000",fontsize=16,color="green",shape="box"];3110[label="yvy3000",fontsize=16,color="green",shape="box"];3111[label="yvy4000",fontsize=16,color="green",shape="box"];3112[label="yvy3000",fontsize=16,color="green",shape="box"];3113[label="yvy4000",fontsize=16,color="green",shape="box"];3114[label="yvy3000",fontsize=16,color="green",shape="box"];3115[label="yvy4000",fontsize=16,color="green",shape="box"];3116[label="yvy3000",fontsize=16,color="green",shape="box"];3117[label="yvy4000",fontsize=16,color="green",shape="box"];3118[label="yvy3000",fontsize=16,color="green",shape="box"];3119[label="yvy4000",fontsize=16,color="green",shape="box"];3120[label="yvy3000",fontsize=16,color="green",shape="box"];3121[label="yvy4000",fontsize=16,color="green",shape="box"];3122[label="yvy3000",fontsize=16,color="green",shape="box"];3123[label="yvy4000",fontsize=16,color="green",shape="box"];3124[label="yvy3000",fontsize=16,color="green",shape="box"];3125[label="yvy4000",fontsize=16,color="green",shape="box"];3126[label="yvy3000",fontsize=16,color="green",shape="box"];3127[label="yvy4000",fontsize=16,color="green",shape="box"];3128[label="yvy3000",fontsize=16,color="green",shape="box"];3129[label="yvy4000",fontsize=16,color="green",shape="box"];3130[label="yvy3000",fontsize=16,color="green",shape="box"];3131[label="yvy4000",fontsize=16,color="green",shape="box"];3132[label="yvy3000",fontsize=16,color="green",shape="box"];3133[label="yvy4000",fontsize=16,color="green",shape="box"];3134[label="False",fontsize=16,color="green",shape="box"];3135[label="yvy175",fontsize=16,color="green",shape="box"];3136 -> 2547[label="",style="dashed", color="red", weight=0]; 3136[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3136 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3137 -> 2548[label="",style="dashed", color="red", weight=0]; 3137[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3137 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3138 -> 2549[label="",style="dashed", color="red", weight=0]; 3138[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3138 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3139 -> 2550[label="",style="dashed", color="red", weight=0]; 3139[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3139 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3140 -> 2551[label="",style="dashed", color="red", weight=0]; 3140[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3140 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3141 -> 2552[label="",style="dashed", color="red", weight=0]; 3141[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3141 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3142 -> 2553[label="",style="dashed", color="red", weight=0]; 3142[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3142 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3143 -> 2554[label="",style="dashed", color="red", weight=0]; 3143[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3143 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3144 -> 2555[label="",style="dashed", color="red", weight=0]; 3144[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3144 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3145 -> 2556[label="",style="dashed", color="red", weight=0]; 3145[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3145 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3146 -> 121[label="",style="dashed", color="red", weight=0]; 3146[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3146 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3147 -> 2558[label="",style="dashed", color="red", weight=0]; 3147[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3147 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3148 -> 2559[label="",style="dashed", color="red", weight=0]; 3148[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3148 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3149 -> 2560[label="",style="dashed", color="red", weight=0]; 3149[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3149 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3150 -> 2547[label="",style="dashed", color="red", weight=0]; 3150[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3150 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3151 -> 2548[label="",style="dashed", color="red", weight=0]; 3151[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3151 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3152 -> 2549[label="",style="dashed", color="red", weight=0]; 3152[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3152 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3153 -> 2550[label="",style="dashed", color="red", weight=0]; 3153[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3153 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3154 -> 2551[label="",style="dashed", color="red", weight=0]; 3154[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3154 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3155 -> 2552[label="",style="dashed", color="red", weight=0]; 3155[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3155 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2553[label="",style="dashed", color="red", weight=0]; 3156[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3156 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3157 -> 2554[label="",style="dashed", color="red", weight=0]; 3157[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3157 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3158 -> 2555[label="",style="dashed", color="red", weight=0]; 3158[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3158 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3159 -> 2556[label="",style="dashed", color="red", weight=0]; 3159[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3159 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3160 -> 121[label="",style="dashed", color="red", weight=0]; 3160[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3160 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2558[label="",style="dashed", color="red", weight=0]; 3161[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3161 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3162 -> 2559[label="",style="dashed", color="red", weight=0]; 3162[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3162 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3163 -> 2560[label="",style="dashed", color="red", weight=0]; 3163[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3163 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3164[label="yvy3000",fontsize=16,color="green",shape="box"];3165[label="yvy4000",fontsize=16,color="green",shape="box"];3166[label="yvy3000",fontsize=16,color="green",shape="box"];3167[label="yvy4000",fontsize=16,color="green",shape="box"];3168[label="yvy3000",fontsize=16,color="green",shape="box"];3169[label="yvy4000",fontsize=16,color="green",shape="box"];3170[label="yvy3000",fontsize=16,color="green",shape="box"];3171[label="yvy4000",fontsize=16,color="green",shape="box"];3172[label="yvy3000",fontsize=16,color="green",shape="box"];3173[label="yvy4000",fontsize=16,color="green",shape="box"];3174[label="yvy3000",fontsize=16,color="green",shape="box"];3175[label="yvy4000",fontsize=16,color="green",shape="box"];3176[label="yvy3000",fontsize=16,color="green",shape="box"];3177[label="yvy4000",fontsize=16,color="green",shape="box"];3178[label="yvy3000",fontsize=16,color="green",shape="box"];3179[label="yvy4000",fontsize=16,color="green",shape="box"];3180[label="yvy3000",fontsize=16,color="green",shape="box"];3181[label="yvy4000",fontsize=16,color="green",shape="box"];3182[label="yvy3000",fontsize=16,color="green",shape="box"];3183[label="yvy4000",fontsize=16,color="green",shape="box"];3184[label="yvy3000",fontsize=16,color="green",shape="box"];3185[label="yvy4000",fontsize=16,color="green",shape="box"];3186[label="yvy3000",fontsize=16,color="green",shape="box"];3187[label="yvy4000",fontsize=16,color="green",shape="box"];3188[label="yvy3000",fontsize=16,color="green",shape="box"];3189[label="yvy4000",fontsize=16,color="green",shape="box"];3190[label="yvy3000",fontsize=16,color="green",shape="box"];3191[label="yvy4000",fontsize=16,color="green",shape="box"];3192[label="yvy3001",fontsize=16,color="green",shape="box"];3193[label="yvy4001",fontsize=16,color="green",shape="box"];3194[label="yvy3001",fontsize=16,color="green",shape="box"];3195[label="yvy4001",fontsize=16,color="green",shape="box"];3196[label="yvy3001",fontsize=16,color="green",shape="box"];3197[label="yvy4001",fontsize=16,color="green",shape="box"];3198[label="yvy3001",fontsize=16,color="green",shape="box"];3199[label="yvy4001",fontsize=16,color="green",shape="box"];3200[label="yvy3001",fontsize=16,color="green",shape="box"];3201[label="yvy4001",fontsize=16,color="green",shape="box"];3202[label="yvy3001",fontsize=16,color="green",shape="box"];3203[label="yvy4001",fontsize=16,color="green",shape="box"];3204[label="yvy3001",fontsize=16,color="green",shape="box"];3205[label="yvy4001",fontsize=16,color="green",shape="box"];3206[label="yvy3001",fontsize=16,color="green",shape="box"];3207[label="yvy4001",fontsize=16,color="green",shape="box"];3208[label="yvy3001",fontsize=16,color="green",shape="box"];3209[label="yvy4001",fontsize=16,color="green",shape="box"];3210[label="yvy3001",fontsize=16,color="green",shape="box"];3211[label="yvy4001",fontsize=16,color="green",shape="box"];3212[label="yvy3001",fontsize=16,color="green",shape="box"];3213[label="yvy4001",fontsize=16,color="green",shape="box"];3214[label="yvy3001",fontsize=16,color="green",shape="box"];3215[label="yvy4001",fontsize=16,color="green",shape="box"];3216[label="yvy3001",fontsize=16,color="green",shape="box"];3217[label="yvy4001",fontsize=16,color="green",shape="box"];3218[label="yvy3001",fontsize=16,color="green",shape="box"];3219[label="yvy4001",fontsize=16,color="green",shape="box"];3220[label="yvy3000",fontsize=16,color="green",shape="box"];3221[label="yvy4000",fontsize=16,color="green",shape="box"];3222[label="yvy3000",fontsize=16,color="green",shape="box"];3223[label="yvy4000",fontsize=16,color="green",shape="box"];3224[label="yvy3000",fontsize=16,color="green",shape="box"];3225[label="yvy4000",fontsize=16,color="green",shape="box"];3226[label="yvy3000",fontsize=16,color="green",shape="box"];3227[label="yvy4000",fontsize=16,color="green",shape="box"];3228[label="yvy3000",fontsize=16,color="green",shape="box"];3229[label="yvy4000",fontsize=16,color="green",shape="box"];3230[label="yvy3000",fontsize=16,color="green",shape="box"];3231[label="yvy4000",fontsize=16,color="green",shape="box"];3232[label="yvy3000",fontsize=16,color="green",shape="box"];3233[label="yvy4000",fontsize=16,color="green",shape="box"];3234[label="yvy3000",fontsize=16,color="green",shape="box"];3235[label="yvy4000",fontsize=16,color="green",shape="box"];3236[label="yvy3000",fontsize=16,color="green",shape="box"];3237[label="yvy4000",fontsize=16,color="green",shape="box"];3238[label="yvy3000",fontsize=16,color="green",shape="box"];3239[label="yvy4000",fontsize=16,color="green",shape="box"];3240[label="yvy3000",fontsize=16,color="green",shape="box"];3241[label="yvy4000",fontsize=16,color="green",shape="box"];3242[label="yvy3000",fontsize=16,color="green",shape="box"];3243[label="yvy4000",fontsize=16,color="green",shape="box"];3244[label="yvy3000",fontsize=16,color="green",shape="box"];3245[label="yvy4000",fontsize=16,color="green",shape="box"];3246[label="yvy3000",fontsize=16,color="green",shape="box"];3247[label="yvy4000",fontsize=16,color="green",shape="box"];3248[label="yvy4000",fontsize=16,color="green",shape="box"];3249[label="yvy3001",fontsize=16,color="green",shape="box"];3250[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3250 -> 3378[label="",style="solid", color="black", weight=3]; 3251[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3251 -> 3379[label="",style="solid", color="black", weight=3]; 3252[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3252 -> 3380[label="",style="solid", color="black", weight=3]; 3253[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3253 -> 3381[label="",style="solid", color="black", weight=3]; 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="yvy3001",fontsize=16,color="green",shape="box"];3258 -> 2818[label="",style="dashed", color="red", weight=0]; 3258[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3258 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3258 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3259[label="False",fontsize=16,color="green",shape="box"];3260[label="False",fontsize=16,color="green",shape="box"];3261[label="True",fontsize=16,color="green",shape="box"];3262[label="False",fontsize=16,color="green",shape="box"];3263[label="True",fontsize=16,color="green",shape="box"];3264 -> 2818[label="",style="dashed", color="red", weight=0]; 3264[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3264 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3264 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3265[label="False",fontsize=16,color="green",shape="box"];3266[label="False",fontsize=16,color="green",shape="box"];3267[label="True",fontsize=16,color="green",shape="box"];3268[label="False",fontsize=16,color="green",shape="box"];3269[label="True",fontsize=16,color="green",shape="box"];3270[label="yvy3001",fontsize=16,color="green",shape="box"];3271[label="yvy4001",fontsize=16,color="green",shape="box"];3272[label="yvy3001",fontsize=16,color="green",shape="box"];3273[label="yvy4001",fontsize=16,color="green",shape="box"];3274[label="yvy3000",fontsize=16,color="green",shape="box"];3275[label="yvy4000",fontsize=16,color="green",shape="box"];3276[label="yvy3000",fontsize=16,color="green",shape="box"];3277[label="yvy4000",fontsize=16,color="green",shape="box"];2592[label="yvy20 == yvy15",fontsize=16,color="blue",shape="box"];4917[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4917[label="",style="solid", color="blue", weight=9]; 4917 -> 2633[label="",style="solid", color="blue", weight=3]; 4918[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4918[label="",style="solid", color="blue", weight=9]; 4918 -> 2634[label="",style="solid", color="blue", weight=3]; 4919[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4919[label="",style="solid", color="blue", weight=9]; 4919 -> 2635[label="",style="solid", color="blue", weight=3]; 4920[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4920[label="",style="solid", color="blue", weight=9]; 4920 -> 2636[label="",style="solid", color="blue", weight=3]; 4921[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4921[label="",style="solid", color="blue", weight=9]; 4921 -> 2637[label="",style="solid", color="blue", weight=3]; 4922[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4922[label="",style="solid", color="blue", weight=9]; 4922 -> 2638[label="",style="solid", color="blue", weight=3]; 4923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4923[label="",style="solid", color="blue", weight=9]; 4923 -> 2639[label="",style="solid", color="blue", weight=3]; 4924[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4924[label="",style="solid", color="blue", weight=9]; 4924 -> 2640[label="",style="solid", color="blue", weight=3]; 4925[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4925[label="",style="solid", color="blue", weight=9]; 4925 -> 2641[label="",style="solid", color="blue", weight=3]; 4926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4926[label="",style="solid", color="blue", weight=9]; 4926 -> 2642[label="",style="solid", color="blue", weight=3]; 4927[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4927[label="",style="solid", color="blue", weight=9]; 4927 -> 2643[label="",style="solid", color="blue", weight=3]; 4928[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4928[label="",style="solid", color="blue", weight=9]; 4928 -> 2644[label="",style="solid", color="blue", weight=3]; 4929[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4929[label="",style="solid", color="blue", weight=9]; 4929 -> 2645[label="",style="solid", color="blue", weight=3]; 4930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4930[label="",style="solid", color="blue", weight=9]; 4930 -> 2646[label="",style="solid", color="blue", weight=3]; 1372[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1372 -> 1530[label="",style="solid", color="black", weight=3]; 1373[label="Nothing",fontsize=16,color="green",shape="box"];1374 -> 33[label="",style="dashed", color="red", weight=0]; 1374[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1374 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1375[label="yvy53",fontsize=16,color="green",shape="box"];1376[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 Nothing yvy41 True",fontsize=16,color="black",shape="box"];1376 -> 1533[label="",style="solid", color="black", weight=3]; 1377[label="Just yvy500",fontsize=16,color="green",shape="box"];1378 -> 33[label="",style="dashed", color="red", weight=0]; 1378[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 Nothing yvy41",fontsize=16,color="magenta"];1378 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1379[label="yvy53",fontsize=16,color="green",shape="box"];1380[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 Nothing yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1380 -> 1536[label="",style="solid", color="black", weight=3]; 1381[label="Nothing",fontsize=16,color="green",shape="box"];1382 -> 33[label="",style="dashed", color="red", weight=0]; 1382[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1382 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1383[label="yvy53",fontsize=16,color="green",shape="box"];1384[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Just yvy500) yvy51 yvy52 yvy53 yvy54 (Just yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1384 -> 1539[label="",style="solid", color="black", weight=3]; 1385[label="Just yvy500",fontsize=16,color="green",shape="box"];1386 -> 33[label="",style="dashed", color="red", weight=0]; 1386[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Just yvy400) yvy41",fontsize=16,color="magenta"];1386 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1387[label="yvy53",fontsize=16,color="green",shape="box"];1388[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"];1388 -> 1542[label="",style="solid", color="black", weight=3]; 1389[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1389 -> 1543[label="",style="solid", color="black", weight=3]; 1390[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1390 -> 1544[label="",style="solid", color="black", weight=3]; 1391[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1391 -> 1545[label="",style="solid", color="black", weight=3]; 1392[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1392 -> 1546[label="",style="solid", color="black", weight=3]; 2442[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2442 -> 2480[label="",style="solid", color="black", weight=3]; 2443[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2443 -> 2481[label="",style="solid", color="black", weight=3]; 1684[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1685[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];1685 -> 1823[label="",style="solid", color="black", weight=3]; 1490[label="primMulInt (Pos yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4931[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 1620[label="",style="solid", color="burlywood", weight=3]; 4932[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4932[label="",style="solid", color="burlywood", weight=9]; 4932 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1491[label="primMulInt (Neg yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];4933[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1491 -> 4933[label="",style="solid", color="burlywood", weight=9]; 4933 -> 1622[label="",style="solid", color="burlywood", weight=3]; 4934[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1491 -> 4934[label="",style="solid", color="burlywood", weight=9]; 4934 -> 1623[label="",style="solid", color="burlywood", weight=3]; 3419[label="yvy179",fontsize=16,color="green",shape="box"];3420[label="yvy178",fontsize=16,color="green",shape="box"];1631[label="compare yvy49 yvy50",fontsize=16,color="black",shape="triangle"];1631 -> 1710[label="",style="solid", color="black", weight=3]; 1400 -> 4350[label="",style="dashed", color="red", weight=0]; 1400[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"];1400 -> 4351[label="",style="dashed", color="magenta", weight=3]; 1400 -> 4352[label="",style="dashed", color="magenta", weight=3]; 1400 -> 4353[label="",style="dashed", color="magenta", weight=3]; 1400 -> 4354[label="",style="dashed", color="magenta", weight=3]; 1400 -> 4355[label="",style="dashed", color="magenta", weight=3]; 1401[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1402[label="yvy64",fontsize=16,color="green",shape="box"];3311[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3312 -> 3386[label="",style="dashed", color="red", weight=0]; 3312[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3312 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3388[label="",style="dashed", color="magenta", weight=3]; 1408[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1408 -> 1567[label="",style="solid", color="black", weight=3]; 1409[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1409 -> 1568[label="",style="solid", color="black", weight=3]; 1410[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"];1410 -> 1569[label="",style="solid", color="black", weight=3]; 1411[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1411 -> 1570[label="",style="solid", color="black", weight=3]; 1412[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1412 -> 1571[label="",style="solid", color="black", weight=3]; 1413[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1413 -> 1572[label="",style="solid", color="black", weight=3]; 1414[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1414 -> 1573[label="",style="solid", color="black", weight=3]; 1697 -> 1685[label="",style="dashed", color="red", weight=0]; 1697[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1417 -> 4350[label="",style="dashed", color="red", weight=0]; 1417[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"];1417 -> 4356[label="",style="dashed", color="magenta", weight=3]; 1417 -> 4357[label="",style="dashed", color="magenta", weight=3]; 1417 -> 4358[label="",style="dashed", color="magenta", weight=3]; 1417 -> 4359[label="",style="dashed", color="magenta", weight=3]; 1417 -> 4360[label="",style="dashed", color="magenta", weight=3]; 1418[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1419[label="yvy64",fontsize=16,color="green",shape="box"];3278[label="GT",fontsize=16,color="green",shape="box"];3279 -> 3410[label="",style="dashed", color="red", weight=0]; 3279[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3279 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3280[label="False <= yvy5000",fontsize=16,color="burlywood",shape="box"];4935[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3280 -> 4935[label="",style="solid", color="burlywood", weight=9]; 4935 -> 3406[label="",style="solid", color="burlywood", weight=3]; 4936[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3280 -> 4936[label="",style="solid", color="burlywood", weight=9]; 4936 -> 3407[label="",style="solid", color="burlywood", weight=3]; 3281[label="True <= yvy5000",fontsize=16,color="burlywood",shape="box"];4937[label="yvy5000/False",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4937[label="",style="solid", color="burlywood", weight=9]; 4937 -> 3408[label="",style="solid", color="burlywood", weight=3]; 4938[label="yvy5000/True",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4938[label="",style="solid", color="burlywood", weight=9]; 4938 -> 3409[label="",style="solid", color="burlywood", weight=3]; 3282 -> 3410[label="",style="dashed", color="red", weight=0]; 3282[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3282 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3410[label="",style="dashed", color="red", weight=0]; 3283[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3283 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3410[label="",style="dashed", color="red", weight=0]; 3284[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3284 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3410[label="",style="dashed", color="red", weight=0]; 3285[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3285 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3410[label="",style="dashed", color="red", weight=0]; 3286[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3286 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3287[label="(yvy49000,yvy49001,yvy49002) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4939[label="yvy5000/(yvy50000,yvy50001,yvy50002)",fontsize=10,color="white",style="solid",shape="box"];3287 -> 4939[label="",style="solid", color="burlywood", weight=9]; 4939 -> 3421[label="",style="solid", color="burlywood", weight=3]; 3288[label="Nothing <= yvy5000",fontsize=16,color="burlywood",shape="box"];4940[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3288 -> 4940[label="",style="solid", color="burlywood", weight=9]; 4940 -> 3422[label="",style="solid", color="burlywood", weight=3]; 4941[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3288 -> 4941[label="",style="solid", color="burlywood", weight=9]; 4941 -> 3423[label="",style="solid", color="burlywood", weight=3]; 3289[label="Just yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4942[label="yvy5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3289 -> 4942[label="",style="solid", color="burlywood", weight=9]; 4942 -> 3424[label="",style="solid", color="burlywood", weight=3]; 4943[label="yvy5000/Just yvy50000",fontsize=10,color="white",style="solid",shape="box"];3289 -> 4943[label="",style="solid", color="burlywood", weight=9]; 4943 -> 3425[label="",style="solid", color="burlywood", weight=3]; 3290[label="LT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4944[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3290 -> 4944[label="",style="solid", color="burlywood", weight=9]; 4944 -> 3426[label="",style="solid", color="burlywood", weight=3]; 4945[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3290 -> 4945[label="",style="solid", color="burlywood", weight=9]; 4945 -> 3427[label="",style="solid", color="burlywood", weight=3]; 4946[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3290 -> 4946[label="",style="solid", color="burlywood", weight=9]; 4946 -> 3428[label="",style="solid", color="burlywood", weight=3]; 3291[label="EQ <= yvy5000",fontsize=16,color="burlywood",shape="box"];4947[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3291 -> 4947[label="",style="solid", color="burlywood", weight=9]; 4947 -> 3429[label="",style="solid", color="burlywood", weight=3]; 4948[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3291 -> 4948[label="",style="solid", color="burlywood", weight=9]; 4948 -> 3430[label="",style="solid", color="burlywood", weight=3]; 4949[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3291 -> 4949[label="",style="solid", color="burlywood", weight=9]; 4949 -> 3431[label="",style="solid", color="burlywood", weight=3]; 3292[label="GT <= yvy5000",fontsize=16,color="burlywood",shape="box"];4950[label="yvy5000/LT",fontsize=10,color="white",style="solid",shape="box"];3292 -> 4950[label="",style="solid", color="burlywood", weight=9]; 4950 -> 3432[label="",style="solid", color="burlywood", weight=3]; 4951[label="yvy5000/EQ",fontsize=10,color="white",style="solid",shape="box"];3292 -> 4951[label="",style="solid", color="burlywood", weight=9]; 4951 -> 3433[label="",style="solid", color="burlywood", weight=3]; 4952[label="yvy5000/GT",fontsize=10,color="white",style="solid",shape="box"];3292 -> 4952[label="",style="solid", color="burlywood", weight=9]; 4952 -> 3434[label="",style="solid", color="burlywood", weight=3]; 3293 -> 3410[label="",style="dashed", color="red", weight=0]; 3293[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3293 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3410[label="",style="dashed", color="red", weight=0]; 3294[label="compare yvy4900 yvy5000 /= GT",fontsize=16,color="magenta"];3294 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3295[label="Left yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4953[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3295 -> 4953[label="",style="solid", color="burlywood", weight=9]; 4953 -> 3435[label="",style="solid", color="burlywood", weight=3]; 4954[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3295 -> 4954[label="",style="solid", color="burlywood", weight=9]; 4954 -> 3436[label="",style="solid", color="burlywood", weight=3]; 3296[label="Right yvy49000 <= yvy5000",fontsize=16,color="burlywood",shape="box"];4955[label="yvy5000/Left yvy50000",fontsize=10,color="white",style="solid",shape="box"];3296 -> 4955[label="",style="solid", color="burlywood", weight=9]; 4955 -> 3437[label="",style="solid", color="burlywood", weight=3]; 4956[label="yvy5000/Right yvy50000",fontsize=10,color="white",style="solid",shape="box"];3296 -> 4956[label="",style="solid", color="burlywood", weight=9]; 4956 -> 3438[label="",style="solid", color="burlywood", weight=3]; 3297[label="(yvy49000,yvy49001) <= yvy5000",fontsize=16,color="burlywood",shape="box"];4957[label="yvy5000/(yvy50000,yvy50001)",fontsize=10,color="white",style="solid",shape="box"];3297 -> 4957[label="",style="solid", color="burlywood", weight=9]; 4957 -> 3439[label="",style="solid", color="burlywood", weight=3]; 3298[label="compare0 (Just yvy168) (Just yvy169) otherwise",fontsize=16,color="black",shape="box"];3298 -> 3440[label="",style="solid", color="black", weight=3]; 3299[label="LT",fontsize=16,color="green",shape="box"];3322[label="yvy3002",fontsize=16,color="green",shape="box"];3323[label="yvy4002",fontsize=16,color="green",shape="box"];3324[label="yvy3002",fontsize=16,color="green",shape="box"];3325[label="yvy4002",fontsize=16,color="green",shape="box"];3326[label="yvy3002",fontsize=16,color="green",shape="box"];3327[label="yvy4002",fontsize=16,color="green",shape="box"];3328[label="yvy3002",fontsize=16,color="green",shape="box"];3329[label="yvy4002",fontsize=16,color="green",shape="box"];3330[label="yvy3002",fontsize=16,color="green",shape="box"];3331[label="yvy4002",fontsize=16,color="green",shape="box"];3332[label="yvy3002",fontsize=16,color="green",shape="box"];3333[label="yvy4002",fontsize=16,color="green",shape="box"];3334[label="yvy3002",fontsize=16,color="green",shape="box"];3335[label="yvy4002",fontsize=16,color="green",shape="box"];3336[label="yvy3002",fontsize=16,color="green",shape="box"];3337[label="yvy4002",fontsize=16,color="green",shape="box"];3338[label="yvy3002",fontsize=16,color="green",shape="box"];3339[label="yvy4002",fontsize=16,color="green",shape="box"];3340[label="yvy3002",fontsize=16,color="green",shape="box"];3341[label="yvy4002",fontsize=16,color="green",shape="box"];3342[label="yvy3002",fontsize=16,color="green",shape="box"];3343[label="yvy4002",fontsize=16,color="green",shape="box"];3344[label="yvy3002",fontsize=16,color="green",shape="box"];3345[label="yvy4002",fontsize=16,color="green",shape="box"];3346[label="yvy3002",fontsize=16,color="green",shape="box"];3347[label="yvy4002",fontsize=16,color="green",shape="box"];3348[label="yvy3002",fontsize=16,color="green",shape="box"];3349[label="yvy4002",fontsize=16,color="green",shape="box"];3350[label="yvy3001",fontsize=16,color="green",shape="box"];3351[label="yvy4001",fontsize=16,color="green",shape="box"];3352[label="yvy3001",fontsize=16,color="green",shape="box"];3353[label="yvy4001",fontsize=16,color="green",shape="box"];3354[label="yvy3001",fontsize=16,color="green",shape="box"];3355[label="yvy4001",fontsize=16,color="green",shape="box"];3356[label="yvy3001",fontsize=16,color="green",shape="box"];3357[label="yvy4001",fontsize=16,color="green",shape="box"];3358[label="yvy3001",fontsize=16,color="green",shape="box"];3359[label="yvy4001",fontsize=16,color="green",shape="box"];3360[label="yvy3001",fontsize=16,color="green",shape="box"];3361[label="yvy4001",fontsize=16,color="green",shape="box"];3362[label="yvy3001",fontsize=16,color="green",shape="box"];3363[label="yvy4001",fontsize=16,color="green",shape="box"];3364[label="yvy3001",fontsize=16,color="green",shape="box"];3365[label="yvy4001",fontsize=16,color="green",shape="box"];3366[label="yvy3001",fontsize=16,color="green",shape="box"];3367[label="yvy4001",fontsize=16,color="green",shape="box"];3368[label="yvy3001",fontsize=16,color="green",shape="box"];3369[label="yvy4001",fontsize=16,color="green",shape="box"];3370[label="yvy3001",fontsize=16,color="green",shape="box"];3371[label="yvy4001",fontsize=16,color="green",shape="box"];3372[label="yvy3001",fontsize=16,color="green",shape="box"];3373[label="yvy4001",fontsize=16,color="green",shape="box"];3374[label="yvy3001",fontsize=16,color="green",shape="box"];3375[label="yvy4001",fontsize=16,color="green",shape="box"];3376[label="yvy3001",fontsize=16,color="green",shape="box"];3377[label="yvy4001",fontsize=16,color="green",shape="box"];3378 -> 2818[label="",style="dashed", color="red", weight=0]; 3378[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3378 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3378 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3379[label="False",fontsize=16,color="green",shape="box"];3380[label="False",fontsize=16,color="green",shape="box"];3381[label="True",fontsize=16,color="green",shape="box"];3382[label="yvy40000",fontsize=16,color="green",shape="box"];3383[label="yvy30000",fontsize=16,color="green",shape="box"];3384[label="yvy40000",fontsize=16,color="green",shape="box"];3385[label="yvy30000",fontsize=16,color="green",shape="box"];2633 -> 2547[label="",style="dashed", color="red", weight=0]; 2633[label="yvy20 == yvy15",fontsize=16,color="magenta"];2633 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2548[label="",style="dashed", color="red", weight=0]; 2634[label="yvy20 == yvy15",fontsize=16,color="magenta"];2634 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2549[label="",style="dashed", color="red", weight=0]; 2635[label="yvy20 == yvy15",fontsize=16,color="magenta"];2635 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2550[label="",style="dashed", color="red", weight=0]; 2636[label="yvy20 == yvy15",fontsize=16,color="magenta"];2636 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2551[label="",style="dashed", color="red", weight=0]; 2637[label="yvy20 == yvy15",fontsize=16,color="magenta"];2637 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2552[label="",style="dashed", color="red", weight=0]; 2638[label="yvy20 == yvy15",fontsize=16,color="magenta"];2638 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2553[label="",style="dashed", color="red", weight=0]; 2639[label="yvy20 == yvy15",fontsize=16,color="magenta"];2639 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2554[label="",style="dashed", color="red", weight=0]; 2640[label="yvy20 == yvy15",fontsize=16,color="magenta"];2640 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2555[label="",style="dashed", color="red", weight=0]; 2641[label="yvy20 == yvy15",fontsize=16,color="magenta"];2641 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2556[label="",style="dashed", color="red", weight=0]; 2642[label="yvy20 == yvy15",fontsize=16,color="magenta"];2642 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2643 -> 121[label="",style="dashed", color="red", weight=0]; 2643[label="yvy20 == yvy15",fontsize=16,color="magenta"];2643 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2558[label="",style="dashed", color="red", weight=0]; 2644[label="yvy20 == yvy15",fontsize=16,color="magenta"];2644 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2559[label="",style="dashed", color="red", weight=0]; 2645[label="yvy20 == yvy15",fontsize=16,color="magenta"];2645 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2560[label="",style="dashed", color="red", weight=0]; 2646[label="yvy20 == yvy15",fontsize=16,color="magenta"];2646 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2726[label="",style="dashed", color="magenta", weight=3]; 1530[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1530 -> 1678[label="",style="dashed", color="green", weight=3]; 1531[label="Nothing",fontsize=16,color="green",shape="box"];1532[label="yvy54",fontsize=16,color="green",shape="box"];1533[label="FiniteMap.Branch Nothing (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1533 -> 1679[label="",style="dashed", color="green", weight=3]; 1534[label="Nothing",fontsize=16,color="green",shape="box"];1535[label="yvy54",fontsize=16,color="green",shape="box"];1536[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1536 -> 1680[label="",style="dashed", color="green", weight=3]; 1537[label="Just yvy400",fontsize=16,color="green",shape="box"];1538[label="yvy54",fontsize=16,color="green",shape="box"];1539[label="FiniteMap.Branch (Just yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1539 -> 1681[label="",style="dashed", color="green", weight=3]; 1540[label="Just yvy400",fontsize=16,color="green",shape="box"];1541[label="yvy54",fontsize=16,color="green",shape="box"];1542[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"];1542 -> 1682[label="",style="solid", color="black", weight=3]; 1543[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1543 -> 1683[label="",style="solid", color="black", weight=3]; 1544[label="EQ",fontsize=16,color="green",shape="box"];1545[label="GT",fontsize=16,color="green",shape="box"];1546[label="EQ",fontsize=16,color="green",shape="box"];2480[label="Pos Zero",fontsize=16,color="green",shape="box"];2481[label="yvy542",fontsize=16,color="green",shape="box"];1823[label="yvy52",fontsize=16,color="green",shape="box"];1620[label="primMulInt (Pos yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1620 -> 1703[label="",style="solid", color="black", weight=3]; 1621[label="primMulInt (Pos yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1621 -> 1704[label="",style="solid", color="black", weight=3]; 1622[label="primMulInt (Neg yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1622 -> 1705[label="",style="solid", color="black", weight=3]; 1623[label="primMulInt (Neg yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1623 -> 1706[label="",style="solid", color="black", weight=3]; 1710[label="primCmpInt yvy49 yvy50",fontsize=16,color="burlywood",shape="triangle"];4958[label="yvy49/Pos yvy490",fontsize=10,color="white",style="solid",shape="box"];1710 -> 4958[label="",style="solid", color="burlywood", weight=9]; 4958 -> 1846[label="",style="solid", color="burlywood", weight=3]; 4959[label="yvy49/Neg yvy490",fontsize=10,color="white",style="solid",shape="box"];1710 -> 4959[label="",style="solid", color="burlywood", weight=9]; 4959 -> 1847[label="",style="solid", color="burlywood", weight=3]; 4351[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4352[label="yvy40",fontsize=16,color="green",shape="box"];4353[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4354[label="yvy41",fontsize=16,color="green",shape="box"];4355[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4350[label="FiniteMap.mkBranch (Pos (Succ yvy217)) yvy218 yvy219 yvy220 yvy221",fontsize=16,color="black",shape="triangle"];4350 -> 4406[label="",style="solid", color="black", weight=3]; 3387 -> 2418[label="",style="dashed", color="red", weight=0]; 3387[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3388 -> 2414[label="",style="dashed", color="red", weight=0]; 3388[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];3386[label="yvy182 + yvy181",fontsize=16,color="black",shape="triangle"];3386 -> 3443[label="",style="solid", color="black", weight=3]; 1567 -> 1960[label="",style="dashed", color="red", weight=0]; 1567[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"];1567 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1568 -> 4350[label="",style="dashed", color="red", weight=0]; 1568[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1568 -> 4366[label="",style="dashed", color="magenta", weight=3]; 1568 -> 4367[label="",style="dashed", color="magenta", weight=3]; 1568 -> 4368[label="",style="dashed", color="magenta", weight=3]; 1568 -> 4369[label="",style="dashed", color="magenta", weight=3]; 1568 -> 4370[label="",style="dashed", color="magenta", weight=3]; 1569[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"];1569 -> 1695[label="",style="solid", color="black", weight=3]; 1570[label="LT",fontsize=16,color="green",shape="box"];1571[label="EQ",fontsize=16,color="green",shape="box"];1572[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1572 -> 1696[label="",style="solid", color="black", weight=3]; 1573[label="EQ",fontsize=16,color="green",shape="box"];4356[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4357[label="yvy40",fontsize=16,color="green",shape="box"];4358[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4359[label="yvy41",fontsize=16,color="green",shape="box"];4360[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];3411[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4960[label="yvy4900/()",fontsize=10,color="white",style="solid",shape="box"];3411 -> 4960[label="",style="solid", color="burlywood", weight=9]; 4960 -> 3444[label="",style="solid", color="burlywood", weight=3]; 3410[label="yvy183 /= GT",fontsize=16,color="black",shape="triangle"];3410 -> 3445[label="",style="solid", color="black", weight=3]; 3406[label="False <= False",fontsize=16,color="black",shape="box"];3406 -> 3446[label="",style="solid", color="black", weight=3]; 3407[label="False <= True",fontsize=16,color="black",shape="box"];3407 -> 3447[label="",style="solid", color="black", weight=3]; 3408[label="True <= False",fontsize=16,color="black",shape="box"];3408 -> 3448[label="",style="solid", color="black", weight=3]; 3409[label="True <= True",fontsize=16,color="black",shape="box"];3409 -> 3449[label="",style="solid", color="black", weight=3]; 3412 -> 1631[label="",style="dashed", color="red", weight=0]; 3412[label="compare yvy4900 yvy5000",fontsize=16,color="magenta"];3412 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3413[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4961[label="yvy4900/Integer yvy49000",fontsize=10,color="white",style="solid",shape="box"];3413 -> 4961[label="",style="solid", color="burlywood", weight=9]; 4961 -> 3452[label="",style="solid", color="burlywood", weight=3]; 3414[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4962[label="yvy4900/yvy49000 :% yvy49001",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4962[label="",style="solid", color="burlywood", weight=9]; 4962 -> 3453[label="",style="solid", color="burlywood", weight=3]; 3415[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3415 -> 3454[label="",style="solid", color="black", weight=3]; 3416[label="compare yvy4900 yvy5000",fontsize=16,color="burlywood",shape="triangle"];4963[label="yvy4900/yvy49000 : yvy49001",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4963[label="",style="solid", color="burlywood", weight=9]; 4963 -> 3455[label="",style="solid", color="burlywood", weight=3]; 4964[label="yvy4900/[]",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4964[label="",style="solid", color="burlywood", weight=9]; 4964 -> 3456[label="",style="solid", color="burlywood", weight=3]; 3421[label="(yvy49000,yvy49001,yvy49002) <= (yvy50000,yvy50001,yvy50002)",fontsize=16,color="black",shape="box"];3421 -> 3479[label="",style="solid", color="black", weight=3]; 3422[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3422 -> 3480[label="",style="solid", color="black", weight=3]; 3423[label="Nothing <= Just yvy50000",fontsize=16,color="black",shape="box"];3423 -> 3481[label="",style="solid", color="black", weight=3]; 3424[label="Just yvy49000 <= Nothing",fontsize=16,color="black",shape="box"];3424 -> 3482[label="",style="solid", color="black", weight=3]; 3425[label="Just yvy49000 <= Just yvy50000",fontsize=16,color="black",shape="box"];3425 -> 3483[label="",style="solid", color="black", weight=3]; 3426[label="LT <= LT",fontsize=16,color="black",shape="box"];3426 -> 3484[label="",style="solid", color="black", weight=3]; 3427[label="LT <= EQ",fontsize=16,color="black",shape="box"];3427 -> 3485[label="",style="solid", color="black", weight=3]; 3428[label="LT <= GT",fontsize=16,color="black",shape="box"];3428 -> 3486[label="",style="solid", color="black", weight=3]; 3429[label="EQ <= LT",fontsize=16,color="black",shape="box"];3429 -> 3487[label="",style="solid", color="black", weight=3]; 3430[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3430 -> 3488[label="",style="solid", color="black", weight=3]; 3431[label="EQ <= GT",fontsize=16,color="black",shape="box"];3431 -> 3489[label="",style="solid", color="black", weight=3]; 3432[label="GT <= LT",fontsize=16,color="black",shape="box"];3432 -> 3490[label="",style="solid", color="black", weight=3]; 3433[label="GT <= EQ",fontsize=16,color="black",shape="box"];3433 -> 3491[label="",style="solid", color="black", weight=3]; 3434[label="GT <= GT",fontsize=16,color="black",shape="box"];3434 -> 3492[label="",style="solid", color="black", weight=3]; 3417[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3417 -> 3457[label="",style="solid", color="black", weight=3]; 3418[label="compare yvy4900 yvy5000",fontsize=16,color="black",shape="triangle"];3418 -> 3458[label="",style="solid", color="black", weight=3]; 3435[label="Left yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3435 -> 3493[label="",style="solid", color="black", weight=3]; 3436[label="Left yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3436 -> 3494[label="",style="solid", color="black", weight=3]; 3437[label="Right yvy49000 <= Left yvy50000",fontsize=16,color="black",shape="box"];3437 -> 3495[label="",style="solid", color="black", weight=3]; 3438[label="Right yvy49000 <= Right yvy50000",fontsize=16,color="black",shape="box"];3438 -> 3496[label="",style="solid", color="black", weight=3]; 3439[label="(yvy49000,yvy49001) <= (yvy50000,yvy50001)",fontsize=16,color="black",shape="box"];3439 -> 3497[label="",style="solid", color="black", weight=3]; 3440[label="compare0 (Just yvy168) (Just yvy169) True",fontsize=16,color="black",shape="box"];3440 -> 3498[label="",style="solid", color="black", weight=3]; 3441[label="yvy40000",fontsize=16,color="green",shape="box"];3442[label="yvy30000",fontsize=16,color="green",shape="box"];2699[label="yvy15",fontsize=16,color="green",shape="box"];2700[label="yvy20",fontsize=16,color="green",shape="box"];2701[label="yvy15",fontsize=16,color="green",shape="box"];2702[label="yvy20",fontsize=16,color="green",shape="box"];2703[label="yvy15",fontsize=16,color="green",shape="box"];2704[label="yvy20",fontsize=16,color="green",shape="box"];2705[label="yvy15",fontsize=16,color="green",shape="box"];2706[label="yvy20",fontsize=16,color="green",shape="box"];2707[label="yvy15",fontsize=16,color="green",shape="box"];2708[label="yvy20",fontsize=16,color="green",shape="box"];2709[label="yvy15",fontsize=16,color="green",shape="box"];2710[label="yvy20",fontsize=16,color="green",shape="box"];2711[label="yvy15",fontsize=16,color="green",shape="box"];2712[label="yvy20",fontsize=16,color="green",shape="box"];2713[label="yvy15",fontsize=16,color="green",shape="box"];2714[label="yvy20",fontsize=16,color="green",shape="box"];2715[label="yvy15",fontsize=16,color="green",shape="box"];2716[label="yvy20",fontsize=16,color="green",shape="box"];2717[label="yvy15",fontsize=16,color="green",shape="box"];2718[label="yvy20",fontsize=16,color="green",shape="box"];2719[label="yvy15",fontsize=16,color="green",shape="box"];2720[label="yvy20",fontsize=16,color="green",shape="box"];2721[label="yvy15",fontsize=16,color="green",shape="box"];2722[label="yvy20",fontsize=16,color="green",shape="box"];2723[label="yvy15",fontsize=16,color="green",shape="box"];2724[label="yvy20",fontsize=16,color="green",shape="box"];2725[label="yvy15",fontsize=16,color="green",shape="box"];2726[label="yvy20",fontsize=16,color="green",shape="box"];1678[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];1678 -> 1820[label="",style="solid", color="black", weight=3]; 1679 -> 1678[label="",style="dashed", color="red", weight=0]; 1679[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1680 -> 1678[label="",style="dashed", color="red", weight=0]; 1680[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1681 -> 1678[label="",style="dashed", color="red", weight=0]; 1681[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];1682 -> 1821[label="",style="dashed", color="red", weight=0]; 1682[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"];1682 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1683[label="LT",fontsize=16,color="green",shape="box"];1703[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1703 -> 1841[label="",style="dashed", color="green", weight=3]; 1704[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1704 -> 1842[label="",style="dashed", color="green", weight=3]; 1705[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1705 -> 1843[label="",style="dashed", color="green", weight=3]; 1706[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];1706 -> 1844[label="",style="dashed", color="green", weight=3]; 1846[label="primCmpInt (Pos yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4965[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4965[label="",style="solid", color="burlywood", weight=9]; 4965 -> 1991[label="",style="solid", color="burlywood", weight=3]; 4966[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4966[label="",style="solid", color="burlywood", weight=9]; 4966 -> 1992[label="",style="solid", color="burlywood", weight=3]; 1847[label="primCmpInt (Neg yvy490) yvy50",fontsize=16,color="burlywood",shape="box"];4967[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4967[label="",style="solid", color="burlywood", weight=9]; 4967 -> 1993[label="",style="solid", color="burlywood", weight=3]; 4968[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4968[label="",style="solid", color="burlywood", weight=9]; 4968 -> 1994[label="",style="solid", color="burlywood", weight=3]; 4406[label="FiniteMap.mkBranchResult yvy218 yvy219 yvy220 yvy221",fontsize=16,color="black",shape="box"];4406 -> 4409[label="",style="solid", color="black", weight=3]; 2418[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2418 -> 2426[label="",style="solid", color="black", weight=3]; 2414[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="black",shape="triangle"];2414 -> 2420[label="",style="solid", color="black", weight=3]; 3443[label="primPlusInt yvy182 yvy181",fontsize=16,color="burlywood",shape="box"];4969[label="yvy182/Pos yvy1820",fontsize=10,color="white",style="solid",shape="box"];3443 -> 4969[label="",style="solid", color="burlywood", weight=9]; 4969 -> 3499[label="",style="solid", color="burlywood", weight=3]; 4970[label="yvy182/Neg yvy1820",fontsize=10,color="white",style="solid",shape="box"];3443 -> 4970[label="",style="solid", color="burlywood", weight=9]; 4970 -> 3500[label="",style="solid", color="burlywood", weight=3]; 1961 -> 2413[label="",style="dashed", color="red", weight=0]; 1961[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];1961 -> 2414[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2415[label="",style="dashed", color="magenta", weight=3]; 1960[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy135",fontsize=16,color="burlywood",shape="triangle"];4971[label="yvy135/False",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4971[label="",style="solid", color="burlywood", weight=9]; 4971 -> 1966[label="",style="solid", color="burlywood", weight=3]; 4972[label="yvy135/True",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4972[label="",style="solid", color="burlywood", weight=9]; 4972 -> 1967[label="",style="solid", color="burlywood", weight=3]; 4366[label="Zero",fontsize=16,color="green",shape="box"];4367[label="yvy50",fontsize=16,color="green",shape="box"];4368[label="yvy54",fontsize=16,color="green",shape="box"];4369[label="yvy51",fontsize=16,color="green",shape="box"];4370[label="yvy67",fontsize=16,color="green",shape="box"];1695 -> 1834[label="",style="dashed", color="red", weight=0]; 1695[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"];1695 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1696[label="GT",fontsize=16,color="green",shape="box"];3444[label="compare () yvy5000",fontsize=16,color="burlywood",shape="box"];4973[label="yvy5000/()",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4973[label="",style="solid", color="burlywood", weight=9]; 4973 -> 3501[label="",style="solid", color="burlywood", weight=3]; 3445 -> 3502[label="",style="dashed", color="red", weight=0]; 3445[label="not (yvy183 == GT)",fontsize=16,color="magenta"];3445 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3446[label="True",fontsize=16,color="green",shape="box"];3447[label="True",fontsize=16,color="green",shape="box"];3448[label="False",fontsize=16,color="green",shape="box"];3449[label="True",fontsize=16,color="green",shape="box"];3450[label="yvy4900",fontsize=16,color="green",shape="box"];3451[label="yvy5000",fontsize=16,color="green",shape="box"];3452[label="compare (Integer yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];4974[label="yvy5000/Integer yvy50000",fontsize=10,color="white",style="solid",shape="box"];3452 -> 4974[label="",style="solid", color="burlywood", weight=9]; 4974 -> 3504[label="",style="solid", color="burlywood", weight=3]; 3453[label="compare (yvy49000 :% yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];4975[label="yvy5000/yvy50000 :% yvy50001",fontsize=10,color="white",style="solid",shape="box"];3453 -> 4975[label="",style="solid", color="burlywood", weight=9]; 4975 -> 3505[label="",style="solid", color="burlywood", weight=3]; 3454[label="primCmpFloat yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4976[label="yvy4900/Float yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3454 -> 4976[label="",style="solid", color="burlywood", weight=9]; 4976 -> 3506[label="",style="solid", color="burlywood", weight=3]; 3455[label="compare (yvy49000 : yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];4977[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3455 -> 4977[label="",style="solid", color="burlywood", weight=9]; 4977 -> 3507[label="",style="solid", color="burlywood", weight=3]; 4978[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3455 -> 4978[label="",style="solid", color="burlywood", weight=9]; 4978 -> 3508[label="",style="solid", color="burlywood", weight=3]; 3456[label="compare [] yvy5000",fontsize=16,color="burlywood",shape="box"];4979[label="yvy5000/yvy50000 : yvy50001",fontsize=10,color="white",style="solid",shape="box"];3456 -> 4979[label="",style="solid", color="burlywood", weight=9]; 4979 -> 3509[label="",style="solid", color="burlywood", weight=3]; 4980[label="yvy5000/[]",fontsize=10,color="white",style="solid",shape="box"];3456 -> 4980[label="",style="solid", color="burlywood", weight=9]; 4980 -> 3510[label="",style="solid", color="burlywood", weight=3]; 3479 -> 3579[label="",style="dashed", color="red", weight=0]; 3479[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3479 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3480[label="True",fontsize=16,color="green",shape="box"];3481[label="True",fontsize=16,color="green",shape="box"];3482[label="False",fontsize=16,color="green",shape="box"];3483[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];4981[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3516[label="",style="solid", color="blue", weight=3]; 4982[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3517[label="",style="solid", color="blue", weight=3]; 4983[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3518[label="",style="solid", color="blue", weight=3]; 4984[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3519[label="",style="solid", color="blue", weight=3]; 4985[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3520[label="",style="solid", color="blue", weight=3]; 4986[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3521[label="",style="solid", color="blue", weight=3]; 4987[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3522[label="",style="solid", color="blue", weight=3]; 4988[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3523[label="",style="solid", color="blue", weight=3]; 4989[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3524[label="",style="solid", color="blue", weight=3]; 4990[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 3525[label="",style="solid", color="blue", weight=3]; 4991[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 3526[label="",style="solid", color="blue", weight=3]; 4992[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 3527[label="",style="solid", color="blue", weight=3]; 4993[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 3528[label="",style="solid", color="blue", weight=3]; 4994[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 3529[label="",style="solid", color="blue", weight=3]; 3484[label="True",fontsize=16,color="green",shape="box"];3485[label="True",fontsize=16,color="green",shape="box"];3486[label="True",fontsize=16,color="green",shape="box"];3487[label="False",fontsize=16,color="green",shape="box"];3488[label="True",fontsize=16,color="green",shape="box"];3489[label="True",fontsize=16,color="green",shape="box"];3490[label="False",fontsize=16,color="green",shape="box"];3491[label="False",fontsize=16,color="green",shape="box"];3492[label="True",fontsize=16,color="green",shape="box"];3457[label="primCmpChar yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4995[label="yvy4900/Char yvy49000",fontsize=10,color="white",style="solid",shape="box"];3457 -> 4995[label="",style="solid", color="burlywood", weight=9]; 4995 -> 3530[label="",style="solid", color="burlywood", weight=3]; 3458[label="primCmpDouble yvy4900 yvy5000",fontsize=16,color="burlywood",shape="box"];4996[label="yvy4900/Double yvy49000 yvy49001",fontsize=10,color="white",style="solid",shape="box"];3458 -> 4996[label="",style="solid", color="burlywood", weight=9]; 4996 -> 3531[label="",style="solid", color="burlywood", weight=3]; 3493[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];4997[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 3532[label="",style="solid", color="blue", weight=3]; 4998[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 3533[label="",style="solid", color="blue", weight=3]; 4999[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 3534[label="",style="solid", color="blue", weight=3]; 5000[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 3535[label="",style="solid", color="blue", weight=3]; 5001[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 3536[label="",style="solid", color="blue", weight=3]; 5002[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 3537[label="",style="solid", color="blue", weight=3]; 5003[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 3538[label="",style="solid", color="blue", weight=3]; 5004[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 3539[label="",style="solid", color="blue", weight=3]; 5005[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3540[label="",style="solid", color="blue", weight=3]; 5006[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 3541[label="",style="solid", color="blue", weight=3]; 5007[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 3542[label="",style="solid", color="blue", weight=3]; 5008[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 3543[label="",style="solid", color="blue", weight=3]; 5009[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 3544[label="",style="solid", color="blue", weight=3]; 5010[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3493 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 3545[label="",style="solid", color="blue", weight=3]; 3494[label="True",fontsize=16,color="green",shape="box"];3495[label="False",fontsize=16,color="green",shape="box"];3496[label="yvy49000 <= yvy50000",fontsize=16,color="blue",shape="box"];5011[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 3546[label="",style="solid", color="blue", weight=3]; 5012[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 3547[label="",style="solid", color="blue", weight=3]; 5013[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 3548[label="",style="solid", color="blue", weight=3]; 5014[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 3549[label="",style="solid", color="blue", weight=3]; 5015[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5015[label="",style="solid", color="blue", weight=9]; 5015 -> 3550[label="",style="solid", color="blue", weight=3]; 5016[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5016[label="",style="solid", color="blue", weight=9]; 5016 -> 3551[label="",style="solid", color="blue", weight=3]; 5017[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5017[label="",style="solid", color="blue", weight=9]; 5017 -> 3552[label="",style="solid", color="blue", weight=3]; 5018[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3553[label="",style="solid", color="blue", weight=3]; 5019[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3554[label="",style="solid", color="blue", weight=3]; 5020[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3555[label="",style="solid", color="blue", weight=3]; 5021[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3556[label="",style="solid", color="blue", weight=3]; 5022[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3557[label="",style="solid", color="blue", weight=3]; 5023[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3558[label="",style="solid", color="blue", weight=3]; 5024[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3496 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3559[label="",style="solid", color="blue", weight=3]; 3497 -> 3579[label="",style="dashed", color="red", weight=0]; 3497[label="yvy49000 < yvy50000 || yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3497 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3498[label="GT",fontsize=16,color="green",shape="box"];1820[label="yvy41",fontsize=16,color="green",shape="box"];1822 -> 1548[label="",style="dashed", color="red", weight=0]; 1822[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1822 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1710[label="",style="dashed", color="red", weight=0]; 1821[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy133",fontsize=16,color="magenta"];1821 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1841[label="primMulNat yvy40010 yvy30000",fontsize=16,color="burlywood",shape="triangle"];5025[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];1841 -> 5025[label="",style="solid", color="burlywood", weight=9]; 5025 -> 1984[label="",style="solid", color="burlywood", weight=3]; 5026[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1841 -> 5026[label="",style="solid", color="burlywood", weight=9]; 5026 -> 1985[label="",style="solid", color="burlywood", weight=3]; 1842 -> 1841[label="",style="dashed", color="red", weight=0]; 1842[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1842 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1843 -> 1841[label="",style="dashed", color="red", weight=0]; 1843[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1843 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1841[label="",style="dashed", color="red", weight=0]; 1844[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];1844 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1991[label="primCmpInt (Pos (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5027[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];1991 -> 5027[label="",style="solid", color="burlywood", weight=9]; 5027 -> 2189[label="",style="solid", color="burlywood", weight=3]; 5028[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];1991 -> 5028[label="",style="solid", color="burlywood", weight=9]; 5028 -> 2190[label="",style="solid", color="burlywood", weight=3]; 1992[label="primCmpInt (Pos Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5029[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];1992 -> 5029[label="",style="solid", color="burlywood", weight=9]; 5029 -> 2191[label="",style="solid", color="burlywood", weight=3]; 5030[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];1992 -> 5030[label="",style="solid", color="burlywood", weight=9]; 5030 -> 2192[label="",style="solid", color="burlywood", weight=3]; 1993[label="primCmpInt (Neg (Succ yvy4900)) yvy50",fontsize=16,color="burlywood",shape="box"];5031[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];1993 -> 5031[label="",style="solid", color="burlywood", weight=9]; 5031 -> 2193[label="",style="solid", color="burlywood", weight=3]; 5032[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];1993 -> 5032[label="",style="solid", color="burlywood", weight=9]; 5032 -> 2194[label="",style="solid", color="burlywood", weight=3]; 1994[label="primCmpInt (Neg Zero) yvy50",fontsize=16,color="burlywood",shape="box"];5033[label="yvy50/Pos yvy500",fontsize=10,color="white",style="solid",shape="box"];1994 -> 5033[label="",style="solid", color="burlywood", weight=9]; 5033 -> 2195[label="",style="solid", color="burlywood", weight=3]; 5034[label="yvy50/Neg yvy500",fontsize=10,color="white",style="solid",shape="box"];1994 -> 5034[label="",style="solid", color="burlywood", weight=9]; 5034 -> 2196[label="",style="solid", color="burlywood", weight=3]; 4409[label="FiniteMap.Branch yvy218 yvy219 (FiniteMap.mkBranchUnbox yvy220 yvy218 yvy221 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy220 yvy218 yvy221 + FiniteMap.mkBranchRight_size yvy220 yvy218 yvy221)) yvy220 yvy221",fontsize=16,color="green",shape="box"];4409 -> 4412[label="",style="dashed", color="green", weight=3]; 2426 -> 2420[label="",style="dashed", color="red", weight=0]; 2426[label="FiniteMap.sizeFM yvy67",fontsize=16,color="magenta"];2426 -> 2484[label="",style="dashed", color="magenta", weight=3]; 3499[label="primPlusInt (Pos yvy1820) yvy181",fontsize=16,color="burlywood",shape="box"];5035[label="yvy181/Pos yvy1810",fontsize=10,color="white",style="solid",shape="box"];3499 -> 5035[label="",style="solid", color="burlywood", weight=9]; 5035 -> 3560[label="",style="solid", color="burlywood", weight=3]; 5036[label="yvy181/Neg yvy1810",fontsize=10,color="white",style="solid",shape="box"];3499 -> 5036[label="",style="solid", color="burlywood", weight=9]; 5036 -> 3561[label="",style="solid", color="burlywood", weight=3]; 3500[label="primPlusInt (Neg yvy1820) yvy181",fontsize=16,color="burlywood",shape="box"];5037[label="yvy181/Pos yvy1810",fontsize=10,color="white",style="solid",shape="box"];3500 -> 5037[label="",style="solid", color="burlywood", weight=9]; 5037 -> 3562[label="",style="solid", color="burlywood", weight=3]; 5038[label="yvy181/Neg yvy1810",fontsize=10,color="white",style="solid",shape="box"];3500 -> 5038[label="",style="solid", color="burlywood", weight=9]; 5038 -> 3563[label="",style="solid", color="burlywood", weight=3]; 2415 -> 986[label="",style="dashed", color="red", weight=0]; 2415[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2415 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2413[label="yvy146 > yvy145",fontsize=16,color="black",shape="triangle"];2413 -> 2423[label="",style="solid", color="black", weight=3]; 1966[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];1966 -> 2157[label="",style="solid", color="black", weight=3]; 1967[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];1967 -> 2158[label="",style="solid", color="black", weight=3]; 1835 -> 1575[label="",style="dashed", color="red", weight=0]; 1835[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];1835 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1710[label="",style="dashed", color="red", weight=0]; 1834[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy134",fontsize=16,color="magenta"];1834 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1974[label="",style="dashed", color="magenta", weight=3]; 3501[label="compare () ()",fontsize=16,color="black",shape="box"];3501 -> 3564[label="",style="solid", color="black", weight=3]; 3503 -> 121[label="",style="dashed", color="red", weight=0]; 3503[label="yvy183 == GT",fontsize=16,color="magenta"];3503 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3502[label="not yvy188",fontsize=16,color="burlywood",shape="triangle"];5039[label="yvy188/False",fontsize=10,color="white",style="solid",shape="box"];3502 -> 5039[label="",style="solid", color="burlywood", weight=9]; 5039 -> 3567[label="",style="solid", color="burlywood", weight=3]; 5040[label="yvy188/True",fontsize=10,color="white",style="solid",shape="box"];3502 -> 5040[label="",style="solid", color="burlywood", weight=9]; 5040 -> 3568[label="",style="solid", color="burlywood", weight=3]; 3504[label="compare (Integer yvy49000) (Integer yvy50000)",fontsize=16,color="black",shape="box"];3504 -> 3569[label="",style="solid", color="black", weight=3]; 3505[label="compare (yvy49000 :% yvy49001) (yvy50000 :% yvy50001)",fontsize=16,color="black",shape="box"];3505 -> 3570[label="",style="solid", color="black", weight=3]; 3506[label="primCmpFloat (Float yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5041[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5041[label="",style="solid", color="burlywood", weight=9]; 5041 -> 3571[label="",style="solid", color="burlywood", weight=3]; 5042[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5042[label="",style="solid", color="burlywood", weight=9]; 5042 -> 3572[label="",style="solid", color="burlywood", weight=3]; 3507[label="compare (yvy49000 : yvy49001) (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3507 -> 3573[label="",style="solid", color="black", weight=3]; 3508[label="compare (yvy49000 : yvy49001) []",fontsize=16,color="black",shape="box"];3508 -> 3574[label="",style="solid", color="black", weight=3]; 3509[label="compare [] (yvy50000 : yvy50001)",fontsize=16,color="black",shape="box"];3509 -> 3575[label="",style="solid", color="black", weight=3]; 3510[label="compare [] []",fontsize=16,color="black",shape="box"];3510 -> 3576[label="",style="solid", color="black", weight=3]; 3580[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5043[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3588[label="",style="solid", color="blue", weight=3]; 5044[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3589[label="",style="solid", color="blue", weight=3]; 5045[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3590[label="",style="solid", color="blue", weight=3]; 5046[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5046[label="",style="solid", color="blue", weight=9]; 5046 -> 3591[label="",style="solid", color="blue", weight=3]; 5047[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5047[label="",style="solid", color="blue", weight=9]; 5047 -> 3592[label="",style="solid", color="blue", weight=3]; 5048[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5048[label="",style="solid", color="blue", weight=9]; 5048 -> 3593[label="",style="solid", color="blue", weight=3]; 5049[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5049[label="",style="solid", color="blue", weight=9]; 5049 -> 3594[label="",style="solid", color="blue", weight=3]; 5050[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5050[label="",style="solid", color="blue", weight=9]; 5050 -> 3595[label="",style="solid", color="blue", weight=3]; 5051[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5051[label="",style="solid", color="blue", weight=9]; 5051 -> 3596[label="",style="solid", color="blue", weight=3]; 5052[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5052[label="",style="solid", color="blue", weight=9]; 5052 -> 3597[label="",style="solid", color="blue", weight=3]; 5053[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5053[label="",style="solid", color="blue", weight=9]; 5053 -> 3598[label="",style="solid", color="blue", weight=3]; 5054[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5054[label="",style="solid", color="blue", weight=9]; 5054 -> 3599[label="",style="solid", color="blue", weight=3]; 5055[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5055[label="",style="solid", color="blue", weight=9]; 5055 -> 3600[label="",style="solid", color="blue", weight=3]; 5056[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3580 -> 5056[label="",style="solid", color="blue", weight=9]; 5056 -> 3601[label="",style="solid", color="blue", weight=3]; 3581 -> 2881[label="",style="dashed", color="red", weight=0]; 3581[label="yvy49000 == yvy50000 && (yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002)",fontsize=16,color="magenta"];3581 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3579[label="yvy194 || yvy195",fontsize=16,color="burlywood",shape="triangle"];5057[label="yvy194/False",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5057[label="",style="solid", color="burlywood", weight=9]; 5057 -> 3604[label="",style="solid", color="burlywood", weight=3]; 5058[label="yvy194/True",fontsize=10,color="white",style="solid",shape="box"];3579 -> 5058[label="",style="solid", color="burlywood", weight=9]; 5058 -> 3605[label="",style="solid", color="burlywood", weight=3]; 3516 -> 3065[label="",style="dashed", color="red", weight=0]; 3516[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3516 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3066[label="",style="dashed", color="red", weight=0]; 3517[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3517 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3067[label="",style="dashed", color="red", weight=0]; 3518[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3518 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3068[label="",style="dashed", color="red", weight=0]; 3519[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3519 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3069[label="",style="dashed", color="red", weight=0]; 3520[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3520 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3070[label="",style="dashed", color="red", weight=0]; 3521[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3521 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3071[label="",style="dashed", color="red", weight=0]; 3522[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3522 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3072[label="",style="dashed", color="red", weight=0]; 3523[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3523 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3073[label="",style="dashed", color="red", weight=0]; 3524[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3524 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3525 -> 3074[label="",style="dashed", color="red", weight=0]; 3525[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3525 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3525 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3075[label="",style="dashed", color="red", weight=0]; 3526[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3526 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3076[label="",style="dashed", color="red", weight=0]; 3527[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3527 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3528 -> 3077[label="",style="dashed", color="red", weight=0]; 3528[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3528 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3528 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3078[label="",style="dashed", color="red", weight=0]; 3529[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3529 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3530[label="primCmpChar (Char yvy49000) yvy5000",fontsize=16,color="burlywood",shape="box"];5059[label="yvy5000/Char yvy50000",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5059[label="",style="solid", color="burlywood", weight=9]; 5059 -> 3634[label="",style="solid", color="burlywood", weight=3]; 3531[label="primCmpDouble (Double yvy49000 yvy49001) yvy5000",fontsize=16,color="burlywood",shape="box"];5060[label="yvy49001/Pos yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5060[label="",style="solid", color="burlywood", weight=9]; 5060 -> 3635[label="",style="solid", color="burlywood", weight=3]; 5061[label="yvy49001/Neg yvy490010",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5061[label="",style="solid", color="burlywood", weight=9]; 5061 -> 3636[label="",style="solid", color="burlywood", weight=3]; 3532 -> 3065[label="",style="dashed", color="red", weight=0]; 3532[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3532 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3066[label="",style="dashed", color="red", weight=0]; 3533[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3533 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3067[label="",style="dashed", color="red", weight=0]; 3534[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3534 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3535 -> 3068[label="",style="dashed", color="red", weight=0]; 3535[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3535 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3535 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3536 -> 3069[label="",style="dashed", color="red", weight=0]; 3536[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3536 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3536 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3537 -> 3070[label="",style="dashed", color="red", weight=0]; 3537[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3537 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3537 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3538 -> 3071[label="",style="dashed", color="red", weight=0]; 3538[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3538 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3538 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3539 -> 3072[label="",style="dashed", color="red", weight=0]; 3539[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3539 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3539 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3073[label="",style="dashed", color="red", weight=0]; 3540[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3540 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3074[label="",style="dashed", color="red", weight=0]; 3541[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3541 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3075[label="",style="dashed", color="red", weight=0]; 3542[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3542 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3076[label="",style="dashed", color="red", weight=0]; 3543[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3543 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3077[label="",style="dashed", color="red", weight=0]; 3544[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3544 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3078[label="",style="dashed", color="red", weight=0]; 3545[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3545 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3065[label="",style="dashed", color="red", weight=0]; 3546[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3546 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3066[label="",style="dashed", color="red", weight=0]; 3547[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3547 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3067[label="",style="dashed", color="red", weight=0]; 3548[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3548 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3068[label="",style="dashed", color="red", weight=0]; 3549[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3549 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3069[label="",style="dashed", color="red", weight=0]; 3550[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3550 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3070[label="",style="dashed", color="red", weight=0]; 3551[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3551 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3071[label="",style="dashed", color="red", weight=0]; 3552[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3552 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3072[label="",style="dashed", color="red", weight=0]; 3553[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3553 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3073[label="",style="dashed", color="red", weight=0]; 3554[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3554 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3074[label="",style="dashed", color="red", weight=0]; 3555[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3555 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3075[label="",style="dashed", color="red", weight=0]; 3556[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3556 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3076[label="",style="dashed", color="red", weight=0]; 3557[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3557 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3077[label="",style="dashed", color="red", weight=0]; 3558[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3558 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3078[label="",style="dashed", color="red", weight=0]; 3559[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];3559 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3582[label="yvy49000 < yvy50000",fontsize=16,color="blue",shape="box"];5062[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5062[label="",style="solid", color="blue", weight=9]; 5062 -> 3693[label="",style="solid", color="blue", weight=3]; 5063[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5063[label="",style="solid", color="blue", weight=9]; 5063 -> 3694[label="",style="solid", color="blue", weight=3]; 5064[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5064[label="",style="solid", color="blue", weight=9]; 5064 -> 3695[label="",style="solid", color="blue", weight=3]; 5065[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5065[label="",style="solid", color="blue", weight=9]; 5065 -> 3696[label="",style="solid", color="blue", weight=3]; 5066[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5066[label="",style="solid", color="blue", weight=9]; 5066 -> 3697[label="",style="solid", color="blue", weight=3]; 5067[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5067[label="",style="solid", color="blue", weight=9]; 5067 -> 3698[label="",style="solid", color="blue", weight=3]; 5068[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5068[label="",style="solid", color="blue", weight=9]; 5068 -> 3699[label="",style="solid", color="blue", weight=3]; 5069[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5069[label="",style="solid", color="blue", weight=9]; 5069 -> 3700[label="",style="solid", color="blue", weight=3]; 5070[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5070[label="",style="solid", color="blue", weight=9]; 5070 -> 3701[label="",style="solid", color="blue", weight=3]; 5071[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5071[label="",style="solid", color="blue", weight=9]; 5071 -> 3702[label="",style="solid", color="blue", weight=3]; 5072[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5072[label="",style="solid", color="blue", weight=9]; 5072 -> 3703[label="",style="solid", color="blue", weight=3]; 5073[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5073[label="",style="solid", color="blue", weight=9]; 5073 -> 3704[label="",style="solid", color="blue", weight=3]; 5074[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5074[label="",style="solid", color="blue", weight=9]; 5074 -> 3705[label="",style="solid", color="blue", weight=3]; 5075[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5075[label="",style="solid", color="blue", weight=9]; 5075 -> 3706[label="",style="solid", color="blue", weight=3]; 3583 -> 2881[label="",style="dashed", color="red", weight=0]; 3583[label="yvy49000 == yvy50000 && yvy49001 <= yvy50001",fontsize=16,color="magenta"];3583 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3708[label="",style="dashed", color="magenta", weight=3]; 1945[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1946[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1946 -> 2134[label="",style="dashed", color="green", weight=3]; 1947[label="yvy133",fontsize=16,color="green",shape="box"];1984[label="primMulNat (Succ yvy400100) yvy30000",fontsize=16,color="burlywood",shape="box"];5076[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1984 -> 5076[label="",style="solid", color="burlywood", weight=9]; 5076 -> 2185[label="",style="solid", color="burlywood", weight=3]; 5077[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1984 -> 5077[label="",style="solid", color="burlywood", weight=9]; 5077 -> 2186[label="",style="solid", color="burlywood", weight=3]; 1985[label="primMulNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];5078[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];1985 -> 5078[label="",style="solid", color="burlywood", weight=9]; 5078 -> 2187[label="",style="solid", color="burlywood", weight=3]; 5079[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1985 -> 5079[label="",style="solid", color="burlywood", weight=9]; 5079 -> 2188[label="",style="solid", color="burlywood", weight=3]; 1986[label="yvy30000",fontsize=16,color="green",shape="box"];1987[label="yvy40010",fontsize=16,color="green",shape="box"];1988[label="yvy40010",fontsize=16,color="green",shape="box"];1989[label="yvy30000",fontsize=16,color="green",shape="box"];2189[label="primCmpInt (Pos (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2189 -> 2309[label="",style="solid", color="black", weight=3]; 2190[label="primCmpInt (Pos (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2190 -> 2310[label="",style="solid", color="black", weight=3]; 2191[label="primCmpInt (Pos Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5080[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2191 -> 5080[label="",style="solid", color="burlywood", weight=9]; 5080 -> 2311[label="",style="solid", color="burlywood", weight=3]; 5081[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2191 -> 5081[label="",style="solid", color="burlywood", weight=9]; 5081 -> 2312[label="",style="solid", color="burlywood", weight=3]; 2192[label="primCmpInt (Pos Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5082[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2192 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 2313[label="",style="solid", color="burlywood", weight=3]; 5083[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2192 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 2314[label="",style="solid", color="burlywood", weight=3]; 2193[label="primCmpInt (Neg (Succ yvy4900)) (Pos yvy500)",fontsize=16,color="black",shape="box"];2193 -> 2315[label="",style="solid", color="black", weight=3]; 2194[label="primCmpInt (Neg (Succ yvy4900)) (Neg yvy500)",fontsize=16,color="black",shape="box"];2194 -> 2316[label="",style="solid", color="black", weight=3]; 2195[label="primCmpInt (Neg Zero) (Pos yvy500)",fontsize=16,color="burlywood",shape="box"];5084[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2195 -> 5084[label="",style="solid", color="burlywood", weight=9]; 5084 -> 2317[label="",style="solid", color="burlywood", weight=3]; 5085[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2195 -> 5085[label="",style="solid", color="burlywood", weight=9]; 5085 -> 2318[label="",style="solid", color="burlywood", weight=3]; 2196[label="primCmpInt (Neg Zero) (Neg yvy500)",fontsize=16,color="burlywood",shape="box"];5086[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2196 -> 5086[label="",style="solid", color="burlywood", weight=9]; 5086 -> 2319[label="",style="solid", color="burlywood", weight=3]; 5087[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2196 -> 5087[label="",style="solid", color="burlywood", weight=9]; 5087 -> 2320[label="",style="solid", color="burlywood", weight=3]; 4412 -> 4415[label="",style="dashed", color="red", weight=0]; 4412[label="FiniteMap.mkBranchUnbox yvy220 yvy218 yvy221 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy220 yvy218 yvy221 + FiniteMap.mkBranchRight_size yvy220 yvy218 yvy221)",fontsize=16,color="magenta"];4412 -> 4416[label="",style="dashed", color="magenta", weight=3]; 2484[label="yvy67",fontsize=16,color="green",shape="box"];3560[label="primPlusInt (Pos yvy1820) (Pos yvy1810)",fontsize=16,color="black",shape="box"];3560 -> 3709[label="",style="solid", color="black", weight=3]; 3561[label="primPlusInt (Pos yvy1820) (Neg yvy1810)",fontsize=16,color="black",shape="box"];3561 -> 3710[label="",style="solid", color="black", weight=3]; 3562[label="primPlusInt (Neg yvy1820) (Pos yvy1810)",fontsize=16,color="black",shape="box"];3562 -> 3711[label="",style="solid", color="black", weight=3]; 3563[label="primPlusInt (Neg yvy1820) (Neg yvy1810)",fontsize=16,color="black",shape="box"];3563 -> 3712[label="",style="solid", color="black", weight=3]; 2421 -> 1547[label="",style="dashed", color="red", weight=0]; 2421[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2422 -> 2418[label="",style="dashed", color="red", weight=0]; 2422[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2423 -> 121[label="",style="dashed", color="red", weight=0]; 2423[label="compare yvy146 yvy145 == GT",fontsize=16,color="magenta"];2423 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2409[label="",style="dashed", color="red", weight=0]; 2157[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"];2157 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2158[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5088[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5088[label="",style="solid", color="burlywood", weight=9]; 5088 -> 2208[label="",style="solid", color="burlywood", weight=3]; 5089[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5089[label="",style="solid", color="burlywood", weight=9]; 5089 -> 2209[label="",style="solid", color="burlywood", weight=3]; 1972[label="Succ yvy6200",fontsize=16,color="green",shape="box"];1973[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];1973 -> 2163[label="",style="dashed", color="green", weight=3]; 1974[label="yvy134",fontsize=16,color="green",shape="box"];3564[label="EQ",fontsize=16,color="green",shape="box"];3565[label="GT",fontsize=16,color="green",shape="box"];3566[label="yvy183",fontsize=16,color="green",shape="box"];3567[label="not False",fontsize=16,color="black",shape="box"];3567 -> 3713[label="",style="solid", color="black", weight=3]; 3568[label="not True",fontsize=16,color="black",shape="box"];3568 -> 3714[label="",style="solid", color="black", weight=3]; 3569 -> 1710[label="",style="dashed", color="red", weight=0]; 3569[label="primCmpInt yvy49000 yvy50000",fontsize=16,color="magenta"];3569 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3570[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="blue",shape="box"];5090[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5090[label="",style="solid", color="blue", weight=9]; 5090 -> 3717[label="",style="solid", color="blue", weight=3]; 5091[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5091[label="",style="solid", color="blue", weight=9]; 5091 -> 3718[label="",style="solid", color="blue", weight=3]; 3571[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5092[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3571 -> 5092[label="",style="solid", color="burlywood", weight=9]; 5092 -> 3719[label="",style="solid", color="burlywood", weight=3]; 3572[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5093[label="yvy5000/Float yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3572 -> 5093[label="",style="solid", color="burlywood", weight=9]; 5093 -> 3720[label="",style="solid", color="burlywood", weight=3]; 3573 -> 3721[label="",style="dashed", color="red", weight=0]; 3573[label="primCompAux yvy49000 yvy50000 (compare yvy49001 yvy50001)",fontsize=16,color="magenta"];3573 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3574[label="GT",fontsize=16,color="green",shape="box"];3575[label="LT",fontsize=16,color="green",shape="box"];3576[label="EQ",fontsize=16,color="green",shape="box"];3588[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3588 -> 3723[label="",style="solid", color="black", weight=3]; 3589[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3589 -> 3724[label="",style="solid", color="black", weight=3]; 3590 -> 3306[label="",style="dashed", color="red", weight=0]; 3590[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3590 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3590 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3591[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3591 -> 3727[label="",style="solid", color="black", weight=3]; 3592[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3592 -> 3728[label="",style="solid", color="black", weight=3]; 3593[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3593 -> 3729[label="",style="solid", color="black", weight=3]; 3594[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3594 -> 3730[label="",style="solid", color="black", weight=3]; 3595[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3595 -> 3731[label="",style="solid", color="black", weight=3]; 3596[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3596 -> 3732[label="",style="solid", color="black", weight=3]; 3597[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3597 -> 3733[label="",style="solid", color="black", weight=3]; 3598[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3598 -> 3734[label="",style="solid", color="black", weight=3]; 3599[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3599 -> 3735[label="",style="solid", color="black", weight=3]; 3600[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3600 -> 3736[label="",style="solid", color="black", weight=3]; 3601[label="yvy49000 < yvy50000",fontsize=16,color="black",shape="triangle"];3601 -> 3737[label="",style="solid", color="black", weight=3]; 3602 -> 3579[label="",style="dashed", color="red", weight=0]; 3602[label="yvy49001 < yvy50001 || yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3602 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3602 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3603[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5094[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 3740[label="",style="solid", color="blue", weight=3]; 5095[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 3741[label="",style="solid", color="blue", weight=3]; 5096[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 3742[label="",style="solid", color="blue", weight=3]; 5097[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 3743[label="",style="solid", color="blue", weight=3]; 5098[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5098[label="",style="solid", color="blue", weight=9]; 5098 -> 3744[label="",style="solid", color="blue", weight=3]; 5099[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5099[label="",style="solid", color="blue", weight=9]; 5099 -> 3745[label="",style="solid", color="blue", weight=3]; 5100[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 3746[label="",style="solid", color="blue", weight=3]; 5101[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 3747[label="",style="solid", color="blue", weight=3]; 5102[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 3748[label="",style="solid", color="blue", weight=3]; 5103[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 3749[label="",style="solid", color="blue", weight=3]; 5104[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5104[label="",style="solid", color="blue", weight=9]; 5104 -> 3750[label="",style="solid", color="blue", weight=3]; 5105[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5105[label="",style="solid", color="blue", weight=9]; 5105 -> 3751[label="",style="solid", color="blue", weight=3]; 5106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5106[label="",style="solid", color="blue", weight=9]; 5106 -> 3752[label="",style="solid", color="blue", weight=3]; 5107[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3603 -> 5107[label="",style="solid", color="blue", weight=9]; 5107 -> 3753[label="",style="solid", color="blue", weight=3]; 3604[label="False || yvy195",fontsize=16,color="black",shape="box"];3604 -> 3754[label="",style="solid", color="black", weight=3]; 3605[label="True || yvy195",fontsize=16,color="black",shape="box"];3605 -> 3755[label="",style="solid", color="black", weight=3]; 3606[label="yvy49000",fontsize=16,color="green",shape="box"];3607[label="yvy50000",fontsize=16,color="green",shape="box"];3608[label="yvy49000",fontsize=16,color="green",shape="box"];3609[label="yvy50000",fontsize=16,color="green",shape="box"];3610[label="yvy49000",fontsize=16,color="green",shape="box"];3611[label="yvy50000",fontsize=16,color="green",shape="box"];3612[label="yvy49000",fontsize=16,color="green",shape="box"];3613[label="yvy50000",fontsize=16,color="green",shape="box"];3614[label="yvy49000",fontsize=16,color="green",shape="box"];3615[label="yvy50000",fontsize=16,color="green",shape="box"];3616[label="yvy49000",fontsize=16,color="green",shape="box"];3617[label="yvy50000",fontsize=16,color="green",shape="box"];3618[label="yvy49000",fontsize=16,color="green",shape="box"];3619[label="yvy50000",fontsize=16,color="green",shape="box"];3620[label="yvy49000",fontsize=16,color="green",shape="box"];3621[label="yvy50000",fontsize=16,color="green",shape="box"];3622[label="yvy49000",fontsize=16,color="green",shape="box"];3623[label="yvy50000",fontsize=16,color="green",shape="box"];3624[label="yvy49000",fontsize=16,color="green",shape="box"];3625[label="yvy50000",fontsize=16,color="green",shape="box"];3626[label="yvy49000",fontsize=16,color="green",shape="box"];3627[label="yvy50000",fontsize=16,color="green",shape="box"];3628[label="yvy49000",fontsize=16,color="green",shape="box"];3629[label="yvy50000",fontsize=16,color="green",shape="box"];3630[label="yvy49000",fontsize=16,color="green",shape="box"];3631[label="yvy50000",fontsize=16,color="green",shape="box"];3632[label="yvy49000",fontsize=16,color="green",shape="box"];3633[label="yvy50000",fontsize=16,color="green",shape="box"];3634[label="primCmpChar (Char yvy49000) (Char yvy50000)",fontsize=16,color="black",shape="box"];3634 -> 3756[label="",style="solid", color="black", weight=3]; 3635[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5108[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3635 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 3757[label="",style="solid", color="burlywood", weight=3]; 3636[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) yvy5000",fontsize=16,color="burlywood",shape="box"];5109[label="yvy5000/Double yvy50000 yvy50001",fontsize=10,color="white",style="solid",shape="box"];3636 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 3758[label="",style="solid", color="burlywood", weight=3]; 3637[label="yvy49000",fontsize=16,color="green",shape="box"];3638[label="yvy50000",fontsize=16,color="green",shape="box"];3639[label="yvy49000",fontsize=16,color="green",shape="box"];3640[label="yvy50000",fontsize=16,color="green",shape="box"];3641[label="yvy49000",fontsize=16,color="green",shape="box"];3642[label="yvy50000",fontsize=16,color="green",shape="box"];3643[label="yvy49000",fontsize=16,color="green",shape="box"];3644[label="yvy50000",fontsize=16,color="green",shape="box"];3645[label="yvy49000",fontsize=16,color="green",shape="box"];3646[label="yvy50000",fontsize=16,color="green",shape="box"];3647[label="yvy49000",fontsize=16,color="green",shape="box"];3648[label="yvy50000",fontsize=16,color="green",shape="box"];3649[label="yvy49000",fontsize=16,color="green",shape="box"];3650[label="yvy50000",fontsize=16,color="green",shape="box"];3651[label="yvy49000",fontsize=16,color="green",shape="box"];3652[label="yvy50000",fontsize=16,color="green",shape="box"];3653[label="yvy49000",fontsize=16,color="green",shape="box"];3654[label="yvy50000",fontsize=16,color="green",shape="box"];3655[label="yvy49000",fontsize=16,color="green",shape="box"];3656[label="yvy50000",fontsize=16,color="green",shape="box"];3657[label="yvy49000",fontsize=16,color="green",shape="box"];3658[label="yvy50000",fontsize=16,color="green",shape="box"];3659[label="yvy49000",fontsize=16,color="green",shape="box"];3660[label="yvy50000",fontsize=16,color="green",shape="box"];3661[label="yvy49000",fontsize=16,color="green",shape="box"];3662[label="yvy50000",fontsize=16,color="green",shape="box"];3663[label="yvy49000",fontsize=16,color="green",shape="box"];3664[label="yvy50000",fontsize=16,color="green",shape="box"];3665[label="yvy49000",fontsize=16,color="green",shape="box"];3666[label="yvy50000",fontsize=16,color="green",shape="box"];3667[label="yvy49000",fontsize=16,color="green",shape="box"];3668[label="yvy50000",fontsize=16,color="green",shape="box"];3669[label="yvy49000",fontsize=16,color="green",shape="box"];3670[label="yvy50000",fontsize=16,color="green",shape="box"];3671[label="yvy49000",fontsize=16,color="green",shape="box"];3672[label="yvy50000",fontsize=16,color="green",shape="box"];3673[label="yvy49000",fontsize=16,color="green",shape="box"];3674[label="yvy50000",fontsize=16,color="green",shape="box"];3675[label="yvy49000",fontsize=16,color="green",shape="box"];3676[label="yvy50000",fontsize=16,color="green",shape="box"];3677[label="yvy49000",fontsize=16,color="green",shape="box"];3678[label="yvy50000",fontsize=16,color="green",shape="box"];3679[label="yvy49000",fontsize=16,color="green",shape="box"];3680[label="yvy50000",fontsize=16,color="green",shape="box"];3681[label="yvy49000",fontsize=16,color="green",shape="box"];3682[label="yvy50000",fontsize=16,color="green",shape="box"];3683[label="yvy49000",fontsize=16,color="green",shape="box"];3684[label="yvy50000",fontsize=16,color="green",shape="box"];3685[label="yvy49000",fontsize=16,color="green",shape="box"];3686[label="yvy50000",fontsize=16,color="green",shape="box"];3687[label="yvy49000",fontsize=16,color="green",shape="box"];3688[label="yvy50000",fontsize=16,color="green",shape="box"];3689[label="yvy49000",fontsize=16,color="green",shape="box"];3690[label="yvy50000",fontsize=16,color="green",shape="box"];3691[label="yvy49000",fontsize=16,color="green",shape="box"];3692[label="yvy50000",fontsize=16,color="green",shape="box"];3693 -> 3588[label="",style="dashed", color="red", weight=0]; 3693[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3693 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3693 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3694 -> 3589[label="",style="dashed", color="red", weight=0]; 3694[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3694 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3694 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3695 -> 3306[label="",style="dashed", color="red", weight=0]; 3695[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3695 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3695 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3696 -> 3591[label="",style="dashed", color="red", weight=0]; 3696[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3696 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3696 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3592[label="",style="dashed", color="red", weight=0]; 3697[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3697 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3698 -> 3593[label="",style="dashed", color="red", weight=0]; 3698[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3698 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3698 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3594[label="",style="dashed", color="red", weight=0]; 3699[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3699 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3595[label="",style="dashed", color="red", weight=0]; 3700[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3700 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3596[label="",style="dashed", color="red", weight=0]; 3701[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3701 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3597[label="",style="dashed", color="red", weight=0]; 3702[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3702 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3598[label="",style="dashed", color="red", weight=0]; 3703[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3703 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3599[label="",style="dashed", color="red", weight=0]; 3704[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3704 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3600[label="",style="dashed", color="red", weight=0]; 3705[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3705 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3706 -> 3601[label="",style="dashed", color="red", weight=0]; 3706[label="yvy49000 < yvy50000",fontsize=16,color="magenta"];3706 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3706 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3707[label="yvy49001 <= yvy50001",fontsize=16,color="blue",shape="box"];5110[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5110[label="",style="solid", color="blue", weight=9]; 5110 -> 3787[label="",style="solid", color="blue", weight=3]; 5111[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5111[label="",style="solid", color="blue", weight=9]; 5111 -> 3788[label="",style="solid", color="blue", weight=3]; 5112[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5112[label="",style="solid", color="blue", weight=9]; 5112 -> 3789[label="",style="solid", color="blue", weight=3]; 5113[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5113[label="",style="solid", color="blue", weight=9]; 5113 -> 3790[label="",style="solid", color="blue", weight=3]; 5114[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5114[label="",style="solid", color="blue", weight=9]; 5114 -> 3791[label="",style="solid", color="blue", weight=3]; 5115[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5115[label="",style="solid", color="blue", weight=9]; 5115 -> 3792[label="",style="solid", color="blue", weight=3]; 5116[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5116[label="",style="solid", color="blue", weight=9]; 5116 -> 3793[label="",style="solid", color="blue", weight=3]; 5117[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5117[label="",style="solid", color="blue", weight=9]; 5117 -> 3794[label="",style="solid", color="blue", weight=3]; 5118[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 3795[label="",style="solid", color="blue", weight=3]; 5119[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 3796[label="",style="solid", color="blue", weight=3]; 5120[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 3797[label="",style="solid", color="blue", weight=3]; 5121[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 3798[label="",style="solid", color="blue", weight=3]; 5122[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5122[label="",style="solid", color="blue", weight=9]; 5122 -> 3799[label="",style="solid", color="blue", weight=3]; 5123[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5123[label="",style="solid", color="blue", weight=9]; 5123 -> 3800[label="",style="solid", color="blue", weight=3]; 3708[label="yvy49000 == yvy50000",fontsize=16,color="blue",shape="box"];5124[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5124[label="",style="solid", color="blue", weight=9]; 5124 -> 3801[label="",style="solid", color="blue", weight=3]; 5125[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5125[label="",style="solid", color="blue", weight=9]; 5125 -> 3802[label="",style="solid", color="blue", weight=3]; 5126[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5126[label="",style="solid", color="blue", weight=9]; 5126 -> 3803[label="",style="solid", color="blue", weight=3]; 5127[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5127[label="",style="solid", color="blue", weight=9]; 5127 -> 3804[label="",style="solid", color="blue", weight=3]; 5128[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5128[label="",style="solid", color="blue", weight=9]; 5128 -> 3805[label="",style="solid", color="blue", weight=3]; 5129[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5129[label="",style="solid", color="blue", weight=9]; 5129 -> 3806[label="",style="solid", color="blue", weight=3]; 5130[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5130[label="",style="solid", color="blue", weight=9]; 5130 -> 3807[label="",style="solid", color="blue", weight=3]; 5131[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5131[label="",style="solid", color="blue", weight=9]; 5131 -> 3808[label="",style="solid", color="blue", weight=3]; 5132[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5132[label="",style="solid", color="blue", weight=9]; 5132 -> 3809[label="",style="solid", color="blue", weight=3]; 5133[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5133[label="",style="solid", color="blue", weight=9]; 5133 -> 3810[label="",style="solid", color="blue", weight=3]; 5134[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5134[label="",style="solid", color="blue", weight=9]; 5134 -> 3811[label="",style="solid", color="blue", weight=3]; 5135[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5135[label="",style="solid", color="blue", weight=9]; 5135 -> 3812[label="",style="solid", color="blue", weight=3]; 5136[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5136[label="",style="solid", color="blue", weight=9]; 5136 -> 3813[label="",style="solid", color="blue", weight=3]; 5137[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5137[label="",style="solid", color="blue", weight=9]; 5137 -> 3814[label="",style="solid", color="blue", weight=3]; 2134 -> 2432[label="",style="dashed", color="red", weight=0]; 2134[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2134 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2185[label="primMulNat (Succ yvy400100) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2185 -> 2305[label="",style="solid", color="black", weight=3]; 2186[label="primMulNat (Succ yvy400100) Zero",fontsize=16,color="black",shape="box"];2186 -> 2306[label="",style="solid", color="black", weight=3]; 2187[label="primMulNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2187 -> 2307[label="",style="solid", color="black", weight=3]; 2188[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2188 -> 2308[label="",style="solid", color="black", weight=3]; 2309 -> 2288[label="",style="dashed", color="red", weight=0]; 2309[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="magenta"];2309 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2310[label="GT",fontsize=16,color="green",shape="box"];2311[label="primCmpInt (Pos Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2311 -> 2456[label="",style="solid", color="black", weight=3]; 2312[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2312 -> 2457[label="",style="solid", color="black", weight=3]; 2313[label="primCmpInt (Pos Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2313 -> 2458[label="",style="solid", color="black", weight=3]; 2314[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2314 -> 2459[label="",style="solid", color="black", weight=3]; 2315[label="LT",fontsize=16,color="green",shape="box"];2316 -> 2288[label="",style="dashed", color="red", weight=0]; 2316[label="primCmpNat yvy500 (Succ yvy4900)",fontsize=16,color="magenta"];2316 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2317[label="primCmpInt (Neg Zero) (Pos (Succ yvy5000))",fontsize=16,color="black",shape="box"];2317 -> 2462[label="",style="solid", color="black", weight=3]; 2318[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2318 -> 2463[label="",style="solid", color="black", weight=3]; 2319[label="primCmpInt (Neg Zero) (Neg (Succ yvy5000))",fontsize=16,color="black",shape="box"];2319 -> 2464[label="",style="solid", color="black", weight=3]; 2320[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2320 -> 2465[label="",style="solid", color="black", weight=3]; 4416 -> 3386[label="",style="dashed", color="red", weight=0]; 4416[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy220 yvy218 yvy221 + FiniteMap.mkBranchRight_size yvy220 yvy218 yvy221",fontsize=16,color="magenta"];4416 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4416 -> 4418[label="",style="dashed", color="magenta", weight=3]; 4415[label="FiniteMap.mkBranchUnbox yvy220 yvy218 yvy221 yvy225",fontsize=16,color="black",shape="triangle"];4415 -> 4419[label="",style="solid", color="black", weight=3]; 3709[label="Pos (primPlusNat yvy1820 yvy1810)",fontsize=16,color="green",shape="box"];3709 -> 3815[label="",style="dashed", color="green", weight=3]; 3710[label="primMinusNat yvy1820 yvy1810",fontsize=16,color="burlywood",shape="triangle"];5138[label="yvy1820/Succ yvy18200",fontsize=10,color="white",style="solid",shape="box"];3710 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 3816[label="",style="solid", color="burlywood", weight=3]; 5139[label="yvy1820/Zero",fontsize=10,color="white",style="solid",shape="box"];3710 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 3817[label="",style="solid", color="burlywood", weight=3]; 3711 -> 3710[label="",style="dashed", color="red", weight=0]; 3711[label="primMinusNat yvy1810 yvy1820",fontsize=16,color="magenta"];3711 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3711 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3712[label="Neg (primPlusNat yvy1820 yvy1810)",fontsize=16,color="green",shape="box"];3712 -> 3820[label="",style="dashed", color="green", weight=3]; 2444[label="GT",fontsize=16,color="green",shape="box"];2445 -> 1631[label="",style="dashed", color="red", weight=0]; 2445[label="compare yvy146 yvy145",fontsize=16,color="magenta"];2445 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2413[label="",style="dashed", color="red", weight=0]; 2410[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy67 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2410 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2409[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 yvy143",fontsize=16,color="burlywood",shape="triangle"];5140[label="yvy143/False",fontsize=10,color="white",style="solid",shape="box"];2409 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 2424[label="",style="solid", color="burlywood", weight=3]; 5141[label="yvy143/True",fontsize=10,color="white",style="solid",shape="box"];2409 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 2425[label="",style="solid", color="burlywood", weight=3]; 2208[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy67 FiniteMap.EmptyFM yvy67 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2208 -> 2332[label="",style="solid", color="black", weight=3]; 2209[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"];2209 -> 2333[label="",style="solid", color="black", weight=3]; 2163 -> 2432[label="",style="dashed", color="red", weight=0]; 2163[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2163 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2436[label="",style="dashed", color="magenta", weight=3]; 3713[label="True",fontsize=16,color="green",shape="box"];3714[label="False",fontsize=16,color="green",shape="box"];3715[label="yvy49000",fontsize=16,color="green",shape="box"];3716[label="yvy50000",fontsize=16,color="green",shape="box"];3717 -> 1631[label="",style="dashed", color="red", weight=0]; 3717[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3717 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3717 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3718 -> 3413[label="",style="dashed", color="red", weight=0]; 3718[label="compare (yvy49000 * yvy50001) (yvy50000 * yvy49001)",fontsize=16,color="magenta"];3718 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3718 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3719[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5142[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 3825[label="",style="solid", color="burlywood", weight=3]; 5143[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 3826[label="",style="solid", color="burlywood", weight=3]; 3720[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5144[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3720 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 3827[label="",style="solid", color="burlywood", weight=3]; 5145[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3720 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 3828[label="",style="solid", color="burlywood", weight=3]; 3722 -> 3416[label="",style="dashed", color="red", weight=0]; 3722[label="compare yvy49001 yvy50001",fontsize=16,color="magenta"];3722 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3722 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3721[label="primCompAux yvy49000 yvy50000 yvy196",fontsize=16,color="black",shape="triangle"];3721 -> 3831[label="",style="solid", color="black", weight=3]; 3723 -> 121[label="",style="dashed", color="red", weight=0]; 3723[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3723 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3723 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3724 -> 121[label="",style="dashed", color="red", weight=0]; 3724[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3724 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3724 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3725[label="yvy50000",fontsize=16,color="green",shape="box"];3726[label="yvy49000",fontsize=16,color="green",shape="box"];3727 -> 121[label="",style="dashed", color="red", weight=0]; 3727[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3727 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3727 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3728 -> 121[label="",style="dashed", color="red", weight=0]; 3728[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3728 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3728 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3729 -> 121[label="",style="dashed", color="red", weight=0]; 3729[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3729 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3729 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3730 -> 121[label="",style="dashed", color="red", weight=0]; 3730[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3730 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3730 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3731 -> 121[label="",style="dashed", color="red", weight=0]; 3731[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3731 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3732 -> 121[label="",style="dashed", color="red", weight=0]; 3732[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3732 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3732 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3733 -> 121[label="",style="dashed", color="red", weight=0]; 3733[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3733 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3734 -> 121[label="",style="dashed", color="red", weight=0]; 3734[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3734 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3735 -> 121[label="",style="dashed", color="red", weight=0]; 3735[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3735 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3735 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3736 -> 121[label="",style="dashed", color="red", weight=0]; 3736[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3736 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3736 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3737 -> 121[label="",style="dashed", color="red", weight=0]; 3737[label="compare yvy49000 yvy50000 == LT",fontsize=16,color="magenta"];3737 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3737 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3738[label="yvy49001 < yvy50001",fontsize=16,color="blue",shape="box"];5146[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5146[label="",style="solid", color="blue", weight=9]; 5146 -> 3882[label="",style="solid", color="blue", weight=3]; 5147[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5147[label="",style="solid", color="blue", weight=9]; 5147 -> 3883[label="",style="solid", color="blue", weight=3]; 5148[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5148[label="",style="solid", color="blue", weight=9]; 5148 -> 3884[label="",style="solid", color="blue", weight=3]; 5149[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5149[label="",style="solid", color="blue", weight=9]; 5149 -> 3885[label="",style="solid", color="blue", weight=3]; 5150[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5150[label="",style="solid", color="blue", weight=9]; 5150 -> 3886[label="",style="solid", color="blue", weight=3]; 5151[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5151[label="",style="solid", color="blue", weight=9]; 5151 -> 3887[label="",style="solid", color="blue", weight=3]; 5152[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5152[label="",style="solid", color="blue", weight=9]; 5152 -> 3888[label="",style="solid", color="blue", weight=3]; 5153[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5153[label="",style="solid", color="blue", weight=9]; 5153 -> 3889[label="",style="solid", color="blue", weight=3]; 5154[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5154[label="",style="solid", color="blue", weight=9]; 5154 -> 3890[label="",style="solid", color="blue", weight=3]; 5155[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5155[label="",style="solid", color="blue", weight=9]; 5155 -> 3891[label="",style="solid", color="blue", weight=3]; 5156[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5156[label="",style="solid", color="blue", weight=9]; 5156 -> 3892[label="",style="solid", color="blue", weight=3]; 5157[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5157[label="",style="solid", color="blue", weight=9]; 5157 -> 3893[label="",style="solid", color="blue", weight=3]; 5158[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5158[label="",style="solid", color="blue", weight=9]; 5158 -> 3894[label="",style="solid", color="blue", weight=3]; 5159[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3738 -> 5159[label="",style="solid", color="blue", weight=9]; 5159 -> 3895[label="",style="solid", color="blue", weight=3]; 3739 -> 2881[label="",style="dashed", color="red", weight=0]; 3739[label="yvy49001 == yvy50001 && yvy49002 <= yvy50002",fontsize=16,color="magenta"];3739 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3739 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3740 -> 2559[label="",style="dashed", color="red", weight=0]; 3740[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3740 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3740 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3741 -> 2549[label="",style="dashed", color="red", weight=0]; 3741[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3741 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3741 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3742 -> 2556[label="",style="dashed", color="red", weight=0]; 3742[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3742 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3742 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3743 -> 2560[label="",style="dashed", color="red", weight=0]; 3743[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3743 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3743 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3744 -> 2558[label="",style="dashed", color="red", weight=0]; 3744[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3744 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3744 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3745 -> 2555[label="",style="dashed", color="red", weight=0]; 3745[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3745 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3745 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3746 -> 2547[label="",style="dashed", color="red", weight=0]; 3746[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3746 -> 3910[label="",style="dashed", color="magenta", weight=3]; 3746 -> 3911[label="",style="dashed", color="magenta", weight=3]; 3747 -> 2548[label="",style="dashed", color="red", weight=0]; 3747[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3747 -> 3912[label="",style="dashed", color="magenta", weight=3]; 3747 -> 3913[label="",style="dashed", color="magenta", weight=3]; 3748 -> 2554[label="",style="dashed", color="red", weight=0]; 3748[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3748 -> 3914[label="",style="dashed", color="magenta", weight=3]; 3748 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3749 -> 121[label="",style="dashed", color="red", weight=0]; 3749[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3749 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3749 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3750 -> 2552[label="",style="dashed", color="red", weight=0]; 3750[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3750 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3751 -> 2551[label="",style="dashed", color="red", weight=0]; 3751[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3751 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3751 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3752 -> 2553[label="",style="dashed", color="red", weight=0]; 3752[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3752 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3752 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3753 -> 2550[label="",style="dashed", color="red", weight=0]; 3753[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3753 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3754[label="yvy195",fontsize=16,color="green",shape="box"];3755[label="True",fontsize=16,color="green",shape="box"];3756 -> 2288[label="",style="dashed", color="red", weight=0]; 3756[label="primCmpNat yvy49000 yvy50000",fontsize=16,color="magenta"];3756 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3757[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5160[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3757 -> 5160[label="",style="solid", color="burlywood", weight=9]; 5160 -> 3928[label="",style="solid", color="burlywood", weight=3]; 5161[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3757 -> 5161[label="",style="solid", color="burlywood", weight=9]; 5161 -> 3929[label="",style="solid", color="burlywood", weight=3]; 3758[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 yvy50001)",fontsize=16,color="burlywood",shape="box"];5162[label="yvy50001/Pos yvy500010",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 3930[label="",style="solid", color="burlywood", weight=3]; 5163[label="yvy50001/Neg yvy500010",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 3931[label="",style="solid", color="burlywood", weight=3]; 3759[label="yvy50000",fontsize=16,color="green",shape="box"];3760[label="yvy49000",fontsize=16,color="green",shape="box"];3761[label="yvy50000",fontsize=16,color="green",shape="box"];3762[label="yvy49000",fontsize=16,color="green",shape="box"];3763[label="yvy50000",fontsize=16,color="green",shape="box"];3764[label="yvy49000",fontsize=16,color="green",shape="box"];3765[label="yvy50000",fontsize=16,color="green",shape="box"];3766[label="yvy49000",fontsize=16,color="green",shape="box"];3767[label="yvy50000",fontsize=16,color="green",shape="box"];3768[label="yvy49000",fontsize=16,color="green",shape="box"];3769[label="yvy50000",fontsize=16,color="green",shape="box"];3770[label="yvy49000",fontsize=16,color="green",shape="box"];3771[label="yvy50000",fontsize=16,color="green",shape="box"];3772[label="yvy49000",fontsize=16,color="green",shape="box"];3773[label="yvy50000",fontsize=16,color="green",shape="box"];3774[label="yvy49000",fontsize=16,color="green",shape="box"];3775[label="yvy50000",fontsize=16,color="green",shape="box"];3776[label="yvy49000",fontsize=16,color="green",shape="box"];3777[label="yvy50000",fontsize=16,color="green",shape="box"];3778[label="yvy49000",fontsize=16,color="green",shape="box"];3779[label="yvy50000",fontsize=16,color="green",shape="box"];3780[label="yvy49000",fontsize=16,color="green",shape="box"];3781[label="yvy50000",fontsize=16,color="green",shape="box"];3782[label="yvy49000",fontsize=16,color="green",shape="box"];3783[label="yvy50000",fontsize=16,color="green",shape="box"];3784[label="yvy49000",fontsize=16,color="green",shape="box"];3785[label="yvy50000",fontsize=16,color="green",shape="box"];3786[label="yvy49000",fontsize=16,color="green",shape="box"];3787 -> 3065[label="",style="dashed", color="red", weight=0]; 3787[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3787 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3787 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3788 -> 3066[label="",style="dashed", color="red", weight=0]; 3788[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3788 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3788 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3789 -> 3067[label="",style="dashed", color="red", weight=0]; 3789[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3789 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3789 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3790 -> 3068[label="",style="dashed", color="red", weight=0]; 3790[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3790 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3790 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3069[label="",style="dashed", color="red", weight=0]; 3791[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3791 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3070[label="",style="dashed", color="red", weight=0]; 3792[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3792 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3071[label="",style="dashed", color="red", weight=0]; 3793[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3793 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3072[label="",style="dashed", color="red", weight=0]; 3794[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3794 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3795 -> 3073[label="",style="dashed", color="red", weight=0]; 3795[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3795 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3795 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3796 -> 3074[label="",style="dashed", color="red", weight=0]; 3796[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3796 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3796 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3797 -> 3075[label="",style="dashed", color="red", weight=0]; 3797[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3797 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3797 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3798 -> 3076[label="",style="dashed", color="red", weight=0]; 3798[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3798 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3798 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3799 -> 3077[label="",style="dashed", color="red", weight=0]; 3799[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3799 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3799 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3800 -> 3078[label="",style="dashed", color="red", weight=0]; 3800[label="yvy49001 <= yvy50001",fontsize=16,color="magenta"];3800 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3800 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3801 -> 2559[label="",style="dashed", color="red", weight=0]; 3801[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3801 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3801 -> 3961[label="",style="dashed", color="magenta", weight=3]; 3802 -> 2549[label="",style="dashed", color="red", weight=0]; 3802[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3802 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3802 -> 3963[label="",style="dashed", color="magenta", weight=3]; 3803 -> 2556[label="",style="dashed", color="red", weight=0]; 3803[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3803 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3803 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3804 -> 2560[label="",style="dashed", color="red", weight=0]; 3804[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3804 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3804 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3805 -> 2558[label="",style="dashed", color="red", weight=0]; 3805[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3805 -> 3968[label="",style="dashed", color="magenta", weight=3]; 3805 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3806 -> 2555[label="",style="dashed", color="red", weight=0]; 3806[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3806 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3807 -> 2547[label="",style="dashed", color="red", weight=0]; 3807[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3807 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3807 -> 3973[label="",style="dashed", color="magenta", weight=3]; 3808 -> 2548[label="",style="dashed", color="red", weight=0]; 3808[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3808 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3808 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3809 -> 2554[label="",style="dashed", color="red", weight=0]; 3809[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3809 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3809 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3810 -> 121[label="",style="dashed", color="red", weight=0]; 3810[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3810 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3810 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3811 -> 2552[label="",style="dashed", color="red", weight=0]; 3811[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3811 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3812 -> 2551[label="",style="dashed", color="red", weight=0]; 3812[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3812 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3812 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3813 -> 2553[label="",style="dashed", color="red", weight=0]; 3813[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3813 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3813 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3814 -> 2550[label="",style="dashed", color="red", weight=0]; 3814[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];3814 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3987[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2432[label="",style="dashed", color="red", weight=0]; 2433[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2433 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2434[label="yvy6200",fontsize=16,color="green",shape="box"];2432[label="primPlusNat yvy149 (Succ yvy300000)",fontsize=16,color="burlywood",shape="triangle"];5164[label="yvy149/Succ yvy1490",fontsize=10,color="white",style="solid",shape="box"];2432 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 2448[label="",style="solid", color="burlywood", weight=3]; 5165[label="yvy149/Zero",fontsize=10,color="white",style="solid",shape="box"];2432 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 2449[label="",style="solid", color="burlywood", weight=3]; 2305 -> 2432[label="",style="dashed", color="red", weight=0]; 2305[label="primPlusNat (primMulNat yvy400100 (Succ yvy300000)) (Succ yvy300000)",fontsize=16,color="magenta"];2305 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2306[label="Zero",fontsize=16,color="green",shape="box"];2307[label="Zero",fontsize=16,color="green",shape="box"];2308[label="Zero",fontsize=16,color="green",shape="box"];2454[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2455[label="yvy500",fontsize=16,color="green",shape="box"];2288[label="primCmpNat yvy490 yvy500",fontsize=16,color="burlywood",shape="triangle"];5166[label="yvy490/Succ yvy4900",fontsize=10,color="white",style="solid",shape="box"];2288 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 2396[label="",style="solid", color="burlywood", weight=3]; 5167[label="yvy490/Zero",fontsize=10,color="white",style="solid",shape="box"];2288 -> 5167[label="",style="solid", color="burlywood", weight=9]; 5167 -> 2397[label="",style="solid", color="burlywood", weight=3]; 2456 -> 2288[label="",style="dashed", color="red", weight=0]; 2456[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="magenta"];2456 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2457[label="EQ",fontsize=16,color="green",shape="box"];2458[label="GT",fontsize=16,color="green",shape="box"];2459[label="EQ",fontsize=16,color="green",shape="box"];2460[label="yvy500",fontsize=16,color="green",shape="box"];2461[label="Succ yvy4900",fontsize=16,color="green",shape="box"];2462[label="LT",fontsize=16,color="green",shape="box"];2463[label="EQ",fontsize=16,color="green",shape="box"];2464 -> 2288[label="",style="dashed", color="red", weight=0]; 2464[label="primCmpNat (Succ yvy5000) Zero",fontsize=16,color="magenta"];2464 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2465[label="EQ",fontsize=16,color="green",shape="box"];4417 -> 3386[label="",style="dashed", color="red", weight=0]; 4417[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy220 yvy218 yvy221",fontsize=16,color="magenta"];4417 -> 4422[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4423[label="",style="dashed", color="magenta", weight=3]; 4418[label="FiniteMap.mkBranchRight_size yvy220 yvy218 yvy221",fontsize=16,color="black",shape="box"];4418 -> 4424[label="",style="solid", color="black", weight=3]; 4419[label="yvy225",fontsize=16,color="green",shape="box"];3815 -> 2781[label="",style="dashed", color="red", weight=0]; 3815[label="primPlusNat yvy1820 yvy1810",fontsize=16,color="magenta"];3815 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3815 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3816[label="primMinusNat (Succ yvy18200) yvy1810",fontsize=16,color="burlywood",shape="box"];5168[label="yvy1810/Succ yvy18100",fontsize=10,color="white",style="solid",shape="box"];3816 -> 5168[label="",style="solid", color="burlywood", weight=9]; 5168 -> 3990[label="",style="solid", color="burlywood", weight=3]; 5169[label="yvy1810/Zero",fontsize=10,color="white",style="solid",shape="box"];3816 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 3991[label="",style="solid", color="burlywood", weight=3]; 3817[label="primMinusNat Zero yvy1810",fontsize=16,color="burlywood",shape="box"];5170[label="yvy1810/Succ yvy18100",fontsize=10,color="white",style="solid",shape="box"];3817 -> 5170[label="",style="solid", color="burlywood", weight=9]; 5170 -> 3992[label="",style="solid", color="burlywood", weight=3]; 5171[label="yvy1810/Zero",fontsize=10,color="white",style="solid",shape="box"];3817 -> 5171[label="",style="solid", color="burlywood", weight=9]; 5171 -> 3993[label="",style="solid", color="burlywood", weight=3]; 3818[label="yvy1820",fontsize=16,color="green",shape="box"];3819[label="yvy1810",fontsize=16,color="green",shape="box"];3820 -> 2781[label="",style="dashed", color="red", weight=0]; 3820[label="primPlusNat yvy1820 yvy1810",fontsize=16,color="magenta"];3820 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3820 -> 3995[label="",style="dashed", color="magenta", weight=3]; 2482[label="yvy146",fontsize=16,color="green",shape="box"];2483[label="yvy145",fontsize=16,color="green",shape="box"];2419 -> 986[label="",style="dashed", color="red", weight=0]; 2419[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2419 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2424[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 False",fontsize=16,color="black",shape="box"];2424 -> 2450[label="",style="solid", color="black", weight=3]; 2425[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2425 -> 2451[label="",style="solid", color="black", weight=3]; 2332[label="error []",fontsize=16,color="red",shape="box"];2333[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"];2333 -> 2429[label="",style="solid", color="black", weight=3]; 2435 -> 2432[label="",style="dashed", color="red", weight=0]; 2435[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2435 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2436[label="yvy6200",fontsize=16,color="green",shape="box"];3821 -> 986[label="",style="dashed", color="red", weight=0]; 3821[label="yvy49000 * yvy50001",fontsize=16,color="magenta"];3821 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3822 -> 986[label="",style="dashed", color="red", weight=0]; 3822[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];3822 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3822 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3823[label="yvy49000 * yvy50001",fontsize=16,color="burlywood",shape="triangle"];5172[label="yvy49000/Integer yvy490000",fontsize=10,color="white",style="solid",shape="box"];3823 -> 5172[label="",style="solid", color="burlywood", weight=9]; 5172 -> 4000[label="",style="solid", color="burlywood", weight=3]; 3824 -> 3823[label="",style="dashed", color="red", weight=0]; 3824[label="yvy50000 * yvy49001",fontsize=16,color="magenta"];3824 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3824 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3825[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3825 -> 4003[label="",style="solid", color="black", weight=3]; 3826[label="primCmpFloat (Float yvy49000 (Pos yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3826 -> 4004[label="",style="solid", color="black", weight=3]; 3827[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3827 -> 4005[label="",style="solid", color="black", weight=3]; 3828[label="primCmpFloat (Float yvy49000 (Neg yvy490010)) (Float yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3828 -> 4006[label="",style="solid", color="black", weight=3]; 3829[label="yvy49001",fontsize=16,color="green",shape="box"];3830[label="yvy50001",fontsize=16,color="green",shape="box"];3831 -> 4007[label="",style="dashed", color="red", weight=0]; 3831[label="primCompAux0 yvy196 (compare yvy49000 yvy50000)",fontsize=16,color="magenta"];3831 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3831 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3856[label="LT",fontsize=16,color="green",shape="box"];3857 -> 3411[label="",style="dashed", color="red", weight=0]; 3857[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3857 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3857 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3858[label="LT",fontsize=16,color="green",shape="box"];3859[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3859 -> 4012[label="",style="solid", color="black", weight=3]; 3860[label="LT",fontsize=16,color="green",shape="box"];3861 -> 3413[label="",style="dashed", color="red", weight=0]; 3861[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3861 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3861 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3862[label="LT",fontsize=16,color="green",shape="box"];3863 -> 3414[label="",style="dashed", color="red", weight=0]; 3863[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3863 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3863 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3864[label="LT",fontsize=16,color="green",shape="box"];3865 -> 3415[label="",style="dashed", color="red", weight=0]; 3865[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3865 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3865 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3866[label="LT",fontsize=16,color="green",shape="box"];3867 -> 3416[label="",style="dashed", color="red", weight=0]; 3867[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3867 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3867 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3868[label="LT",fontsize=16,color="green",shape="box"];3869[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3869 -> 4021[label="",style="solid", color="black", weight=3]; 3870[label="LT",fontsize=16,color="green",shape="box"];3871[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3871 -> 4022[label="",style="solid", color="black", weight=3]; 3872[label="LT",fontsize=16,color="green",shape="box"];3873[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3873 -> 4023[label="",style="solid", color="black", weight=3]; 3874[label="LT",fontsize=16,color="green",shape="box"];3875 -> 3417[label="",style="dashed", color="red", weight=0]; 3875[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3875 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3875 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3876[label="LT",fontsize=16,color="green",shape="box"];3877 -> 3418[label="",style="dashed", color="red", weight=0]; 3877[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];3877 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3877 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3878[label="LT",fontsize=16,color="green",shape="box"];3879[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3879 -> 4028[label="",style="solid", color="black", weight=3]; 3880[label="LT",fontsize=16,color="green",shape="box"];3881[label="compare yvy49000 yvy50000",fontsize=16,color="black",shape="triangle"];3881 -> 4029[label="",style="solid", color="black", weight=3]; 3882 -> 3588[label="",style="dashed", color="red", weight=0]; 3882[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3882 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3882 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3883 -> 3589[label="",style="dashed", color="red", weight=0]; 3883[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3883 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3883 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3884 -> 3306[label="",style="dashed", color="red", weight=0]; 3884[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3884 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3884 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3885 -> 3591[label="",style="dashed", color="red", weight=0]; 3885[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3885 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3885 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3886 -> 3592[label="",style="dashed", color="red", weight=0]; 3886[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3886 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3886 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3593[label="",style="dashed", color="red", weight=0]; 3887[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3887 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4041[label="",style="dashed", color="magenta", weight=3]; 3888 -> 3594[label="",style="dashed", color="red", weight=0]; 3888[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3888 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3888 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3889 -> 3595[label="",style="dashed", color="red", weight=0]; 3889[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3889 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3889 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3890 -> 3596[label="",style="dashed", color="red", weight=0]; 3890[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3890 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3890 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3891 -> 3597[label="",style="dashed", color="red", weight=0]; 3891[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3891 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3891 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3892 -> 3598[label="",style="dashed", color="red", weight=0]; 3892[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3892 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3892 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3893 -> 3599[label="",style="dashed", color="red", weight=0]; 3893[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3893 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3893 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3894 -> 3600[label="",style="dashed", color="red", weight=0]; 3894[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3894 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3894 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3895 -> 3601[label="",style="dashed", color="red", weight=0]; 3895[label="yvy49001 < yvy50001",fontsize=16,color="magenta"];3895 -> 4056[label="",style="dashed", color="magenta", weight=3]; 3895 -> 4057[label="",style="dashed", color="magenta", weight=3]; 3896[label="yvy49002 <= yvy50002",fontsize=16,color="blue",shape="box"];5173[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 4058[label="",style="solid", color="blue", weight=3]; 5174[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 4059[label="",style="solid", color="blue", weight=3]; 5175[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 4060[label="",style="solid", color="blue", weight=3]; 5176[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 4061[label="",style="solid", color="blue", weight=3]; 5177[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5177[label="",style="solid", color="blue", weight=9]; 5177 -> 4062[label="",style="solid", color="blue", weight=3]; 5178[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5178[label="",style="solid", color="blue", weight=9]; 5178 -> 4063[label="",style="solid", color="blue", weight=3]; 5179[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5179[label="",style="solid", color="blue", weight=9]; 5179 -> 4064[label="",style="solid", color="blue", weight=3]; 5180[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5180[label="",style="solid", color="blue", weight=9]; 5180 -> 4065[label="",style="solid", color="blue", weight=3]; 5181[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5181[label="",style="solid", color="blue", weight=9]; 5181 -> 4066[label="",style="solid", color="blue", weight=3]; 5182[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5182[label="",style="solid", color="blue", weight=9]; 5182 -> 4067[label="",style="solid", color="blue", weight=3]; 5183[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5183[label="",style="solid", color="blue", weight=9]; 5183 -> 4068[label="",style="solid", color="blue", weight=3]; 5184[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5184[label="",style="solid", color="blue", weight=9]; 5184 -> 4069[label="",style="solid", color="blue", weight=3]; 5185[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5185[label="",style="solid", color="blue", weight=9]; 5185 -> 4070[label="",style="solid", color="blue", weight=3]; 5186[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3896 -> 5186[label="",style="solid", color="blue", weight=9]; 5186 -> 4071[label="",style="solid", color="blue", weight=3]; 3897[label="yvy49001 == yvy50001",fontsize=16,color="blue",shape="box"];5187[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5187[label="",style="solid", color="blue", weight=9]; 5187 -> 4072[label="",style="solid", color="blue", weight=3]; 5188[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5188[label="",style="solid", color="blue", weight=9]; 5188 -> 4073[label="",style="solid", color="blue", weight=3]; 5189[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5189[label="",style="solid", color="blue", weight=9]; 5189 -> 4074[label="",style="solid", color="blue", weight=3]; 5190[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5190[label="",style="solid", color="blue", weight=9]; 5190 -> 4075[label="",style="solid", color="blue", weight=3]; 5191[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5191[label="",style="solid", color="blue", weight=9]; 5191 -> 4076[label="",style="solid", color="blue", weight=3]; 5192[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5192[label="",style="solid", color="blue", weight=9]; 5192 -> 4077[label="",style="solid", color="blue", weight=3]; 5193[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5193[label="",style="solid", color="blue", weight=9]; 5193 -> 4078[label="",style="solid", color="blue", weight=3]; 5194[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5194[label="",style="solid", color="blue", weight=9]; 5194 -> 4079[label="",style="solid", color="blue", weight=3]; 5195[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5195[label="",style="solid", color="blue", weight=9]; 5195 -> 4080[label="",style="solid", color="blue", weight=3]; 5196[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 4081[label="",style="solid", color="blue", weight=3]; 5197[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 4082[label="",style="solid", color="blue", weight=3]; 5198[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 4083[label="",style="solid", color="blue", weight=3]; 5199[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 4084[label="",style="solid", color="blue", weight=3]; 5200[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3897 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 4085[label="",style="solid", color="blue", weight=3]; 3898[label="yvy50000",fontsize=16,color="green",shape="box"];3899[label="yvy49000",fontsize=16,color="green",shape="box"];3900[label="yvy50000",fontsize=16,color="green",shape="box"];3901[label="yvy49000",fontsize=16,color="green",shape="box"];3902[label="yvy50000",fontsize=16,color="green",shape="box"];3903[label="yvy49000",fontsize=16,color="green",shape="box"];3904[label="yvy50000",fontsize=16,color="green",shape="box"];3905[label="yvy49000",fontsize=16,color="green",shape="box"];3906[label="yvy50000",fontsize=16,color="green",shape="box"];3907[label="yvy49000",fontsize=16,color="green",shape="box"];3908[label="yvy50000",fontsize=16,color="green",shape="box"];3909[label="yvy49000",fontsize=16,color="green",shape="box"];3910[label="yvy50000",fontsize=16,color="green",shape="box"];3911[label="yvy49000",fontsize=16,color="green",shape="box"];3912[label="yvy50000",fontsize=16,color="green",shape="box"];3913[label="yvy49000",fontsize=16,color="green",shape="box"];3914[label="yvy50000",fontsize=16,color="green",shape="box"];3915[label="yvy49000",fontsize=16,color="green",shape="box"];3916[label="yvy50000",fontsize=16,color="green",shape="box"];3917[label="yvy49000",fontsize=16,color="green",shape="box"];3918[label="yvy50000",fontsize=16,color="green",shape="box"];3919[label="yvy49000",fontsize=16,color="green",shape="box"];3920[label="yvy50000",fontsize=16,color="green",shape="box"];3921[label="yvy49000",fontsize=16,color="green",shape="box"];3922[label="yvy50000",fontsize=16,color="green",shape="box"];3923[label="yvy49000",fontsize=16,color="green",shape="box"];3924[label="yvy50000",fontsize=16,color="green",shape="box"];3925[label="yvy49000",fontsize=16,color="green",shape="box"];3926[label="yvy49000",fontsize=16,color="green",shape="box"];3927[label="yvy50000",fontsize=16,color="green",shape="box"];3928[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3928 -> 4086[label="",style="solid", color="black", weight=3]; 3929[label="primCmpDouble (Double yvy49000 (Pos yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3929 -> 4087[label="",style="solid", color="black", weight=3]; 3930[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Pos yvy500010))",fontsize=16,color="black",shape="box"];3930 -> 4088[label="",style="solid", color="black", weight=3]; 3931[label="primCmpDouble (Double yvy49000 (Neg yvy490010)) (Double yvy50000 (Neg yvy500010))",fontsize=16,color="black",shape="box"];3931 -> 4089[label="",style="solid", color="black", weight=3]; 3932[label="yvy49001",fontsize=16,color="green",shape="box"];3933[label="yvy50001",fontsize=16,color="green",shape="box"];3934[label="yvy49001",fontsize=16,color="green",shape="box"];3935[label="yvy50001",fontsize=16,color="green",shape="box"];3936[label="yvy49001",fontsize=16,color="green",shape="box"];3937[label="yvy50001",fontsize=16,color="green",shape="box"];3938[label="yvy49001",fontsize=16,color="green",shape="box"];3939[label="yvy50001",fontsize=16,color="green",shape="box"];3940[label="yvy49001",fontsize=16,color="green",shape="box"];3941[label="yvy50001",fontsize=16,color="green",shape="box"];3942[label="yvy49001",fontsize=16,color="green",shape="box"];3943[label="yvy50001",fontsize=16,color="green",shape="box"];3944[label="yvy49001",fontsize=16,color="green",shape="box"];3945[label="yvy50001",fontsize=16,color="green",shape="box"];3946[label="yvy49001",fontsize=16,color="green",shape="box"];3947[label="yvy50001",fontsize=16,color="green",shape="box"];3948[label="yvy49001",fontsize=16,color="green",shape="box"];3949[label="yvy50001",fontsize=16,color="green",shape="box"];3950[label="yvy49001",fontsize=16,color="green",shape="box"];3951[label="yvy50001",fontsize=16,color="green",shape="box"];3952[label="yvy49001",fontsize=16,color="green",shape="box"];3953[label="yvy50001",fontsize=16,color="green",shape="box"];3954[label="yvy49001",fontsize=16,color="green",shape="box"];3955[label="yvy50001",fontsize=16,color="green",shape="box"];3956[label="yvy49001",fontsize=16,color="green",shape="box"];3957[label="yvy50001",fontsize=16,color="green",shape="box"];3958[label="yvy49001",fontsize=16,color="green",shape="box"];3959[label="yvy50001",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[label="yvy50000",fontsize=16,color="green",shape="box"];3963[label="yvy49000",fontsize=16,color="green",shape="box"];3964[label="yvy50000",fontsize=16,color="green",shape="box"];3965[label="yvy49000",fontsize=16,color="green",shape="box"];3966[label="yvy50000",fontsize=16,color="green",shape="box"];3967[label="yvy49000",fontsize=16,color="green",shape="box"];3968[label="yvy50000",fontsize=16,color="green",shape="box"];3969[label="yvy49000",fontsize=16,color="green",shape="box"];3970[label="yvy50000",fontsize=16,color="green",shape="box"];3971[label="yvy49000",fontsize=16,color="green",shape="box"];3972[label="yvy50000",fontsize=16,color="green",shape="box"];3973[label="yvy49000",fontsize=16,color="green",shape="box"];3974[label="yvy50000",fontsize=16,color="green",shape="box"];3975[label="yvy49000",fontsize=16,color="green",shape="box"];3976[label="yvy50000",fontsize=16,color="green",shape="box"];3977[label="yvy49000",fontsize=16,color="green",shape="box"];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"];2446 -> 2432[label="",style="dashed", color="red", weight=0]; 2446[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2446 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2447[label="yvy6200",fontsize=16,color="green",shape="box"];2448[label="primPlusNat (Succ yvy1490) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2448 -> 2595[label="",style="solid", color="black", weight=3]; 2449[label="primPlusNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2449 -> 2596[label="",style="solid", color="black", weight=3]; 2439 -> 1841[label="",style="dashed", color="red", weight=0]; 2439[label="primMulNat yvy400100 (Succ yvy300000)",fontsize=16,color="magenta"];2439 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2396[label="primCmpNat (Succ yvy4900) yvy500",fontsize=16,color="burlywood",shape="box"];5201[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2396 -> 5201[label="",style="solid", color="burlywood", weight=9]; 5201 -> 2796[label="",style="solid", color="burlywood", weight=3]; 5202[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2396 -> 5202[label="",style="solid", color="burlywood", weight=9]; 5202 -> 2797[label="",style="solid", color="burlywood", weight=3]; 2397[label="primCmpNat Zero yvy500",fontsize=16,color="burlywood",shape="box"];5203[label="yvy500/Succ yvy5000",fontsize=10,color="white",style="solid",shape="box"];2397 -> 5203[label="",style="solid", color="burlywood", weight=9]; 5203 -> 2798[label="",style="solid", color="burlywood", weight=3]; 5204[label="yvy500/Zero",fontsize=10,color="white",style="solid",shape="box"];2397 -> 5204[label="",style="solid", color="burlywood", weight=9]; 5204 -> 2799[label="",style="solid", color="burlywood", weight=3]; 2792[label="Zero",fontsize=16,color="green",shape="box"];2793[label="Succ yvy5000",fontsize=16,color="green",shape="box"];2794[label="Succ yvy5000",fontsize=16,color="green",shape="box"];2795[label="Zero",fontsize=16,color="green",shape="box"];4422[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4423[label="FiniteMap.mkBranchLeft_size yvy220 yvy218 yvy221",fontsize=16,color="black",shape="box"];4423 -> 4427[label="",style="solid", color="black", weight=3]; 4424[label="FiniteMap.sizeFM yvy221",fontsize=16,color="burlywood",shape="triangle"];5205[label="yvy221/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4424 -> 5205[label="",style="solid", color="burlywood", weight=9]; 5205 -> 4428[label="",style="solid", color="burlywood", weight=3]; 5206[label="yvy221/FiniteMap.Branch yvy2210 yvy2211 yvy2212 yvy2213 yvy2214",fontsize=10,color="white",style="solid",shape="box"];4424 -> 5206[label="",style="solid", color="burlywood", weight=9]; 5206 -> 4429[label="",style="solid", color="burlywood", weight=3]; 3988[label="yvy1810",fontsize=16,color="green",shape="box"];3989[label="yvy1820",fontsize=16,color="green",shape="box"];2781[label="primPlusNat yvy1490 yvy300000",fontsize=16,color="burlywood",shape="triangle"];5207[label="yvy1490/Succ yvy14900",fontsize=10,color="white",style="solid",shape="box"];2781 -> 5207[label="",style="solid", color="burlywood", weight=9]; 5207 -> 3096[label="",style="solid", color="burlywood", weight=3]; 5208[label="yvy1490/Zero",fontsize=10,color="white",style="solid",shape="box"];2781 -> 5208[label="",style="solid", color="burlywood", weight=9]; 5208 -> 3097[label="",style="solid", color="burlywood", weight=3]; 3990[label="primMinusNat (Succ yvy18200) (Succ yvy18100)",fontsize=16,color="black",shape="box"];3990 -> 4090[label="",style="solid", color="black", weight=3]; 3991[label="primMinusNat (Succ yvy18200) Zero",fontsize=16,color="black",shape="box"];3991 -> 4091[label="",style="solid", color="black", weight=3]; 3992[label="primMinusNat Zero (Succ yvy18100)",fontsize=16,color="black",shape="box"];3992 -> 4092[label="",style="solid", color="black", weight=3]; 3993[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3993 -> 4093[label="",style="solid", color="black", weight=3]; 3994[label="yvy1810",fontsize=16,color="green",shape="box"];3995[label="yvy1820",fontsize=16,color="green",shape="box"];2427 -> 1547[label="",style="dashed", color="red", weight=0]; 2427[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2428 -> 2414[label="",style="dashed", color="red", weight=0]; 2428[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2450[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 otherwise",fontsize=16,color="black",shape="box"];2450 -> 2731[label="",style="solid", color="black", weight=3]; 2451[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy67 yvy54 yvy67 yvy54 yvy67",fontsize=16,color="burlywood",shape="box"];5209[label="yvy67/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2451 -> 5209[label="",style="solid", color="burlywood", weight=9]; 5209 -> 2732[label="",style="solid", color="burlywood", weight=3]; 5210[label="yvy67/FiniteMap.Branch yvy670 yvy671 yvy672 yvy673 yvy674",fontsize=10,color="white",style="solid",shape="box"];2451 -> 5210[label="",style="solid", color="burlywood", weight=9]; 5210 -> 2733[label="",style="solid", color="burlywood", weight=3]; 2429 -> 3102[label="",style="dashed", color="red", weight=0]; 2429[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"];2429 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2432[label="",style="dashed", color="red", weight=0]; 2452[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2452 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2453[label="yvy6200",fontsize=16,color="green",shape="box"];3996[label="yvy49000",fontsize=16,color="green",shape="box"];3997[label="yvy50001",fontsize=16,color="green",shape="box"];3998[label="yvy50000",fontsize=16,color="green",shape="box"];3999[label="yvy49001",fontsize=16,color="green",shape="box"];4000[label="Integer yvy490000 * yvy50001",fontsize=16,color="burlywood",shape="box"];5211[label="yvy50001/Integer yvy500010",fontsize=10,color="white",style="solid",shape="box"];4000 -> 5211[label="",style="solid", color="burlywood", weight=9]; 5211 -> 4094[label="",style="solid", color="burlywood", weight=3]; 4001[label="yvy50000",fontsize=16,color="green",shape="box"];4002[label="yvy49001",fontsize=16,color="green",shape="box"];4003 -> 1631[label="",style="dashed", color="red", weight=0]; 4003[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4003 -> 4095[label="",style="dashed", color="magenta", weight=3]; 4003 -> 4096[label="",style="dashed", color="magenta", weight=3]; 4004 -> 1631[label="",style="dashed", color="red", weight=0]; 4004[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4004 -> 4097[label="",style="dashed", color="magenta", weight=3]; 4004 -> 4098[label="",style="dashed", color="magenta", weight=3]; 4005 -> 1631[label="",style="dashed", color="red", weight=0]; 4005[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4005 -> 4099[label="",style="dashed", color="magenta", weight=3]; 4005 -> 4100[label="",style="dashed", color="magenta", weight=3]; 4006 -> 1631[label="",style="dashed", color="red", weight=0]; 4006[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4006 -> 4101[label="",style="dashed", color="magenta", weight=3]; 4006 -> 4102[label="",style="dashed", color="magenta", weight=3]; 4008[label="yvy196",fontsize=16,color="green",shape="box"];4009[label="compare yvy49000 yvy50000",fontsize=16,color="blue",shape="box"];5212[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 4103[label="",style="solid", color="blue", weight=3]; 5213[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 4104[label="",style="solid", color="blue", weight=3]; 5214[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 4105[label="",style="solid", color="blue", weight=3]; 5215[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 4106[label="",style="solid", color="blue", weight=3]; 5216[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 4107[label="",style="solid", color="blue", weight=3]; 5217[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 4108[label="",style="solid", color="blue", weight=3]; 5218[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 4109[label="",style="solid", color="blue", weight=3]; 5219[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 4110[label="",style="solid", color="blue", weight=3]; 5220[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 4111[label="",style="solid", color="blue", weight=3]; 5221[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 4112[label="",style="solid", color="blue", weight=3]; 5222[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5222[label="",style="solid", color="blue", weight=9]; 5222 -> 4113[label="",style="solid", color="blue", weight=3]; 5223[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5223[label="",style="solid", color="blue", weight=9]; 5223 -> 4114[label="",style="solid", color="blue", weight=3]; 5224[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5224[label="",style="solid", color="blue", weight=9]; 5224 -> 4115[label="",style="solid", color="blue", weight=3]; 5225[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4009 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 4116[label="",style="solid", color="blue", weight=3]; 4007[label="primCompAux0 yvy200 yvy201",fontsize=16,color="burlywood",shape="triangle"];5226[label="yvy201/LT",fontsize=10,color="white",style="solid",shape="box"];4007 -> 5226[label="",style="solid", color="burlywood", weight=9]; 5226 -> 4117[label="",style="solid", color="burlywood", weight=3]; 5227[label="yvy201/EQ",fontsize=10,color="white",style="solid",shape="box"];4007 -> 5227[label="",style="solid", color="burlywood", weight=9]; 5227 -> 4118[label="",style="solid", color="burlywood", weight=3]; 5228[label="yvy201/GT",fontsize=10,color="white",style="solid",shape="box"];4007 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 4119[label="",style="solid", color="burlywood", weight=3]; 4010[label="yvy49000",fontsize=16,color="green",shape="box"];4011[label="yvy50000",fontsize=16,color="green",shape="box"];4012[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4012 -> 4141[label="",style="solid", color="black", weight=3]; 4013[label="yvy49000",fontsize=16,color="green",shape="box"];4014[label="yvy50000",fontsize=16,color="green",shape="box"];4015[label="yvy49000",fontsize=16,color="green",shape="box"];4016[label="yvy50000",fontsize=16,color="green",shape="box"];4017[label="yvy49000",fontsize=16,color="green",shape="box"];4018[label="yvy50000",fontsize=16,color="green",shape="box"];4019[label="yvy49000",fontsize=16,color="green",shape="box"];4020[label="yvy50000",fontsize=16,color="green",shape="box"];4021[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4021 -> 4142[label="",style="solid", color="black", weight=3]; 4022[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4022 -> 4143[label="",style="solid", color="black", weight=3]; 4023[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4023 -> 4144[label="",style="solid", color="black", weight=3]; 4024[label="yvy49000",fontsize=16,color="green",shape="box"];4025[label="yvy50000",fontsize=16,color="green",shape="box"];4026[label="yvy49000",fontsize=16,color="green",shape="box"];4027[label="yvy50000",fontsize=16,color="green",shape="box"];4028[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4028 -> 4145[label="",style="solid", color="black", weight=3]; 4029[label="compare3 yvy49000 yvy50000",fontsize=16,color="black",shape="box"];4029 -> 4146[label="",style="solid", color="black", weight=3]; 4030[label="yvy50001",fontsize=16,color="green",shape="box"];4031[label="yvy49001",fontsize=16,color="green",shape="box"];4032[label="yvy50001",fontsize=16,color="green",shape="box"];4033[label="yvy49001",fontsize=16,color="green",shape="box"];4034[label="yvy50001",fontsize=16,color="green",shape="box"];4035[label="yvy49001",fontsize=16,color="green",shape="box"];4036[label="yvy50001",fontsize=16,color="green",shape="box"];4037[label="yvy49001",fontsize=16,color="green",shape="box"];4038[label="yvy50001",fontsize=16,color="green",shape="box"];4039[label="yvy49001",fontsize=16,color="green",shape="box"];4040[label="yvy50001",fontsize=16,color="green",shape="box"];4041[label="yvy49001",fontsize=16,color="green",shape="box"];4042[label="yvy50001",fontsize=16,color="green",shape="box"];4043[label="yvy49001",fontsize=16,color="green",shape="box"];4044[label="yvy50001",fontsize=16,color="green",shape="box"];4045[label="yvy49001",fontsize=16,color="green",shape="box"];4046[label="yvy50001",fontsize=16,color="green",shape="box"];4047[label="yvy49001",fontsize=16,color="green",shape="box"];4048[label="yvy50001",fontsize=16,color="green",shape="box"];4049[label="yvy49001",fontsize=16,color="green",shape="box"];4050[label="yvy50001",fontsize=16,color="green",shape="box"];4051[label="yvy49001",fontsize=16,color="green",shape="box"];4052[label="yvy50001",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="yvy49001",fontsize=16,color="green",shape="box"];4056[label="yvy50001",fontsize=16,color="green",shape="box"];4057[label="yvy49001",fontsize=16,color="green",shape="box"];4058 -> 3065[label="",style="dashed", color="red", weight=0]; 4058[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4058 -> 4147[label="",style="dashed", color="magenta", weight=3]; 4058 -> 4148[label="",style="dashed", color="magenta", weight=3]; 4059 -> 3066[label="",style="dashed", color="red", weight=0]; 4059[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4059 -> 4149[label="",style="dashed", color="magenta", weight=3]; 4059 -> 4150[label="",style="dashed", color="magenta", weight=3]; 4060 -> 3067[label="",style="dashed", color="red", weight=0]; 4060[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4060 -> 4151[label="",style="dashed", color="magenta", weight=3]; 4060 -> 4152[label="",style="dashed", color="magenta", weight=3]; 4061 -> 3068[label="",style="dashed", color="red", weight=0]; 4061[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4061 -> 4153[label="",style="dashed", color="magenta", weight=3]; 4061 -> 4154[label="",style="dashed", color="magenta", weight=3]; 4062 -> 3069[label="",style="dashed", color="red", weight=0]; 4062[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4062 -> 4155[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4156[label="",style="dashed", color="magenta", weight=3]; 4063 -> 3070[label="",style="dashed", color="red", weight=0]; 4063[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4063 -> 4157[label="",style="dashed", color="magenta", weight=3]; 4063 -> 4158[label="",style="dashed", color="magenta", weight=3]; 4064 -> 3071[label="",style="dashed", color="red", weight=0]; 4064[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4064 -> 4159[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4160[label="",style="dashed", color="magenta", weight=3]; 4065 -> 3072[label="",style="dashed", color="red", weight=0]; 4065[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4065 -> 4161[label="",style="dashed", color="magenta", weight=3]; 4065 -> 4162[label="",style="dashed", color="magenta", weight=3]; 4066 -> 3073[label="",style="dashed", color="red", weight=0]; 4066[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4066 -> 4163[label="",style="dashed", color="magenta", weight=3]; 4066 -> 4164[label="",style="dashed", color="magenta", weight=3]; 4067 -> 3074[label="",style="dashed", color="red", weight=0]; 4067[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4067 -> 4165[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4166[label="",style="dashed", color="magenta", weight=3]; 4068 -> 3075[label="",style="dashed", color="red", weight=0]; 4068[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4068 -> 4167[label="",style="dashed", color="magenta", weight=3]; 4068 -> 4168[label="",style="dashed", color="magenta", weight=3]; 4069 -> 3076[label="",style="dashed", color="red", weight=0]; 4069[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4069 -> 4169[label="",style="dashed", color="magenta", weight=3]; 4069 -> 4170[label="",style="dashed", color="magenta", weight=3]; 4070 -> 3077[label="",style="dashed", color="red", weight=0]; 4070[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4070 -> 4171[label="",style="dashed", color="magenta", weight=3]; 4070 -> 4172[label="",style="dashed", color="magenta", weight=3]; 4071 -> 3078[label="",style="dashed", color="red", weight=0]; 4071[label="yvy49002 <= yvy50002",fontsize=16,color="magenta"];4071 -> 4173[label="",style="dashed", color="magenta", weight=3]; 4071 -> 4174[label="",style="dashed", color="magenta", weight=3]; 4072 -> 2559[label="",style="dashed", color="red", weight=0]; 4072[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4072 -> 4175[label="",style="dashed", color="magenta", weight=3]; 4072 -> 4176[label="",style="dashed", color="magenta", weight=3]; 4073 -> 2549[label="",style="dashed", color="red", weight=0]; 4073[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4073 -> 4177[label="",style="dashed", color="magenta", weight=3]; 4073 -> 4178[label="",style="dashed", color="magenta", weight=3]; 4074 -> 2556[label="",style="dashed", color="red", weight=0]; 4074[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4074 -> 4179[label="",style="dashed", color="magenta", weight=3]; 4074 -> 4180[label="",style="dashed", color="magenta", weight=3]; 4075 -> 2560[label="",style="dashed", color="red", weight=0]; 4075[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4075 -> 4181[label="",style="dashed", color="magenta", weight=3]; 4075 -> 4182[label="",style="dashed", color="magenta", weight=3]; 4076 -> 2558[label="",style="dashed", color="red", weight=0]; 4076[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4076 -> 4183[label="",style="dashed", color="magenta", weight=3]; 4076 -> 4184[label="",style="dashed", color="magenta", weight=3]; 4077 -> 2555[label="",style="dashed", color="red", weight=0]; 4077[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4077 -> 4185[label="",style="dashed", color="magenta", weight=3]; 4077 -> 4186[label="",style="dashed", color="magenta", weight=3]; 4078 -> 2547[label="",style="dashed", color="red", weight=0]; 4078[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4078 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4188[label="",style="dashed", color="magenta", weight=3]; 4079 -> 2548[label="",style="dashed", color="red", weight=0]; 4079[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4079 -> 4189[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4190[label="",style="dashed", color="magenta", weight=3]; 4080 -> 2554[label="",style="dashed", color="red", weight=0]; 4080[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4080 -> 4191[label="",style="dashed", color="magenta", weight=3]; 4080 -> 4192[label="",style="dashed", color="magenta", weight=3]; 4081 -> 121[label="",style="dashed", color="red", weight=0]; 4081[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4081 -> 4193[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4194[label="",style="dashed", color="magenta", weight=3]; 4082 -> 2552[label="",style="dashed", color="red", weight=0]; 4082[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4082 -> 4195[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4196[label="",style="dashed", color="magenta", weight=3]; 4083 -> 2551[label="",style="dashed", color="red", weight=0]; 4083[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4083 -> 4197[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4084 -> 2553[label="",style="dashed", color="red", weight=0]; 4084[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4084 -> 4199[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4200[label="",style="dashed", color="magenta", weight=3]; 4085 -> 2550[label="",style="dashed", color="red", weight=0]; 4085[label="yvy49001 == yvy50001",fontsize=16,color="magenta"];4085 -> 4201[label="",style="dashed", color="magenta", weight=3]; 4085 -> 4202[label="",style="dashed", color="magenta", weight=3]; 4086 -> 1631[label="",style="dashed", color="red", weight=0]; 4086[label="compare (yvy49000 * Pos yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4086 -> 4203[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4204[label="",style="dashed", color="magenta", weight=3]; 4087 -> 1631[label="",style="dashed", color="red", weight=0]; 4087[label="compare (yvy49000 * Pos yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4087 -> 4205[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4206[label="",style="dashed", color="magenta", weight=3]; 4088 -> 1631[label="",style="dashed", color="red", weight=0]; 4088[label="compare (yvy49000 * Neg yvy500010) (Pos yvy490010 * yvy50000)",fontsize=16,color="magenta"];4088 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4208[label="",style="dashed", color="magenta", weight=3]; 4089 -> 1631[label="",style="dashed", color="red", weight=0]; 4089[label="compare (yvy49000 * Neg yvy500010) (Neg yvy490010 * yvy50000)",fontsize=16,color="magenta"];4089 -> 4209[label="",style="dashed", color="magenta", weight=3]; 4089 -> 4210[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2432[label="",style="dashed", color="red", weight=0]; 2593[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2593 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2594[label="yvy6200",fontsize=16,color="green",shape="box"];2595[label="Succ (Succ (primPlusNat yvy1490 yvy300000))",fontsize=16,color="green",shape="box"];2595 -> 2781[label="",style="dashed", color="green", weight=3]; 2596[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2800[label="yvy400100",fontsize=16,color="green",shape="box"];2801[label="Succ yvy300000",fontsize=16,color="green",shape="box"];2796[label="primCmpNat (Succ yvy4900) (Succ yvy5000)",fontsize=16,color="black",shape="box"];2796 -> 3841[label="",style="solid", color="black", weight=3]; 2797[label="primCmpNat (Succ yvy4900) Zero",fontsize=16,color="black",shape="box"];2797 -> 3842[label="",style="solid", color="black", weight=3]; 2798[label="primCmpNat Zero (Succ yvy5000)",fontsize=16,color="black",shape="box"];2798 -> 3843[label="",style="solid", color="black", weight=3]; 2799[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2799 -> 3844[label="",style="solid", color="black", weight=3]; 4427 -> 4424[label="",style="dashed", color="red", weight=0]; 4427[label="FiniteMap.sizeFM yvy220",fontsize=16,color="magenta"];4427 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4428[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4428 -> 4473[label="",style="solid", color="black", weight=3]; 4429[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2210 yvy2211 yvy2212 yvy2213 yvy2214)",fontsize=16,color="black",shape="box"];4429 -> 4474[label="",style="solid", color="black", weight=3]; 3096[label="primPlusNat (Succ yvy14900) yvy300000",fontsize=16,color="burlywood",shape="box"];5229[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 3473[label="",style="solid", color="burlywood", weight=3]; 5230[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3096 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 3474[label="",style="solid", color="burlywood", weight=3]; 3097[label="primPlusNat Zero yvy300000",fontsize=16,color="burlywood",shape="box"];5231[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3097 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 3475[label="",style="solid", color="burlywood", weight=3]; 5232[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3097 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 3476[label="",style="solid", color="burlywood", weight=3]; 4090 -> 3710[label="",style="dashed", color="red", weight=0]; 4090[label="primMinusNat yvy18200 yvy18100",fontsize=16,color="magenta"];4090 -> 4211[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4091[label="Pos (Succ yvy18200)",fontsize=16,color="green",shape="box"];4092[label="Neg (Succ yvy18100)",fontsize=16,color="green",shape="box"];4093[label="Pos Zero",fontsize=16,color="green",shape="box"];2731[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy67 yvy54 yvy50 yvy51 yvy67 yvy54 True",fontsize=16,color="black",shape="box"];2731 -> 2785[label="",style="solid", color="black", weight=3]; 2732[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2732 -> 2786[label="",style="solid", color="black", weight=3]; 2733[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"];2733 -> 2787[label="",style="solid", color="black", weight=3]; 3103 -> 3306[label="",style="dashed", color="red", weight=0]; 3103[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3103 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3102[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 yvy176",fontsize=16,color="burlywood",shape="triangle"];5233[label="yvy176/False",fontsize=10,color="white",style="solid",shape="box"];3102 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 3468[label="",style="solid", color="burlywood", weight=3]; 5234[label="yvy176/True",fontsize=10,color="white",style="solid",shape="box"];3102 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 3469[label="",style="solid", color="burlywood", weight=3]; 2775 -> 2432[label="",style="dashed", color="red", weight=0]; 2775[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2775 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2775 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2776[label="yvy6200",fontsize=16,color="green",shape="box"];4094[label="Integer yvy490000 * Integer yvy500010",fontsize=16,color="black",shape="box"];4094 -> 4213[label="",style="solid", color="black", weight=3]; 4095 -> 986[label="",style="dashed", color="red", weight=0]; 4095[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4095 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4215[label="",style="dashed", color="magenta", weight=3]; 4096 -> 986[label="",style="dashed", color="red", weight=0]; 4096[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4096 -> 4216[label="",style="dashed", color="magenta", weight=3]; 4096 -> 4217[label="",style="dashed", color="magenta", weight=3]; 4097 -> 986[label="",style="dashed", color="red", weight=0]; 4097[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4097 -> 4218[label="",style="dashed", color="magenta", weight=3]; 4097 -> 4219[label="",style="dashed", color="magenta", weight=3]; 4098 -> 986[label="",style="dashed", color="red", weight=0]; 4098[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4098 -> 4220[label="",style="dashed", color="magenta", weight=3]; 4098 -> 4221[label="",style="dashed", color="magenta", weight=3]; 4099 -> 986[label="",style="dashed", color="red", weight=0]; 4099[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4099 -> 4222[label="",style="dashed", color="magenta", weight=3]; 4099 -> 4223[label="",style="dashed", color="magenta", weight=3]; 4100 -> 986[label="",style="dashed", color="red", weight=0]; 4100[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4100 -> 4224[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4225[label="",style="dashed", color="magenta", weight=3]; 4101 -> 986[label="",style="dashed", color="red", weight=0]; 4101[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4101 -> 4226[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4227[label="",style="dashed", color="magenta", weight=3]; 4102 -> 986[label="",style="dashed", color="red", weight=0]; 4102[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4102 -> 4228[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4229[label="",style="dashed", color="magenta", weight=3]; 4103 -> 3411[label="",style="dashed", color="red", weight=0]; 4103[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4103 -> 4230[label="",style="dashed", color="magenta", weight=3]; 4103 -> 4231[label="",style="dashed", color="magenta", weight=3]; 4104 -> 3859[label="",style="dashed", color="red", weight=0]; 4104[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4104 -> 4232[label="",style="dashed", color="magenta", weight=3]; 4104 -> 4233[label="",style="dashed", color="magenta", weight=3]; 4105 -> 1631[label="",style="dashed", color="red", weight=0]; 4105[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4105 -> 4234[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4235[label="",style="dashed", color="magenta", weight=3]; 4106 -> 3413[label="",style="dashed", color="red", weight=0]; 4106[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4106 -> 4236[label="",style="dashed", color="magenta", weight=3]; 4106 -> 4237[label="",style="dashed", color="magenta", weight=3]; 4107 -> 3414[label="",style="dashed", color="red", weight=0]; 4107[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4107 -> 4238[label="",style="dashed", color="magenta", weight=3]; 4107 -> 4239[label="",style="dashed", color="magenta", weight=3]; 4108 -> 3415[label="",style="dashed", color="red", weight=0]; 4108[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4108 -> 4240[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4241[label="",style="dashed", color="magenta", weight=3]; 4109 -> 3416[label="",style="dashed", color="red", weight=0]; 4109[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4109 -> 4242[label="",style="dashed", color="magenta", weight=3]; 4109 -> 4243[label="",style="dashed", color="magenta", weight=3]; 4110 -> 3869[label="",style="dashed", color="red", weight=0]; 4110[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4110 -> 4244[label="",style="dashed", color="magenta", weight=3]; 4110 -> 4245[label="",style="dashed", color="magenta", weight=3]; 4111 -> 3871[label="",style="dashed", color="red", weight=0]; 4111[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4111 -> 4246[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4247[label="",style="dashed", color="magenta", weight=3]; 4112 -> 3873[label="",style="dashed", color="red", weight=0]; 4112[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4112 -> 4248[label="",style="dashed", color="magenta", weight=3]; 4112 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4113 -> 3417[label="",style="dashed", color="red", weight=0]; 4113[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4113 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4113 -> 4251[label="",style="dashed", color="magenta", weight=3]; 4114 -> 3418[label="",style="dashed", color="red", weight=0]; 4114[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4114 -> 4252[label="",style="dashed", color="magenta", weight=3]; 4114 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4115 -> 3879[label="",style="dashed", color="red", weight=0]; 4115[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4115 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4115 -> 4255[label="",style="dashed", color="magenta", weight=3]; 4116 -> 3881[label="",style="dashed", color="red", weight=0]; 4116[label="compare yvy49000 yvy50000",fontsize=16,color="magenta"];4116 -> 4256[label="",style="dashed", color="magenta", weight=3]; 4116 -> 4257[label="",style="dashed", color="magenta", weight=3]; 4117[label="primCompAux0 yvy200 LT",fontsize=16,color="black",shape="box"];4117 -> 4258[label="",style="solid", color="black", weight=3]; 4118[label="primCompAux0 yvy200 EQ",fontsize=16,color="black",shape="box"];4118 -> 4259[label="",style="solid", color="black", weight=3]; 4119[label="primCompAux0 yvy200 GT",fontsize=16,color="black",shape="box"];4119 -> 4260[label="",style="solid", color="black", weight=3]; 4141 -> 4268[label="",style="dashed", color="red", weight=0]; 4141[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4141 -> 4269[label="",style="dashed", color="magenta", weight=3]; 4142 -> 4270[label="",style="dashed", color="red", weight=0]; 4142[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4142 -> 4271[label="",style="dashed", color="magenta", weight=3]; 4143 -> 2489[label="",style="dashed", color="red", weight=0]; 4143[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4143 -> 4272[label="",style="dashed", color="magenta", weight=3]; 4143 -> 4273[label="",style="dashed", color="magenta", weight=3]; 4143 -> 4274[label="",style="dashed", color="magenta", weight=3]; 4144 -> 4275[label="",style="dashed", color="red", weight=0]; 4144[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4144 -> 4276[label="",style="dashed", color="magenta", weight=3]; 4145 -> 4277[label="",style="dashed", color="red", weight=0]; 4145[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4145 -> 4278[label="",style="dashed", color="magenta", weight=3]; 4146 -> 4279[label="",style="dashed", color="red", weight=0]; 4146[label="compare2 yvy49000 yvy50000 (yvy49000 == yvy50000)",fontsize=16,color="magenta"];4146 -> 4280[label="",style="dashed", color="magenta", weight=3]; 4147[label="yvy49002",fontsize=16,color="green",shape="box"];4148[label="yvy50002",fontsize=16,color="green",shape="box"];4149[label="yvy49002",fontsize=16,color="green",shape="box"];4150[label="yvy50002",fontsize=16,color="green",shape="box"];4151[label="yvy49002",fontsize=16,color="green",shape="box"];4152[label="yvy50002",fontsize=16,color="green",shape="box"];4153[label="yvy49002",fontsize=16,color="green",shape="box"];4154[label="yvy50002",fontsize=16,color="green",shape="box"];4155[label="yvy49002",fontsize=16,color="green",shape="box"];4156[label="yvy50002",fontsize=16,color="green",shape="box"];4157[label="yvy49002",fontsize=16,color="green",shape="box"];4158[label="yvy50002",fontsize=16,color="green",shape="box"];4159[label="yvy49002",fontsize=16,color="green",shape="box"];4160[label="yvy50002",fontsize=16,color="green",shape="box"];4161[label="yvy49002",fontsize=16,color="green",shape="box"];4162[label="yvy50002",fontsize=16,color="green",shape="box"];4163[label="yvy49002",fontsize=16,color="green",shape="box"];4164[label="yvy50002",fontsize=16,color="green",shape="box"];4165[label="yvy49002",fontsize=16,color="green",shape="box"];4166[label="yvy50002",fontsize=16,color="green",shape="box"];4167[label="yvy49002",fontsize=16,color="green",shape="box"];4168[label="yvy50002",fontsize=16,color="green",shape="box"];4169[label="yvy49002",fontsize=16,color="green",shape="box"];4170[label="yvy50002",fontsize=16,color="green",shape="box"];4171[label="yvy49002",fontsize=16,color="green",shape="box"];4172[label="yvy50002",fontsize=16,color="green",shape="box"];4173[label="yvy49002",fontsize=16,color="green",shape="box"];4174[label="yvy50002",fontsize=16,color="green",shape="box"];4175[label="yvy50001",fontsize=16,color="green",shape="box"];4176[label="yvy49001",fontsize=16,color="green",shape="box"];4177[label="yvy50001",fontsize=16,color="green",shape="box"];4178[label="yvy49001",fontsize=16,color="green",shape="box"];4179[label="yvy50001",fontsize=16,color="green",shape="box"];4180[label="yvy49001",fontsize=16,color="green",shape="box"];4181[label="yvy50001",fontsize=16,color="green",shape="box"];4182[label="yvy49001",fontsize=16,color="green",shape="box"];4183[label="yvy50001",fontsize=16,color="green",shape="box"];4184[label="yvy49001",fontsize=16,color="green",shape="box"];4185[label="yvy50001",fontsize=16,color="green",shape="box"];4186[label="yvy49001",fontsize=16,color="green",shape="box"];4187[label="yvy50001",fontsize=16,color="green",shape="box"];4188[label="yvy49001",fontsize=16,color="green",shape="box"];4189[label="yvy50001",fontsize=16,color="green",shape="box"];4190[label="yvy49001",fontsize=16,color="green",shape="box"];4191[label="yvy50001",fontsize=16,color="green",shape="box"];4192[label="yvy49001",fontsize=16,color="green",shape="box"];4193[label="yvy50001",fontsize=16,color="green",shape="box"];4194[label="yvy49001",fontsize=16,color="green",shape="box"];4195[label="yvy50001",fontsize=16,color="green",shape="box"];4196[label="yvy49001",fontsize=16,color="green",shape="box"];4197[label="yvy50001",fontsize=16,color="green",shape="box"];4198[label="yvy49001",fontsize=16,color="green",shape="box"];4199[label="yvy50001",fontsize=16,color="green",shape="box"];4200[label="yvy49001",fontsize=16,color="green",shape="box"];4201[label="yvy50001",fontsize=16,color="green",shape="box"];4202[label="yvy49001",fontsize=16,color="green",shape="box"];4203 -> 986[label="",style="dashed", color="red", weight=0]; 4203[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4203 -> 4281[label="",style="dashed", color="magenta", weight=3]; 4203 -> 4282[label="",style="dashed", color="magenta", weight=3]; 4204 -> 986[label="",style="dashed", color="red", weight=0]; 4204[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4204 -> 4283[label="",style="dashed", color="magenta", weight=3]; 4204 -> 4284[label="",style="dashed", color="magenta", weight=3]; 4205 -> 986[label="",style="dashed", color="red", weight=0]; 4205[label="yvy49000 * Pos yvy500010",fontsize=16,color="magenta"];4205 -> 4285[label="",style="dashed", color="magenta", weight=3]; 4205 -> 4286[label="",style="dashed", color="magenta", weight=3]; 4206 -> 986[label="",style="dashed", color="red", weight=0]; 4206[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4206 -> 4287[label="",style="dashed", color="magenta", weight=3]; 4206 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4207 -> 986[label="",style="dashed", color="red", weight=0]; 4207[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4207 -> 4289[label="",style="dashed", color="magenta", weight=3]; 4207 -> 4290[label="",style="dashed", color="magenta", weight=3]; 4208 -> 986[label="",style="dashed", color="red", weight=0]; 4208[label="Pos yvy490010 * yvy50000",fontsize=16,color="magenta"];4208 -> 4291[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4292[label="",style="dashed", color="magenta", weight=3]; 4209 -> 986[label="",style="dashed", color="red", weight=0]; 4209[label="yvy49000 * Neg yvy500010",fontsize=16,color="magenta"];4209 -> 4293[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4210 -> 986[label="",style="dashed", color="red", weight=0]; 4210[label="Neg yvy490010 * yvy50000",fontsize=16,color="magenta"];4210 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4210 -> 4296[label="",style="dashed", color="magenta", weight=3]; 2779[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2780[label="yvy6200",fontsize=16,color="green",shape="box"];3841 -> 2288[label="",style="dashed", color="red", weight=0]; 3841[label="primCmpNat yvy4900 yvy5000",fontsize=16,color="magenta"];3841 -> 4131[label="",style="dashed", color="magenta", weight=3]; 3841 -> 4132[label="",style="dashed", color="magenta", weight=3]; 3842[label="GT",fontsize=16,color="green",shape="box"];3843[label="LT",fontsize=16,color="green",shape="box"];3844[label="EQ",fontsize=16,color="green",shape="box"];4472[label="yvy220",fontsize=16,color="green",shape="box"];4473[label="Pos Zero",fontsize=16,color="green",shape="box"];4474[label="yvy2212",fontsize=16,color="green",shape="box"];3473[label="primPlusNat (Succ yvy14900) (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3473 -> 3848[label="",style="solid", color="black", weight=3]; 3474[label="primPlusNat (Succ yvy14900) Zero",fontsize=16,color="black",shape="box"];3474 -> 3849[label="",style="solid", color="black", weight=3]; 3475[label="primPlusNat Zero (Succ yvy3000000)",fontsize=16,color="black",shape="box"];3475 -> 3850[label="",style="solid", color="black", weight=3]; 3476[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3476 -> 3851[label="",style="solid", color="black", weight=3]; 4211[label="yvy18100",fontsize=16,color="green",shape="box"];4212[label="yvy18200",fontsize=16,color="green",shape="box"];2785 -> 4350[label="",style="dashed", color="red", weight=0]; 2785[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy67 yvy54",fontsize=16,color="magenta"];2785 -> 4376[label="",style="dashed", color="magenta", weight=3]; 2785 -> 4377[label="",style="dashed", color="magenta", weight=3]; 2785 -> 4378[label="",style="dashed", color="magenta", weight=3]; 2785 -> 4379[label="",style="dashed", color="magenta", weight=3]; 2785 -> 4380[label="",style="dashed", color="magenta", weight=3]; 2786[label="error []",fontsize=16,color="red",shape="box"];2787[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"];2787 -> 3100[label="",style="solid", color="black", weight=3]; 3313 -> 986[label="",style="dashed", color="red", weight=0]; 3313[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3313 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2420[label="",style="dashed", color="red", weight=0]; 3314[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3314 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3468[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"];3468 -> 3845[label="",style="solid", color="black", weight=3]; 3469[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"];3469 -> 3846[label="",style="solid", color="black", weight=3]; 3087[label="Succ yvy6200",fontsize=16,color="green",shape="box"];3088[label="yvy6200",fontsize=16,color="green",shape="box"];4213[label="Integer (primMulInt yvy490000 yvy500010)",fontsize=16,color="green",shape="box"];4213 -> 4297[label="",style="dashed", color="green", weight=3]; 4214[label="yvy49000",fontsize=16,color="green",shape="box"];4215[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4216[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4217[label="yvy50000",fontsize=16,color="green",shape="box"];4218[label="yvy49000",fontsize=16,color="green",shape="box"];4219[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4220[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4221[label="yvy50000",fontsize=16,color="green",shape="box"];4222[label="yvy49000",fontsize=16,color="green",shape="box"];4223[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4224[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4225[label="yvy50000",fontsize=16,color="green",shape="box"];4226[label="yvy49000",fontsize=16,color="green",shape="box"];4227[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4228[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4229[label="yvy50000",fontsize=16,color="green",shape="box"];4230[label="yvy49000",fontsize=16,color="green",shape="box"];4231[label="yvy50000",fontsize=16,color="green",shape="box"];4232[label="yvy50000",fontsize=16,color="green",shape="box"];4233[label="yvy49000",fontsize=16,color="green",shape="box"];4234[label="yvy49000",fontsize=16,color="green",shape="box"];4235[label="yvy50000",fontsize=16,color="green",shape="box"];4236[label="yvy49000",fontsize=16,color="green",shape="box"];4237[label="yvy50000",fontsize=16,color="green",shape="box"];4238[label="yvy49000",fontsize=16,color="green",shape="box"];4239[label="yvy50000",fontsize=16,color="green",shape="box"];4240[label="yvy49000",fontsize=16,color="green",shape="box"];4241[label="yvy50000",fontsize=16,color="green",shape="box"];4242[label="yvy49000",fontsize=16,color="green",shape="box"];4243[label="yvy50000",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="yvy50000",fontsize=16,color="green",shape="box"];4247[label="yvy49000",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="yvy49000",fontsize=16,color="green",shape="box"];4251[label="yvy50000",fontsize=16,color="green",shape="box"];4252[label="yvy49000",fontsize=16,color="green",shape="box"];4253[label="yvy50000",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="LT",fontsize=16,color="green",shape="box"];4259[label="yvy200",fontsize=16,color="green",shape="box"];4260[label="GT",fontsize=16,color="green",shape="box"];4269 -> 2549[label="",style="dashed", color="red", weight=0]; 4269[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4269 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4269 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4268[label="compare2 yvy49000 yvy50000 yvy202",fontsize=16,color="burlywood",shape="triangle"];5235[label="yvy202/False",fontsize=10,color="white",style="solid",shape="box"];4268 -> 5235[label="",style="solid", color="burlywood", weight=9]; 5235 -> 4300[label="",style="solid", color="burlywood", weight=3]; 5236[label="yvy202/True",fontsize=10,color="white",style="solid",shape="box"];4268 -> 5236[label="",style="solid", color="burlywood", weight=9]; 5236 -> 4301[label="",style="solid", color="burlywood", weight=3]; 4271 -> 2548[label="",style="dashed", color="red", weight=0]; 4271[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4271 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4270[label="compare2 yvy49000 yvy50000 yvy203",fontsize=16,color="burlywood",shape="triangle"];5237[label="yvy203/False",fontsize=10,color="white",style="solid",shape="box"];4270 -> 5237[label="",style="solid", color="burlywood", weight=9]; 5237 -> 4304[label="",style="solid", color="burlywood", weight=3]; 5238[label="yvy203/True",fontsize=10,color="white",style="solid",shape="box"];4270 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 4305[label="",style="solid", color="burlywood", weight=3]; 4272[label="yvy50000",fontsize=16,color="green",shape="box"];4273[label="yvy49000",fontsize=16,color="green",shape="box"];4274 -> 2554[label="",style="dashed", color="red", weight=0]; 4274[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4274 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4274 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4276 -> 121[label="",style="dashed", color="red", weight=0]; 4276[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4276 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4276 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4275[label="compare2 yvy49000 yvy50000 yvy204",fontsize=16,color="burlywood",shape="triangle"];5239[label="yvy204/False",fontsize=10,color="white",style="solid",shape="box"];4275 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 4310[label="",style="solid", color="burlywood", weight=3]; 5240[label="yvy204/True",fontsize=10,color="white",style="solid",shape="box"];4275 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 4311[label="",style="solid", color="burlywood", weight=3]; 4278 -> 2553[label="",style="dashed", color="red", weight=0]; 4278[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4278 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4278 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4277[label="compare2 yvy49000 yvy50000 yvy205",fontsize=16,color="burlywood",shape="triangle"];5241[label="yvy205/False",fontsize=10,color="white",style="solid",shape="box"];4277 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 4314[label="",style="solid", color="burlywood", weight=3]; 5242[label="yvy205/True",fontsize=10,color="white",style="solid",shape="box"];4277 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 4315[label="",style="solid", color="burlywood", weight=3]; 4280 -> 2550[label="",style="dashed", color="red", weight=0]; 4280[label="yvy49000 == yvy50000",fontsize=16,color="magenta"];4280 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4280 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4279[label="compare2 yvy49000 yvy50000 yvy206",fontsize=16,color="burlywood",shape="triangle"];5243[label="yvy206/False",fontsize=10,color="white",style="solid",shape="box"];4279 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 4318[label="",style="solid", color="burlywood", weight=3]; 5244[label="yvy206/True",fontsize=10,color="white",style="solid",shape="box"];4279 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 4319[label="",style="solid", color="burlywood", weight=3]; 4281[label="yvy49000",fontsize=16,color="green",shape="box"];4282[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4283[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4284[label="yvy50000",fontsize=16,color="green",shape="box"];4285[label="yvy49000",fontsize=16,color="green",shape="box"];4286[label="Pos yvy500010",fontsize=16,color="green",shape="box"];4287[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4288[label="yvy50000",fontsize=16,color="green",shape="box"];4289[label="yvy49000",fontsize=16,color="green",shape="box"];4290[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4291[label="Pos yvy490010",fontsize=16,color="green",shape="box"];4292[label="yvy50000",fontsize=16,color="green",shape="box"];4293[label="yvy49000",fontsize=16,color="green",shape="box"];4294[label="Neg yvy500010",fontsize=16,color="green",shape="box"];4295[label="Neg yvy490010",fontsize=16,color="green",shape="box"];4296[label="yvy50000",fontsize=16,color="green",shape="box"];4131[label="yvy4900",fontsize=16,color="green",shape="box"];4132[label="yvy5000",fontsize=16,color="green",shape="box"];3848[label="Succ (Succ (primPlusNat yvy14900 yvy3000000))",fontsize=16,color="green",shape="box"];3848 -> 4133[label="",style="dashed", color="green", weight=3]; 3849[label="Succ yvy14900",fontsize=16,color="green",shape="box"];3850[label="Succ yvy3000000",fontsize=16,color="green",shape="box"];3851[label="Zero",fontsize=16,color="green",shape="box"];4376[label="Succ Zero",fontsize=16,color="green",shape="box"];4377[label="yvy50",fontsize=16,color="green",shape="box"];4378[label="yvy54",fontsize=16,color="green",shape="box"];4379[label="yvy51",fontsize=16,color="green",shape="box"];4380[label="yvy67",fontsize=16,color="green",shape="box"];3100 -> 3477[label="",style="dashed", color="red", weight=0]; 3100[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"];3100 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3470[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3471 -> 2420[label="",style="dashed", color="red", weight=0]; 3471[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3471 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3472[label="yvy543",fontsize=16,color="green",shape="box"];3845[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"];3845 -> 4134[label="",style="solid", color="black", weight=3]; 3846[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"];3846 -> 4135[label="",style="solid", color="black", weight=3]; 4297 -> 1301[label="",style="dashed", color="red", weight=0]; 4297[label="primMulInt yvy490000 yvy500010",fontsize=16,color="magenta"];4297 -> 4336[label="",style="dashed", color="magenta", weight=3]; 4297 -> 4337[label="",style="dashed", color="magenta", weight=3]; 4298[label="yvy50000",fontsize=16,color="green",shape="box"];4299[label="yvy49000",fontsize=16,color="green",shape="box"];4300[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4300 -> 4338[label="",style="solid", color="black", weight=3]; 4301[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4301 -> 4339[label="",style="solid", color="black", weight=3]; 4302[label="yvy50000",fontsize=16,color="green",shape="box"];4303[label="yvy49000",fontsize=16,color="green",shape="box"];4304[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4304 -> 4340[label="",style="solid", color="black", weight=3]; 4305[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4305 -> 4341[label="",style="solid", color="black", weight=3]; 4306[label="yvy50000",fontsize=16,color="green",shape="box"];4307[label="yvy49000",fontsize=16,color="green",shape="box"];4308[label="yvy50000",fontsize=16,color="green",shape="box"];4309[label="yvy49000",fontsize=16,color="green",shape="box"];4310[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4310 -> 4342[label="",style="solid", color="black", weight=3]; 4311[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4311 -> 4343[label="",style="solid", color="black", weight=3]; 4312[label="yvy50000",fontsize=16,color="green",shape="box"];4313[label="yvy49000",fontsize=16,color="green",shape="box"];4314[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4314 -> 4344[label="",style="solid", color="black", weight=3]; 4315[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4315 -> 4345[label="",style="solid", color="black", weight=3]; 4316[label="yvy50000",fontsize=16,color="green",shape="box"];4317[label="yvy49000",fontsize=16,color="green",shape="box"];4318[label="compare2 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4318 -> 4346[label="",style="solid", color="black", weight=3]; 4319[label="compare2 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4319 -> 4347[label="",style="solid", color="black", weight=3]; 4133 -> 2781[label="",style="dashed", color="red", weight=0]; 4133[label="primPlusNat yvy14900 yvy3000000",fontsize=16,color="magenta"];4133 -> 4261[label="",style="dashed", color="magenta", weight=3]; 4133 -> 4262[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3306[label="",style="dashed", color="red", weight=0]; 3478[label="FiniteMap.sizeFM yvy674 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3478 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3477[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 yvy184",fontsize=16,color="burlywood",shape="triangle"];5245[label="yvy184/False",fontsize=10,color="white",style="solid",shape="box"];3477 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 3854[label="",style="solid", color="burlywood", weight=3]; 5246[label="yvy184/True",fontsize=10,color="white",style="solid",shape="box"];3477 -> 5246[label="",style="solid", color="burlywood", weight=9]; 5246 -> 3855[label="",style="solid", color="burlywood", weight=3]; 3847[label="yvy544",fontsize=16,color="green",shape="box"];4134[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"];4134 -> 4263[label="",style="solid", color="black", weight=3]; 4135 -> 4350[label="",style="dashed", color="red", weight=0]; 4135[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"];4135 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4336[label="yvy490000",fontsize=16,color="green",shape="box"];4337[label="yvy500010",fontsize=16,color="green",shape="box"];4338 -> 4407[label="",style="dashed", color="red", weight=0]; 4338[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4338 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4339[label="EQ",fontsize=16,color="green",shape="box"];4340 -> 4410[label="",style="dashed", color="red", weight=0]; 4340[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4340 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4341[label="EQ",fontsize=16,color="green",shape="box"];4342 -> 4413[label="",style="dashed", color="red", weight=0]; 4342[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4342 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4343[label="EQ",fontsize=16,color="green",shape="box"];4344 -> 4420[label="",style="dashed", color="red", weight=0]; 4344[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4344 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4345[label="EQ",fontsize=16,color="green",shape="box"];4346 -> 4425[label="",style="dashed", color="red", weight=0]; 4346[label="compare1 yvy49000 yvy50000 (yvy49000 <= yvy50000)",fontsize=16,color="magenta"];4346 -> 4426[label="",style="dashed", color="magenta", weight=3]; 4347[label="EQ",fontsize=16,color="green",shape="box"];4261[label="yvy3000000",fontsize=16,color="green",shape="box"];4262[label="yvy14900",fontsize=16,color="green",shape="box"];3852 -> 986[label="",style="dashed", color="red", weight=0]; 3852[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];3852 -> 4136[label="",style="dashed", color="magenta", weight=3]; 3852 -> 4137[label="",style="dashed", color="magenta", weight=3]; 3853 -> 2420[label="",style="dashed", color="red", weight=0]; 3853[label="FiniteMap.sizeFM yvy674",fontsize=16,color="magenta"];3853 -> 4138[label="",style="dashed", color="magenta", weight=3]; 3854[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"];3854 -> 4139[label="",style="solid", color="black", weight=3]; 3855[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"];3855 -> 4140[label="",style="solid", color="black", weight=3]; 4263[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"];5247[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4263 -> 5247[label="",style="solid", color="burlywood", weight=9]; 5247 -> 4320[label="",style="solid", color="burlywood", weight=3]; 5248[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4263 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 4321[label="",style="solid", color="burlywood", weight=3]; 4381[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4382[label="yvy540",fontsize=16,color="green",shape="box"];4383[label="yvy544",fontsize=16,color="green",shape="box"];4384[label="yvy541",fontsize=16,color="green",shape="box"];4385 -> 4350[label="",style="dashed", color="red", weight=0]; 4385[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy67 yvy543",fontsize=16,color="magenta"];4385 -> 4430[label="",style="dashed", color="magenta", weight=3]; 4385 -> 4431[label="",style="dashed", color="magenta", weight=3]; 4385 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4385 -> 4433[label="",style="dashed", color="magenta", weight=3]; 4385 -> 4434[label="",style="dashed", color="magenta", weight=3]; 4408 -> 3066[label="",style="dashed", color="red", weight=0]; 4408[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4408 -> 4435[label="",style="dashed", color="magenta", weight=3]; 4408 -> 4436[label="",style="dashed", color="magenta", weight=3]; 4407[label="compare1 yvy49000 yvy50000 yvy222",fontsize=16,color="burlywood",shape="triangle"];5249[label="yvy222/False",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 4437[label="",style="solid", color="burlywood", weight=3]; 5250[label="yvy222/True",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 4438[label="",style="solid", color="burlywood", weight=3]; 4411 -> 3072[label="",style="dashed", color="red", weight=0]; 4411[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4411 -> 4439[label="",style="dashed", color="magenta", weight=3]; 4411 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4410[label="compare1 yvy49000 yvy50000 yvy223",fontsize=16,color="burlywood",shape="triangle"];5251[label="yvy223/False",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 4441[label="",style="solid", color="burlywood", weight=3]; 5252[label="yvy223/True",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 4442[label="",style="solid", color="burlywood", weight=3]; 4414 -> 3074[label="",style="dashed", color="red", weight=0]; 4414[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4414 -> 4443[label="",style="dashed", color="magenta", weight=3]; 4414 -> 4444[label="",style="dashed", color="magenta", weight=3]; 4413[label="compare1 yvy49000 yvy50000 yvy224",fontsize=16,color="burlywood",shape="triangle"];5253[label="yvy224/False",fontsize=10,color="white",style="solid",shape="box"];4413 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 4445[label="",style="solid", color="burlywood", weight=3]; 5254[label="yvy224/True",fontsize=10,color="white",style="solid",shape="box"];4413 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 4446[label="",style="solid", color="burlywood", weight=3]; 4421 -> 3077[label="",style="dashed", color="red", weight=0]; 4421[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4421 -> 4447[label="",style="dashed", color="magenta", weight=3]; 4421 -> 4448[label="",style="dashed", color="magenta", weight=3]; 4420[label="compare1 yvy49000 yvy50000 yvy227",fontsize=16,color="burlywood",shape="triangle"];5255[label="yvy227/False",fontsize=10,color="white",style="solid",shape="box"];4420 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 4449[label="",style="solid", color="burlywood", weight=3]; 5256[label="yvy227/True",fontsize=10,color="white",style="solid",shape="box"];4420 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 4450[label="",style="solid", color="burlywood", weight=3]; 4426 -> 3078[label="",style="dashed", color="red", weight=0]; 4426[label="yvy49000 <= yvy50000",fontsize=16,color="magenta"];4426 -> 4451[label="",style="dashed", color="magenta", weight=3]; 4426 -> 4452[label="",style="dashed", color="magenta", weight=3]; 4425[label="compare1 yvy49000 yvy50000 yvy228",fontsize=16,color="burlywood",shape="triangle"];5257[label="yvy228/False",fontsize=10,color="white",style="solid",shape="box"];4425 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 4453[label="",style="solid", color="burlywood", weight=3]; 5258[label="yvy228/True",fontsize=10,color="white",style="solid",shape="box"];4425 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 4454[label="",style="solid", color="burlywood", weight=3]; 4136[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4137 -> 2420[label="",style="dashed", color="red", weight=0]; 4137[label="FiniteMap.sizeFM yvy673",fontsize=16,color="magenta"];4137 -> 4265[label="",style="dashed", color="magenta", weight=3]; 4138[label="yvy674",fontsize=16,color="green",shape="box"];4139[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"];4139 -> 4266[label="",style="solid", color="black", weight=3]; 4140[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"];4140 -> 4267[label="",style="solid", color="black", weight=3]; 4320[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"];4320 -> 4348[label="",style="solid", color="black", weight=3]; 4321[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"];4321 -> 4349[label="",style="solid", color="black", weight=3]; 4430[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4431[label="yvy50",fontsize=16,color="green",shape="box"];4432[label="yvy543",fontsize=16,color="green",shape="box"];4433[label="yvy51",fontsize=16,color="green",shape="box"];4434[label="yvy67",fontsize=16,color="green",shape="box"];4435[label="yvy49000",fontsize=16,color="green",shape="box"];4436[label="yvy50000",fontsize=16,color="green",shape="box"];4437[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4437 -> 4475[label="",style="solid", color="black", weight=3]; 4438[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4438 -> 4476[label="",style="solid", color="black", weight=3]; 4439[label="yvy49000",fontsize=16,color="green",shape="box"];4440[label="yvy50000",fontsize=16,color="green",shape="box"];4441[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4441 -> 4477[label="",style="solid", color="black", weight=3]; 4442[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4442 -> 4478[label="",style="solid", color="black", weight=3]; 4443[label="yvy49000",fontsize=16,color="green",shape="box"];4444[label="yvy50000",fontsize=16,color="green",shape="box"];4445[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4445 -> 4479[label="",style="solid", color="black", weight=3]; 4446[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4446 -> 4480[label="",style="solid", color="black", weight=3]; 4447[label="yvy49000",fontsize=16,color="green",shape="box"];4448[label="yvy50000",fontsize=16,color="green",shape="box"];4449[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4449 -> 4481[label="",style="solid", color="black", weight=3]; 4450[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4450 -> 4482[label="",style="solid", color="black", weight=3]; 4451[label="yvy49000",fontsize=16,color="green",shape="box"];4452[label="yvy50000",fontsize=16,color="green",shape="box"];4453[label="compare1 yvy49000 yvy50000 False",fontsize=16,color="black",shape="box"];4453 -> 4483[label="",style="solid", color="black", weight=3]; 4454[label="compare1 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4454 -> 4484[label="",style="solid", color="black", weight=3]; 4265[label="yvy673",fontsize=16,color="green",shape="box"];4266[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"];4266 -> 4326[label="",style="solid", color="black", weight=3]; 4267 -> 4350[label="",style="dashed", color="red", weight=0]; 4267[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"];4267 -> 4391[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4348[label="error []",fontsize=16,color="red",shape="box"];4349 -> 4350[label="",style="dashed", color="red", weight=0]; 4349[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"];4349 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4400[label="",style="dashed", color="magenta", weight=3]; 4475[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4475 -> 4487[label="",style="solid", color="black", weight=3]; 4476[label="LT",fontsize=16,color="green",shape="box"];4477[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4477 -> 4488[label="",style="solid", color="black", weight=3]; 4478[label="LT",fontsize=16,color="green",shape="box"];4479[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4479 -> 4489[label="",style="solid", color="black", weight=3]; 4480[label="LT",fontsize=16,color="green",shape="box"];4481[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4481 -> 4490[label="",style="solid", color="black", weight=3]; 4482[label="LT",fontsize=16,color="green",shape="box"];4483[label="compare0 yvy49000 yvy50000 otherwise",fontsize=16,color="black",shape="box"];4483 -> 4491[label="",style="solid", color="black", weight=3]; 4484[label="LT",fontsize=16,color="green",shape="box"];4326[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"];5259[label="yvy674/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4326 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 4455[label="",style="solid", color="burlywood", weight=3]; 5260[label="yvy674/FiniteMap.Branch yvy6740 yvy6741 yvy6742 yvy6743 yvy6744",fontsize=10,color="white",style="solid",shape="box"];4326 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 4456[label="",style="solid", color="burlywood", weight=3]; 4391[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4392[label="yvy670",fontsize=16,color="green",shape="box"];4393 -> 4350[label="",style="dashed", color="red", weight=0]; 4393[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy674 yvy54",fontsize=16,color="magenta"];4393 -> 4457[label="",style="dashed", color="magenta", weight=3]; 4393 -> 4458[label="",style="dashed", color="magenta", weight=3]; 4393 -> 4459[label="",style="dashed", color="magenta", weight=3]; 4393 -> 4460[label="",style="dashed", color="magenta", weight=3]; 4393 -> 4461[label="",style="dashed", color="magenta", weight=3]; 4394[label="yvy671",fontsize=16,color="green",shape="box"];4395[label="yvy673",fontsize=16,color="green",shape="box"];4396[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4397[label="yvy5430",fontsize=16,color="green",shape="box"];4398 -> 4350[label="",style="dashed", color="red", weight=0]; 4398[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4398 -> 4462[label="",style="dashed", color="magenta", weight=3]; 4398 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4398 -> 4464[label="",style="dashed", color="magenta", weight=3]; 4398 -> 4465[label="",style="dashed", color="magenta", weight=3]; 4398 -> 4466[label="",style="dashed", color="magenta", weight=3]; 4399[label="yvy5431",fontsize=16,color="green",shape="box"];4400 -> 4350[label="",style="dashed", color="red", weight=0]; 4400[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy67 yvy5433",fontsize=16,color="magenta"];4400 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4400 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4400 -> 4469[label="",style="dashed", color="magenta", weight=3]; 4400 -> 4470[label="",style="dashed", color="magenta", weight=3]; 4400 -> 4471[label="",style="dashed", color="magenta", weight=3]; 4487[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4487 -> 4497[label="",style="solid", color="black", weight=3]; 4488[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4488 -> 4498[label="",style="solid", color="black", weight=3]; 4489[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4489 -> 4499[label="",style="solid", color="black", weight=3]; 4490[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4490 -> 4500[label="",style="solid", color="black", weight=3]; 4491[label="compare0 yvy49000 yvy50000 True",fontsize=16,color="black",shape="box"];4491 -> 4501[label="",style="solid", color="black", weight=3]; 4455[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"];4455 -> 4485[label="",style="solid", color="black", weight=3]; 4456[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"];4456 -> 4486[label="",style="solid", color="black", weight=3]; 4457[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4458[label="yvy50",fontsize=16,color="green",shape="box"];4459[label="yvy54",fontsize=16,color="green",shape="box"];4460[label="yvy51",fontsize=16,color="green",shape="box"];4461[label="yvy674",fontsize=16,color="green",shape="box"];4462[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4463[label="yvy540",fontsize=16,color="green",shape="box"];4464[label="yvy544",fontsize=16,color="green",shape="box"];4465[label="yvy541",fontsize=16,color="green",shape="box"];4466[label="yvy5434",fontsize=16,color="green",shape="box"];4467[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4468[label="yvy50",fontsize=16,color="green",shape="box"];4469[label="yvy5433",fontsize=16,color="green",shape="box"];4470[label="yvy51",fontsize=16,color="green",shape="box"];4471[label="yvy67",fontsize=16,color="green",shape="box"];4497[label="GT",fontsize=16,color="green",shape="box"];4498[label="GT",fontsize=16,color="green",shape="box"];4499[label="GT",fontsize=16,color="green",shape="box"];4500[label="GT",fontsize=16,color="green",shape="box"];4501[label="GT",fontsize=16,color="green",shape="box"];4485[label="error []",fontsize=16,color="red",shape="box"];4486 -> 4350[label="",style="dashed", color="red", weight=0]; 4486[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"];4486 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4486 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4486 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4486 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4486 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4492[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4493[label="yvy6740",fontsize=16,color="green",shape="box"];4494 -> 4350[label="",style="dashed", color="red", weight=0]; 4494[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"];4494 -> 4502[label="",style="dashed", color="magenta", weight=3]; 4494 -> 4503[label="",style="dashed", color="magenta", weight=3]; 4494 -> 4504[label="",style="dashed", color="magenta", weight=3]; 4494 -> 4505[label="",style="dashed", color="magenta", weight=3]; 4494 -> 4506[label="",style="dashed", color="magenta", weight=3]; 4495[label="yvy6741",fontsize=16,color="green",shape="box"];4496 -> 4350[label="",style="dashed", color="red", weight=0]; 4496[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy670 yvy671 yvy673 yvy6743",fontsize=16,color="magenta"];4496 -> 4507[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4508[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4509[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4510[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4511[label="",style="dashed", color="magenta", weight=3]; 4502[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4503[label="yvy50",fontsize=16,color="green",shape="box"];4504[label="yvy54",fontsize=16,color="green",shape="box"];4505[label="yvy51",fontsize=16,color="green",shape="box"];4506[label="yvy6744",fontsize=16,color="green",shape="box"];4507[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4508[label="yvy670",fontsize=16,color="green",shape="box"];4509[label="yvy6743",fontsize=16,color="green",shape="box"];4510[label="yvy671",fontsize=16,color="green",shape="box"];4511[label="yvy673",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_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_C(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C21(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare26(Just(yvy400), Nothing, 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_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_C12(yvy500, 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), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(Nothing, Nothing, True, h), LT), 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_esEs8(new_compare26(Nothing, Just(yvy500), False, h), LT), 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_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare26(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), 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_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_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs4(yvy4000, yvy3000, ee, ef, eg) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhe) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cce, ccf) -> new_pePe(new_lt20(yvy49000, yvy50000, cce), new_asAs(new_esEs28(yvy49000, yvy50000, cce), new_ltEs20(yvy49001, yvy50001, ccf))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bee, bef, beg) -> new_pePe(new_lt9(yvy49000, yvy50000, bee), new_asAs(new_esEs24(yvy49000, yvy50000, bee), new_pePe(new_lt10(yvy49001, yvy50001, bef), new_asAs(new_esEs23(yvy49001, yvy50001, bef), new_ltEs18(yvy49002, yvy50002, beg))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs9(yvy4000, yvy3000, cha) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs12(yvy400, yvy500) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eb), da) -> new_esEs15(yvy4000, yvy3000, eb) new_compare(:(yvy49000, yvy49001), [], bab) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs4(yvy4002, yvy3002, bag, bah, bba) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hg) -> new_esEs8(new_compare9(yvy49000, yvy50000, hg), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Ratio, ff)) -> new_esEs15(yvy4000, yvy3000, ff) new_ltEs4(Nothing, Nothing, gd) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgc), cgd)) -> new_esEs7(yvy4001, yvy3001, cgc, cgd) new_ltEs4(Just(yvy49000), Nothing, gd) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, ceb)) -> new_compare6(yvy49000, yvy50000, ceb) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ca), cb)) -> new_esEs7(yvy4000, yvy3000, ca, cb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hb)) -> new_ltEs4(yvy49000, yvy50000, hb) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbg)) -> new_esEs15(yvy4002, yvy3002, bbg) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bab)) -> new_ltEs11(yvy4900, yvy5000, bab) new_compare28(yvy49000, yvy50000, app(ty_[], cec)) -> new_compare(yvy49000, yvy50000, cec) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, beh) -> new_esEs8(new_compare(yvy49000, yvy50000, beh), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_esEs15(yvy49000, yvy50000, bc) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfb)) -> new_esEs9(yvy49001, yvy50001, bfb) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cah), bhe)) -> new_ltEs16(yvy4900, yvy5000, cah, bhe) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, da) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cad), cae), bhe) -> new_ltEs16(yvy49000, yvy50000, cad, cae) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], beh)) -> new_lt15(yvy49000, yvy50000, beh) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_Either, cbg), cbh)) -> new_ltEs16(yvy49000, yvy50000, cbg, cbh) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bed) -> new_asAs(new_esEs22(yvy4000, yvy3000, bed), new_esEs21(yvy4001, yvy3001, bed)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cah, bhe) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fg, fh) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgd)) -> new_ltEs11(yvy49002, yvy50002, bgd) new_compare26(Nothing, Nothing, False, ccc) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, da) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], be)) -> new_esEs9(yvy4000, yvy3000, be) new_compare15(yvy49000, yvy50000, True, hh, baa) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, ceh), cfa)) -> new_compare13(yvy49000, yvy50000, ceh, cfa) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs4(yvy49000, yvy50000, ga, gb, gc) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs4(yvy49001, yvy50001, bfc, bfd, bfe) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bec)) -> new_esEs15(yvy4000, yvy3000, bec) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt16(yvy49001, yvy50001, bfc, bfd, bfe) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_lt18(yvy49000, yvy50000, fg, fh) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs11(yvy400, yvy500) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fg, fh) -> new_esEs8(new_compare13(yvy49000, yvy50000, fg, fh), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Maybe, fd)) -> new_esEs5(yvy4000, yvy3000, fd) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs4(yvy400, yvy500, bac, bad, bae) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs12(yvy4900, yvy5000, bee, bef, beg) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, ga, gb, gc) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, che), chf)) -> new_esEs7(yvy4000, yvy3000, che, chf) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs4(yvy4001, yvy3001, bca, bcb, bcc) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_@2, cca), ccb)) -> new_ltEs17(yvy49000, yvy50000, cca, ccb) new_compare25(yvy49000, yvy50000, True, fg, fh) -> EQ new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs17(yvy400, yvy500) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ea), da) -> new_esEs5(yvy4000, yvy3000, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cac), bhe) -> new_ltEs4(yvy49000, yvy50000, cac) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, da) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], ccg) -> False new_esEs9([], :(yvy3000, yvy3001), ccg) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs9(yvy4001, yvy3001, cfg) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), da) -> new_esEs4(yvy4000, yvy3000, db, dc, dd) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs12(yvy49002, yvy50002, bge, bgf, bgg) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, bd) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), bd) -> False new_esEs5(Just(yvy4000), Nothing, bd) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cc), cd)) -> new_esEs6(yvy4000, yvy3000, cc, cd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_esEs6(yvy49000, yvy50000, fg, fh) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), da) -> new_esEs6(yvy4000, yvy3000, dg, dh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhe) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccc) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccc), ccc) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hc), hd)) -> new_ltEs16(yvy49000, yvy50000, hc, hd) new_compare26(yvy490, yvy500, True, ccc) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_esEs5(yvy49001, yvy50001, bff) new_lt10(yvy49001, yvy50001, app(ty_[], bfb)) -> new_lt15(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhe) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, de), df), da) -> new_esEs7(yvy4000, yvy3000, de, df) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, ga, gb, gc) -> new_esEs8(new_compare7(yvy49000, yvy50000, ga, gb, gc), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bhh), caa), cab), bhe) -> new_ltEs12(yvy49000, yvy50000, bhh, caa, cab) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, da) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs4(yvy4000, yvy3000, bdc, bdd, bde) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_esEs15(yvy49001, yvy50001, bfa) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_[], ed)) -> new_esEs9(yvy4000, yvy3000, ed) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_lt16(yvy49000, yvy50000, ga, gb, gc) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ccg) -> new_asAs(new_esEs25(yvy4000, yvy3000, ccg), new_esEs9(yvy4001, yvy3001, ccg)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cf)) -> new_esEs15(yvy4000, yvy3000, cf) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs7(yvy4000, yvy3000, cdd, cde) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bab) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_@2, eh), fa)) -> new_esEs7(yvy4000, yvy3000, eh, fa) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ce)) -> new_esEs5(yvy4000, yvy3000, ce) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, ccd) -> new_fsEs(new_compare6(yvy4900, yvy5000, ccd)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_esEs6(yvy49001, yvy50001, bfg, bfh) new_esEs24(yvy49000, yvy50000, app(ty_[], beh)) -> new_esEs9(yvy49000, yvy50000, beh) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cfh, cga, cgb) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_Either, fb), fc)) -> new_esEs6(yvy4000, yvy3000, fb, fc) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, caf), cag), bhe) -> new_ltEs17(yvy49000, yvy50000, caf, cag) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cgh)) -> new_esEs15(yvy4001, yvy3001, cgh) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bbh)) -> new_esEs9(yvy4001, yvy3001, bbh) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs29(yvy400, yvy500, app(ty_Maybe, bd)) -> new_esEs5(yvy400, yvy500, bd) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs10(yvy400, yvy500) new_compare24(yvy49000, yvy50000, True, ga, gb, gc) -> EQ new_lt5(yvy49000, yvy50000, bc) -> new_esEs8(new_compare6(yvy49000, yvy50000, bc), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bch)) -> new_esEs5(yvy4001, yvy3001, bch) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhe) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs16(yvy400, yvy500) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, he), hf)) -> new_ltEs17(yvy49000, yvy50000, he, hf) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fg, fh) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cfe, cff) -> new_asAs(new_esEs27(yvy4000, yvy3000, cfe), new_esEs26(yvy4001, yvy3001, cff)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hg) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hg), hg) new_ltEs16(Right(yvy49000), Left(yvy50000), cah, bhe) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs9(yvy4000, yvy3000, cch) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(yvy4000, yvy3000, bf, bg, bh) new_esEs6(Left(yvy4000), Right(yvy3000), ec, da) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ec, da) -> False new_ltEs4(Nothing, Just(yvy50000), gd) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, beb)) -> new_esEs5(yvy4000, yvy3000, beb) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bgh)) -> new_ltEs4(yvy49002, yvy50002, bgh) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_[], cbb)) -> new_ltEs11(yvy49000, yvy50000, cbb) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceg)) -> new_compare9(yvy49000, yvy50000, ceg) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbb), bbc)) -> new_esEs7(yvy4002, yvy3002, bbb, bbc) new_esEs20(yvy4000, yvy3000, app(ty_[], bdb)) -> new_esEs9(yvy4000, yvy3000, bdb) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_esEs7(yvy49000, yvy50000, hh, baa) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhe) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dac) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dac), dac) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhf), bhe) -> new_ltEs9(yvy49000, yvy50000, bhf) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ge)) -> new_ltEs9(yvy49000, yvy50000, ge) new_ltEs11(yvy4900, yvy5000, bab) -> new_fsEs(new_compare(yvy4900, yvy5000, bab)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_esEs5(yvy49000, yvy50000, hg) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy49000, yvy50000, cbc, cbd, cbe) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cge), cgf)) -> new_esEs6(yvy4001, yvy3001, cge, cgf) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_esEs7(yvy49001, yvy50001, bga, bgb) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_lt5(yvy49001, yvy50001, bfa) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhg), bhe) -> new_ltEs11(yvy49000, yvy50000, bhg) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, da) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bab) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bab)) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Ratio, cba)) -> new_ltEs9(yvy49000, yvy50000, cba) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bha), bhb)) -> new_ltEs16(yvy49002, yvy50002, bha, bhb) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs5(yvy4000, yvy3000, cdh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhe) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcf), bcg)) -> new_esEs6(yvy4001, yvy3001, bcf, bcg) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdf), cdg)) -> new_esEs6(yvy4000, yvy3000, cdf, cdg) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, hh, baa) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, hh, baa), hh, baa) new_compare26(Just(yvy4900), Nothing, False, ccc) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbf)) -> new_esEs5(yvy4002, yvy3002, bbf) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_lt19(yvy49001, yvy50001, bga, bgb) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bab) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fg, fh) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(yvy4000, yvy3000, bdh, bea) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fg, fh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfb), cfc)) -> new_compare11(yvy49000, yvy50000, cfb, cfc) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, cea)) -> new_esEs15(yvy4000, yvy3000, cea) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_lt7(yvy49000, yvy50000, hg) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bda)) -> new_esEs15(yvy4001, yvy3001, bda) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfd) -> GT new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs14(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, da) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bcd), bce)) -> new_esEs7(yvy4001, yvy3001, bcd, bce) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(yvy4000, yvy3000, chb, chc, chd) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhe) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, ga, gb, gc) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs29(yvy400, yvy500, app(app(ty_Either, ec), da)) -> new_esEs6(yvy400, yvy500, ec, da) new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dab)) -> new_esEs15(yvy4000, yvy3000, dab) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], cg), da) -> new_esEs9(yvy4000, yvy3000, cg) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Maybe, cbf)) -> new_ltEs4(yvy49000, yvy50000, cbf) new_compare27(yvy49000, yvy50000, False, hh, baa) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, hh, baa), hh, baa) new_esEs29(yvy400, yvy500, app(ty_Ratio, bed)) -> new_esEs15(yvy400, yvy500, bed) new_compare112(yvy49000, yvy50000, False, ga, gb, gc) -> GT new_compare27(yvy49000, yvy50000, True, hh, baa) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy4900, yvy5000, cce, ccf) new_esEs29(yvy400, yvy500, app(app(ty_@2, cfe), cff)) -> new_esEs7(yvy400, yvy500, cfe, cff) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgg)) -> new_esEs5(yvy4001, yvy3001, cgg) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cda, cdb, cdc) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, hh, baa) -> new_esEs8(new_compare11(yvy49000, yvy50000, hh, baa), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, ga, gb, gc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfd) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gf)) -> new_ltEs11(yvy49000, yvy50000, gf) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chg), chh)) -> new_esEs6(yvy4000, yvy3000, chg, chh) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgc)) -> new_ltEs9(yvy49002, yvy50002, bgc) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhe) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbd), bbe)) -> new_esEs6(yvy4002, yvy3002, bbd, bbe) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_lt5(yvy49000, yvy50000, bc) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, da) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccc) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_lt19(yvy49000, yvy50000, hh, baa) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, ccd)) -> new_ltEs9(yvy4900, yvy5000, ccd) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhc), bhd)) -> new_ltEs17(yvy49002, yvy50002, bhc, bhd) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, hh, baa) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], ccg) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, gd)) -> new_ltEs4(yvy4900, yvy5000, gd) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, da) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_[], ccg)) -> new_esEs9(yvy400, yvy500, ccg) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_lt18(yvy49001, yvy50001, bfg, bfh) new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ced), cee), cef)) -> new_compare7(yvy49000, yvy50000, ced, cee, cef) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs12(yvy49000, yvy50000, gg, gh, ha) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bab) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bab), bab) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bac, bad, bae) -> new_asAs(new_esEs20(yvy4000, yvy3000, bac), new_asAs(new_esEs19(yvy4001, yvy3001, bad), new_esEs18(yvy4002, yvy3002, bae))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs5(yvy4000, yvy3000, daa) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_lt7(yvy49001, yvy50001, bff) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], baf)) -> new_esEs9(yvy4002, yvy3002, baf) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(yvy4000, yvy3000, bdf, bdg) The set Q consists of the following terms: new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCompAux0(x0, LT) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_compare15(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_esEs26(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_Int) new_compare16(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9([], :(x0, x1), x2) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_compare26(Just(x0), Nothing, False, x1) new_lt18(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(EQ, EQ) new_esEs26(x0, x1, ty_Int) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare25(x0, x1, False, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_sr(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_compare13(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Char) new_lt15(x0, x1, x2) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_compare210(x0, x1, False) new_esEs5(Just(x0), Nothing, x1) new_compare28(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_compare10(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt9(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_lt5(x0, x1, x2) new_compare26(Nothing, Just(x0), False, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_compare([], :(x0, x1), x2) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt13(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs25(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(GT, GT) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare27(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs9(:(x0, x1), [], x2) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs27(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs5(Nothing, Nothing, x0) new_lt9(x0, x1, ty_@0) new_ltEs9(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_compare26(x0, x1, True, x2) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_compare([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs11(x0, x1, x2) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, x2, x3) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_gt(x0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs4(Just(x0), Nothing, x1) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_compare112(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_esEs9([], [], x0) new_esEs9(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_compare30(x0, x1, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare9(x0, x1, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare7(x0, x1, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_compare31(x0, x1) new_compare26(Just(x0), Just(x1), False, x2) new_esEs27(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_compare15(x0, x1, True, x2, x3) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_compare(:(x0, x1), [], x2) new_ltEs13(GT, GT) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs18(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs18(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, ty_Ordering) new_compare28(x0, x1, ty_@0) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs30(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_compare26(Nothing, Nothing, False, x0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_@0) new_compare11(x0, x1, x2, x3) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_@0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs4(Nothing, Nothing, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, 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_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (22) Complex Obligation (AND) ---------------------------------------- (23) 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(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(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_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(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_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_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs4(yvy4000, yvy3000, ee, ef, eg) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhe) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cce, ccf) -> new_pePe(new_lt20(yvy49000, yvy50000, cce), new_asAs(new_esEs28(yvy49000, yvy50000, cce), new_ltEs20(yvy49001, yvy50001, ccf))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bee, bef, beg) -> new_pePe(new_lt9(yvy49000, yvy50000, bee), new_asAs(new_esEs24(yvy49000, yvy50000, bee), new_pePe(new_lt10(yvy49001, yvy50001, bef), new_asAs(new_esEs23(yvy49001, yvy50001, bef), new_ltEs18(yvy49002, yvy50002, beg))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs9(yvy4000, yvy3000, cha) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs12(yvy400, yvy500) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eb), da) -> new_esEs15(yvy4000, yvy3000, eb) new_compare(:(yvy49000, yvy49001), [], bab) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs4(yvy4002, yvy3002, bag, bah, bba) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hg) -> new_esEs8(new_compare9(yvy49000, yvy50000, hg), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Ratio, ff)) -> new_esEs15(yvy4000, yvy3000, ff) new_ltEs4(Nothing, Nothing, gd) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgc), cgd)) -> new_esEs7(yvy4001, yvy3001, cgc, cgd) new_ltEs4(Just(yvy49000), Nothing, gd) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, ceb)) -> new_compare6(yvy49000, yvy50000, ceb) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ca), cb)) -> new_esEs7(yvy4000, yvy3000, ca, cb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hb)) -> new_ltEs4(yvy49000, yvy50000, hb) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbg)) -> new_esEs15(yvy4002, yvy3002, bbg) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bab)) -> new_ltEs11(yvy4900, yvy5000, bab) new_compare28(yvy49000, yvy50000, app(ty_[], cec)) -> new_compare(yvy49000, yvy50000, cec) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, beh) -> new_esEs8(new_compare(yvy49000, yvy50000, beh), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_esEs15(yvy49000, yvy50000, bc) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfb)) -> new_esEs9(yvy49001, yvy50001, bfb) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cah), bhe)) -> new_ltEs16(yvy4900, yvy5000, cah, bhe) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, da) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cad), cae), bhe) -> new_ltEs16(yvy49000, yvy50000, cad, cae) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], beh)) -> new_lt15(yvy49000, yvy50000, beh) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_Either, cbg), cbh)) -> new_ltEs16(yvy49000, yvy50000, cbg, cbh) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bed) -> new_asAs(new_esEs22(yvy4000, yvy3000, bed), new_esEs21(yvy4001, yvy3001, bed)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cah, bhe) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fg, fh) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgd)) -> new_ltEs11(yvy49002, yvy50002, bgd) new_compare26(Nothing, Nothing, False, ccc) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, da) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], be)) -> new_esEs9(yvy4000, yvy3000, be) new_compare15(yvy49000, yvy50000, True, hh, baa) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, ceh), cfa)) -> new_compare13(yvy49000, yvy50000, ceh, cfa) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs4(yvy49000, yvy50000, ga, gb, gc) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs4(yvy49001, yvy50001, bfc, bfd, bfe) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bec)) -> new_esEs15(yvy4000, yvy3000, bec) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt16(yvy49001, yvy50001, bfc, bfd, bfe) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_lt18(yvy49000, yvy50000, fg, fh) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs11(yvy400, yvy500) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fg, fh) -> new_esEs8(new_compare13(yvy49000, yvy50000, fg, fh), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Maybe, fd)) -> new_esEs5(yvy4000, yvy3000, fd) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs4(yvy400, yvy500, bac, bad, bae) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs12(yvy4900, yvy5000, bee, bef, beg) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, ga, gb, gc) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, che), chf)) -> new_esEs7(yvy4000, yvy3000, che, chf) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs4(yvy4001, yvy3001, bca, bcb, bcc) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_@2, cca), ccb)) -> new_ltEs17(yvy49000, yvy50000, cca, ccb) new_compare25(yvy49000, yvy50000, True, fg, fh) -> EQ new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs17(yvy400, yvy500) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ea), da) -> new_esEs5(yvy4000, yvy3000, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cac), bhe) -> new_ltEs4(yvy49000, yvy50000, cac) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, da) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], ccg) -> False new_esEs9([], :(yvy3000, yvy3001), ccg) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs9(yvy4001, yvy3001, cfg) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), da) -> new_esEs4(yvy4000, yvy3000, db, dc, dd) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs12(yvy49002, yvy50002, bge, bgf, bgg) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, bd) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), bd) -> False new_esEs5(Just(yvy4000), Nothing, bd) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cc), cd)) -> new_esEs6(yvy4000, yvy3000, cc, cd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_esEs6(yvy49000, yvy50000, fg, fh) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), da) -> new_esEs6(yvy4000, yvy3000, dg, dh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhe) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccc) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccc), ccc) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hc), hd)) -> new_ltEs16(yvy49000, yvy50000, hc, hd) new_compare26(yvy490, yvy500, True, ccc) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_esEs5(yvy49001, yvy50001, bff) new_lt10(yvy49001, yvy50001, app(ty_[], bfb)) -> new_lt15(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhe) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, de), df), da) -> new_esEs7(yvy4000, yvy3000, de, df) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, ga, gb, gc) -> new_esEs8(new_compare7(yvy49000, yvy50000, ga, gb, gc), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bhh), caa), cab), bhe) -> new_ltEs12(yvy49000, yvy50000, bhh, caa, cab) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, da) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs4(yvy4000, yvy3000, bdc, bdd, bde) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_esEs15(yvy49001, yvy50001, bfa) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_[], ed)) -> new_esEs9(yvy4000, yvy3000, ed) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_lt16(yvy49000, yvy50000, ga, gb, gc) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ccg) -> new_asAs(new_esEs25(yvy4000, yvy3000, ccg), new_esEs9(yvy4001, yvy3001, ccg)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cf)) -> new_esEs15(yvy4000, yvy3000, cf) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs7(yvy4000, yvy3000, cdd, cde) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bab) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_@2, eh), fa)) -> new_esEs7(yvy4000, yvy3000, eh, fa) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ce)) -> new_esEs5(yvy4000, yvy3000, ce) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, ccd) -> new_fsEs(new_compare6(yvy4900, yvy5000, ccd)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_esEs6(yvy49001, yvy50001, bfg, bfh) new_esEs24(yvy49000, yvy50000, app(ty_[], beh)) -> new_esEs9(yvy49000, yvy50000, beh) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cfh, cga, cgb) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_Either, fb), fc)) -> new_esEs6(yvy4000, yvy3000, fb, fc) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, caf), cag), bhe) -> new_ltEs17(yvy49000, yvy50000, caf, cag) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cgh)) -> new_esEs15(yvy4001, yvy3001, cgh) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bbh)) -> new_esEs9(yvy4001, yvy3001, bbh) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs29(yvy400, yvy500, app(ty_Maybe, bd)) -> new_esEs5(yvy400, yvy500, bd) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs10(yvy400, yvy500) new_compare24(yvy49000, yvy50000, True, ga, gb, gc) -> EQ new_lt5(yvy49000, yvy50000, bc) -> new_esEs8(new_compare6(yvy49000, yvy50000, bc), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bch)) -> new_esEs5(yvy4001, yvy3001, bch) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhe) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs16(yvy400, yvy500) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, he), hf)) -> new_ltEs17(yvy49000, yvy50000, he, hf) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fg, fh) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cfe, cff) -> new_asAs(new_esEs27(yvy4000, yvy3000, cfe), new_esEs26(yvy4001, yvy3001, cff)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hg) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hg), hg) new_ltEs16(Right(yvy49000), Left(yvy50000), cah, bhe) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs9(yvy4000, yvy3000, cch) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(yvy4000, yvy3000, bf, bg, bh) new_esEs6(Left(yvy4000), Right(yvy3000), ec, da) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ec, da) -> False new_ltEs4(Nothing, Just(yvy50000), gd) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, beb)) -> new_esEs5(yvy4000, yvy3000, beb) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bgh)) -> new_ltEs4(yvy49002, yvy50002, bgh) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_[], cbb)) -> new_ltEs11(yvy49000, yvy50000, cbb) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceg)) -> new_compare9(yvy49000, yvy50000, ceg) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbb), bbc)) -> new_esEs7(yvy4002, yvy3002, bbb, bbc) new_esEs20(yvy4000, yvy3000, app(ty_[], bdb)) -> new_esEs9(yvy4000, yvy3000, bdb) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_esEs7(yvy49000, yvy50000, hh, baa) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhe) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dac) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dac), dac) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhf), bhe) -> new_ltEs9(yvy49000, yvy50000, bhf) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ge)) -> new_ltEs9(yvy49000, yvy50000, ge) new_ltEs11(yvy4900, yvy5000, bab) -> new_fsEs(new_compare(yvy4900, yvy5000, bab)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_esEs5(yvy49000, yvy50000, hg) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy49000, yvy50000, cbc, cbd, cbe) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cge), cgf)) -> new_esEs6(yvy4001, yvy3001, cge, cgf) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_esEs7(yvy49001, yvy50001, bga, bgb) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_lt5(yvy49001, yvy50001, bfa) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhg), bhe) -> new_ltEs11(yvy49000, yvy50000, bhg) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, da) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bab) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bab)) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Ratio, cba)) -> new_ltEs9(yvy49000, yvy50000, cba) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bha), bhb)) -> new_ltEs16(yvy49002, yvy50002, bha, bhb) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs5(yvy4000, yvy3000, cdh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhe) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcf), bcg)) -> new_esEs6(yvy4001, yvy3001, bcf, bcg) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdf), cdg)) -> new_esEs6(yvy4000, yvy3000, cdf, cdg) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, hh, baa) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, hh, baa), hh, baa) new_compare26(Just(yvy4900), Nothing, False, ccc) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbf)) -> new_esEs5(yvy4002, yvy3002, bbf) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_lt19(yvy49001, yvy50001, bga, bgb) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bab) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fg, fh) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(yvy4000, yvy3000, bdh, bea) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fg, fh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfb), cfc)) -> new_compare11(yvy49000, yvy50000, cfb, cfc) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, cea)) -> new_esEs15(yvy4000, yvy3000, cea) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_lt7(yvy49000, yvy50000, hg) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bda)) -> new_esEs15(yvy4001, yvy3001, bda) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfd) -> GT new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs14(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, da) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bcd), bce)) -> new_esEs7(yvy4001, yvy3001, bcd, bce) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(yvy4000, yvy3000, chb, chc, chd) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhe) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, ga, gb, gc) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs29(yvy400, yvy500, app(app(ty_Either, ec), da)) -> new_esEs6(yvy400, yvy500, ec, da) new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dab)) -> new_esEs15(yvy4000, yvy3000, dab) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], cg), da) -> new_esEs9(yvy4000, yvy3000, cg) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Maybe, cbf)) -> new_ltEs4(yvy49000, yvy50000, cbf) new_compare27(yvy49000, yvy50000, False, hh, baa) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, hh, baa), hh, baa) new_esEs29(yvy400, yvy500, app(ty_Ratio, bed)) -> new_esEs15(yvy400, yvy500, bed) new_compare112(yvy49000, yvy50000, False, ga, gb, gc) -> GT new_compare27(yvy49000, yvy50000, True, hh, baa) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy4900, yvy5000, cce, ccf) new_esEs29(yvy400, yvy500, app(app(ty_@2, cfe), cff)) -> new_esEs7(yvy400, yvy500, cfe, cff) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgg)) -> new_esEs5(yvy4001, yvy3001, cgg) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cda, cdb, cdc) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, hh, baa) -> new_esEs8(new_compare11(yvy49000, yvy50000, hh, baa), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, ga, gb, gc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfd) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gf)) -> new_ltEs11(yvy49000, yvy50000, gf) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chg), chh)) -> new_esEs6(yvy4000, yvy3000, chg, chh) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgc)) -> new_ltEs9(yvy49002, yvy50002, bgc) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhe) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbd), bbe)) -> new_esEs6(yvy4002, yvy3002, bbd, bbe) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_lt5(yvy49000, yvy50000, bc) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, da) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccc) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_lt19(yvy49000, yvy50000, hh, baa) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, ccd)) -> new_ltEs9(yvy4900, yvy5000, ccd) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhc), bhd)) -> new_ltEs17(yvy49002, yvy50002, bhc, bhd) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, hh, baa) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], ccg) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, gd)) -> new_ltEs4(yvy4900, yvy5000, gd) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, da) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_[], ccg)) -> new_esEs9(yvy400, yvy500, ccg) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_lt18(yvy49001, yvy50001, bfg, bfh) new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ced), cee), cef)) -> new_compare7(yvy49000, yvy50000, ced, cee, cef) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs12(yvy49000, yvy50000, gg, gh, ha) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bab) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bab), bab) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bac, bad, bae) -> new_asAs(new_esEs20(yvy4000, yvy3000, bac), new_asAs(new_esEs19(yvy4001, yvy3001, bad), new_esEs18(yvy4002, yvy3002, bae))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs5(yvy4000, yvy3000, daa) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_lt7(yvy49001, yvy50001, bff) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], baf)) -> new_esEs9(yvy4002, yvy3002, baf) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(yvy4000, yvy3000, bdf, bdg) The set Q consists of the following terms: new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCompAux0(x0, LT) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_compare15(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_esEs26(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_Int) new_compare16(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9([], :(x0, x1), x2) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_compare26(Just(x0), Nothing, False, x1) new_lt18(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(EQ, EQ) new_esEs26(x0, x1, ty_Int) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare25(x0, x1, False, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_sr(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_compare13(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Char) new_lt15(x0, x1, x2) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_compare210(x0, x1, False) new_esEs5(Just(x0), Nothing, x1) new_compare28(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_compare10(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt9(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_lt5(x0, x1, x2) new_compare26(Nothing, Just(x0), False, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_compare([], :(x0, x1), x2) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt13(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs25(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(GT, GT) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare27(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs9(:(x0, x1), [], x2) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs27(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs5(Nothing, Nothing, x0) new_lt9(x0, x1, ty_@0) new_ltEs9(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_compare26(x0, x1, True, x2) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_compare([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs11(x0, x1, x2) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, x2, x3) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_gt(x0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs4(Just(x0), Nothing, x1) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_compare112(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_esEs9([], [], x0) new_esEs9(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_compare30(x0, x1, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare9(x0, x1, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare7(x0, x1, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_compare31(x0, x1) new_compare26(Just(x0), Just(x1), False, x2) new_esEs27(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_compare15(x0, x1, True, x2, x3) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_compare(:(x0, x1), [], x2) new_ltEs13(GT, GT) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs18(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs18(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, ty_Ordering) new_compare28(x0, x1, ty_@0) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs30(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_compare26(Nothing, Nothing, False, x0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_@0) new_compare11(x0, x1, x2, x3) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_@0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs4(Nothing, Nothing, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, 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_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) 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_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_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(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C2(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(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_C(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(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_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_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_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 ---------------------------------------- (25) YES ---------------------------------------- (26) 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_esEs8(new_compare26(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_esEs8(new_compare26(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_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs4(yvy4000, yvy3000, ee, ef, eg) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhe) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cce, ccf) -> new_pePe(new_lt20(yvy49000, yvy50000, cce), new_asAs(new_esEs28(yvy49000, yvy50000, cce), new_ltEs20(yvy49001, yvy50001, ccf))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bee, bef, beg) -> new_pePe(new_lt9(yvy49000, yvy50000, bee), new_asAs(new_esEs24(yvy49000, yvy50000, bee), new_pePe(new_lt10(yvy49001, yvy50001, bef), new_asAs(new_esEs23(yvy49001, yvy50001, bef), new_ltEs18(yvy49002, yvy50002, beg))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], cha)) -> new_esEs9(yvy4000, yvy3000, cha) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs12(yvy400, yvy500) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eb), da) -> new_esEs15(yvy4000, yvy3000, eb) new_compare(:(yvy49000, yvy49001), [], bab) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs4(yvy4002, yvy3002, bag, bah, bba) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hg) -> new_esEs8(new_compare9(yvy49000, yvy50000, hg), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Ratio, ff)) -> new_esEs15(yvy4000, yvy3000, ff) new_ltEs4(Nothing, Nothing, gd) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgc), cgd)) -> new_esEs7(yvy4001, yvy3001, cgc, cgd) new_ltEs4(Just(yvy49000), Nothing, gd) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, ceb)) -> new_compare6(yvy49000, yvy50000, ceb) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ca), cb)) -> new_esEs7(yvy4000, yvy3000, ca, cb) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hb)) -> new_ltEs4(yvy49000, yvy50000, hb) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbg)) -> new_esEs15(yvy4002, yvy3002, bbg) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bab)) -> new_ltEs11(yvy4900, yvy5000, bab) new_compare28(yvy49000, yvy50000, app(ty_[], cec)) -> new_compare(yvy49000, yvy50000, cec) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, beh) -> new_esEs8(new_compare(yvy49000, yvy50000, beh), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_esEs15(yvy49000, yvy50000, bc) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfb)) -> new_esEs9(yvy49001, yvy50001, bfb) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cah), bhe)) -> new_ltEs16(yvy4900, yvy5000, cah, bhe) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, da) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cad), cae), bhe) -> new_ltEs16(yvy49000, yvy50000, cad, cae) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], beh)) -> new_lt15(yvy49000, yvy50000, beh) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_Either, cbg), cbh)) -> new_ltEs16(yvy49000, yvy50000, cbg, cbh) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bed) -> new_asAs(new_esEs22(yvy4000, yvy3000, bed), new_esEs21(yvy4001, yvy3001, bed)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cah, bhe) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fg, fh) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgd)) -> new_ltEs11(yvy49002, yvy50002, bgd) new_compare26(Nothing, Nothing, False, ccc) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, da) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], be)) -> new_esEs9(yvy4000, yvy3000, be) new_compare15(yvy49000, yvy50000, True, hh, baa) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, ceh), cfa)) -> new_compare13(yvy49000, yvy50000, ceh, cfa) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs4(yvy49000, yvy50000, ga, gb, gc) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs4(yvy49001, yvy50001, bfc, bfd, bfe) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bec)) -> new_esEs15(yvy4000, yvy3000, bec) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt16(yvy49001, yvy50001, bfc, bfd, bfe) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_lt18(yvy49000, yvy50000, fg, fh) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs11(yvy400, yvy500) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fg, fh) -> new_esEs8(new_compare13(yvy49000, yvy50000, fg, fh), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Maybe, fd)) -> new_esEs5(yvy4000, yvy3000, fd) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs4(yvy400, yvy500, bac, bad, bae) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs12(yvy4900, yvy5000, bee, bef, beg) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, ga, gb, gc) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, che), chf)) -> new_esEs7(yvy4000, yvy3000, che, chf) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs4(yvy4001, yvy3001, bca, bcb, bcc) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(ty_@2, cca), ccb)) -> new_ltEs17(yvy49000, yvy50000, cca, ccb) new_compare25(yvy49000, yvy50000, True, fg, fh) -> EQ new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs17(yvy400, yvy500) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ea), da) -> new_esEs5(yvy4000, yvy3000, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cac), bhe) -> new_ltEs4(yvy49000, yvy50000, cac) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, da) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], ccg) -> False new_esEs9([], :(yvy3000, yvy3001), ccg) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfg)) -> new_esEs9(yvy4001, yvy3001, cfg) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), da) -> new_esEs4(yvy4000, yvy3000, db, dc, dd) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs12(yvy49002, yvy50002, bge, bgf, bgg) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, bd) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), bd) -> False new_esEs5(Just(yvy4000), Nothing, bd) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cc), cd)) -> new_esEs6(yvy4000, yvy3000, cc, cd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fg), fh)) -> new_esEs6(yvy49000, yvy50000, fg, fh) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dg), dh), da) -> new_esEs6(yvy4000, yvy3000, dg, dh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhe) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccc) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccc), ccc) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hc), hd)) -> new_ltEs16(yvy49000, yvy50000, hc, hd) new_compare26(yvy490, yvy500, True, ccc) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_esEs5(yvy49001, yvy50001, bff) new_lt10(yvy49001, yvy50001, app(ty_[], bfb)) -> new_lt15(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhe) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, de), df), da) -> new_esEs7(yvy4000, yvy3000, de, df) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, ga, gb, gc) -> new_esEs8(new_compare7(yvy49000, yvy50000, ga, gb, gc), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, bhh), caa), cab), bhe) -> new_ltEs12(yvy49000, yvy50000, bhh, caa, cab) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, da) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs4(yvy4000, yvy3000, bdc, bdd, bde) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_esEs15(yvy49001, yvy50001, bfa) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_[], ed)) -> new_esEs9(yvy4000, yvy3000, ed) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, ga), gb), gc)) -> new_lt16(yvy49000, yvy50000, ga, gb, gc) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ccg) -> new_asAs(new_esEs25(yvy4000, yvy3000, ccg), new_esEs9(yvy4001, yvy3001, ccg)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cf)) -> new_esEs15(yvy4000, yvy3000, cf) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdd), cde)) -> new_esEs7(yvy4000, yvy3000, cdd, cde) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bab) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_@2, eh), fa)) -> new_esEs7(yvy4000, yvy3000, eh, fa) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ce)) -> new_esEs5(yvy4000, yvy3000, ce) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, ccd) -> new_fsEs(new_compare6(yvy4900, yvy5000, ccd)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_esEs6(yvy49001, yvy50001, bfg, bfh) new_esEs24(yvy49000, yvy50000, app(ty_[], beh)) -> new_esEs9(yvy49000, yvy50000, beh) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(yvy4001, yvy3001, cfh, cga, cgb) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_Either, fb), fc)) -> new_esEs6(yvy4000, yvy3000, fb, fc) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, caf), cag), bhe) -> new_ltEs17(yvy49000, yvy50000, caf, cag) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cgh)) -> new_esEs15(yvy4001, yvy3001, cgh) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bbh)) -> new_esEs9(yvy4001, yvy3001, bbh) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs29(yvy400, yvy500, app(ty_Maybe, bd)) -> new_esEs5(yvy400, yvy500, bd) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs10(yvy400, yvy500) new_compare24(yvy49000, yvy50000, True, ga, gb, gc) -> EQ new_lt5(yvy49000, yvy50000, bc) -> new_esEs8(new_compare6(yvy49000, yvy50000, bc), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bch)) -> new_esEs5(yvy4001, yvy3001, bch) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhe) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs16(yvy400, yvy500) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, he), hf)) -> new_ltEs17(yvy49000, yvy50000, he, hf) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fg, fh) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cfe, cff) -> new_asAs(new_esEs27(yvy4000, yvy3000, cfe), new_esEs26(yvy4001, yvy3001, cff)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hg) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hg), hg) new_ltEs16(Right(yvy49000), Left(yvy50000), cah, bhe) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cch)) -> new_esEs9(yvy4000, yvy3000, cch) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(yvy4000, yvy3000, bf, bg, bh) new_esEs6(Left(yvy4000), Right(yvy3000), ec, da) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ec, da) -> False new_ltEs4(Nothing, Just(yvy50000), gd) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, beb)) -> new_esEs5(yvy4000, yvy3000, beb) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bgh)) -> new_ltEs4(yvy49002, yvy50002, bgh) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_[], cbb)) -> new_ltEs11(yvy49000, yvy50000, cbb) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceg)) -> new_compare9(yvy49000, yvy50000, ceg) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbb), bbc)) -> new_esEs7(yvy4002, yvy3002, bbb, bbc) new_esEs20(yvy4000, yvy3000, app(ty_[], bdb)) -> new_esEs9(yvy4000, yvy3000, bdb) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_esEs7(yvy49000, yvy50000, hh, baa) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhe) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dac) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dac), dac) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhf), bhe) -> new_ltEs9(yvy49000, yvy50000, bhf) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, ge)) -> new_ltEs9(yvy49000, yvy50000, ge) new_ltEs11(yvy4900, yvy5000, bab) -> new_fsEs(new_compare(yvy4900, yvy5000, bab)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_esEs5(yvy49000, yvy50000, hg) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(yvy49000, yvy50000, cbc, cbd, cbe) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cge), cgf)) -> new_esEs6(yvy4001, yvy3001, cge, cgf) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_esEs7(yvy49001, yvy50001, bga, bgb) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfa)) -> new_lt5(yvy49001, yvy50001, bfa) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhg), bhe) -> new_ltEs11(yvy49000, yvy50000, bhg) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, da) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bab) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bab)) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Ratio, cba)) -> new_ltEs9(yvy49000, yvy50000, cba) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bha), bhb)) -> new_ltEs16(yvy49002, yvy50002, bha, bhb) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cdh)) -> new_esEs5(yvy4000, yvy3000, cdh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhe) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcf), bcg)) -> new_esEs6(yvy4001, yvy3001, bcf, bcg) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdf), cdg)) -> new_esEs6(yvy4000, yvy3000, cdf, cdg) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, hh, baa) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, hh, baa), hh, baa) new_compare26(Just(yvy4900), Nothing, False, ccc) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbf)) -> new_esEs5(yvy4002, yvy3002, bbf) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bga), bgb)) -> new_lt19(yvy49001, yvy50001, bga, bgb) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bab) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fg, fh) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(yvy4000, yvy3000, bdh, bea) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fg, fh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fg, fh), fg, fh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfb), cfc)) -> new_compare11(yvy49000, yvy50000, cfb, cfc) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, cea)) -> new_esEs15(yvy4000, yvy3000, cea) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hg)) -> new_lt7(yvy49000, yvy50000, hg) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bda)) -> new_esEs15(yvy4001, yvy3001, bda) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfd) -> GT new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs14(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, da) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bcd), bce)) -> new_esEs7(yvy4001, yvy3001, bcd, bce) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(yvy4000, yvy3000, chb, chc, chd) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhe) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, ga, gb, gc) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs29(yvy400, yvy500, app(app(ty_Either, ec), da)) -> new_esEs6(yvy400, yvy500, ec, da) new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dab)) -> new_esEs15(yvy4000, yvy3000, dab) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], cg), da) -> new_esEs9(yvy4000, yvy3000, cg) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, app(ty_Maybe, cbf)) -> new_ltEs4(yvy49000, yvy50000, cbf) new_compare27(yvy49000, yvy50000, False, hh, baa) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, hh, baa), hh, baa) new_esEs29(yvy400, yvy500, app(ty_Ratio, bed)) -> new_esEs15(yvy400, yvy500, bed) new_compare112(yvy49000, yvy50000, False, ga, gb, gc) -> GT new_compare27(yvy49000, yvy50000, True, hh, baa) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy4900, yvy5000, cce, ccf) new_esEs29(yvy400, yvy500, app(app(ty_@2, cfe), cff)) -> new_esEs7(yvy400, yvy500, cfe, cff) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgg)) -> new_esEs5(yvy4001, yvy3001, cgg) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cda, cdb, cdc) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, hh, baa) -> new_esEs8(new_compare11(yvy49000, yvy50000, hh, baa), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, ga, gb, gc) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, ga, gb, gc), ga, gb, gc) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfd) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gf)) -> new_ltEs11(yvy49000, yvy50000, gf) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chg), chh)) -> new_esEs6(yvy4000, yvy3000, chg, chh) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgc)) -> new_ltEs9(yvy49002, yvy50002, bgc) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cah, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhe) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbd), bbe)) -> new_esEs6(yvy4002, yvy3002, bbd, bbe) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bc)) -> new_lt5(yvy49000, yvy50000, bc) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, da) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccc) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, hh), baa)) -> new_lt19(yvy49000, yvy50000, hh, baa) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, ccd)) -> new_ltEs9(yvy4900, yvy5000, ccd) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhc), bhd)) -> new_ltEs17(yvy49002, yvy50002, bhc, bhd) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, hh, baa) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], ccg) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, gd)) -> new_ltEs4(yvy4900, yvy5000, gd) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, da) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_[], ccg)) -> new_esEs9(yvy400, yvy500, ccg) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfg), bfh)) -> new_lt18(yvy49001, yvy50001, bfg, bfh) new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ced), cee), cef)) -> new_compare7(yvy49000, yvy50000, ced, cee, cef) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs12(yvy49000, yvy50000, gg, gh, ha) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bab) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bab), bab) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bac, bad, bae) -> new_asAs(new_esEs20(yvy4000, yvy3000, bac), new_asAs(new_esEs19(yvy4001, yvy3001, bad), new_esEs18(yvy4002, yvy3002, bae))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, daa)) -> new_esEs5(yvy4000, yvy3000, daa) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bff)) -> new_lt7(yvy49001, yvy50001, bff) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], baf)) -> new_esEs9(yvy4002, yvy3002, baf) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(yvy4000, yvy3000, bdf, bdg) The set Q consists of the following terms: new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCompAux0(x0, LT) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_compare15(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_esEs26(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_Int) new_compare16(x0, x1) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare24(x0, x1, True, x2, x3, x4) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9([], :(x0, x1), x2) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_compare26(Just(x0), Nothing, False, x1) new_lt18(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(EQ, EQ) new_esEs26(x0, x1, ty_Int) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare25(x0, x1, False, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_sr(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_compare13(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Char) new_lt15(x0, x1, x2) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_compare210(x0, x1, False) new_esEs5(Just(x0), Nothing, x1) new_compare28(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_compare10(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt9(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_lt5(x0, x1, x2) new_compare26(Nothing, Just(x0), False, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_compare([], :(x0, x1), x2) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt13(x0, x1) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs25(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs8(GT, GT) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare27(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs9(:(x0, x1), [], x2) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs27(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs5(Nothing, Nothing, x0) new_lt9(x0, x1, ty_@0) new_ltEs9(x0, x1, x2) new_ltEs18(x0, x1, ty_@0) new_compare26(x0, x1, True, x2) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_compare25(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_compare([], [], x0) new_primPlusNat1(Succ(x0), Zero) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs11(x0, x1, x2) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, x2, x3) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_gt(x0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs4(Just(x0), Nothing, x1) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_compare112(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_esEs9([], [], x0) new_esEs9(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_compare30(x0, x1, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare9(x0, x1, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare7(x0, x1, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Bool) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_compare31(x0, x1) new_compare26(Just(x0), Just(x1), False, x2) new_esEs27(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_compare15(x0, x1, True, x2, x3) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_compare(:(x0, x1), [], x2) new_ltEs13(GT, GT) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs18(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs18(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, ty_Ordering) new_compare28(x0, x1, ty_@0) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs30(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_compare26(Nothing, Nothing, False, x0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_@0) new_compare11(x0, x1, x2, x3) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_@0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs4(Nothing, Nothing, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, 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_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_asAs(False, x0) 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_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_esEs8(new_compare26(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_esEs8(new_compare26(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 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy4000, yvy3000, bcb, bcc, bcd) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy4000, yvy3000, bbg) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy4002, yvy3002, da, db) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd, bde) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy4000, yvy3000, be, bf) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy4001, yvy3001, dh, ea, eb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy4001, yvy3001, ec, ed) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy4001, yvy3001, eg) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy4000, yvy3000, bcg, bch) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], hd), he) -> new_esEs(yvy4000, yvy3000, hd) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_esEs(yvy4001, yvy3001, h) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy4002, yvy3002, de) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy4000, yvy3000, fg, fh) new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy4000, yvy3000, hf, hg, hh) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy4000, yvy3000, bac, bad) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], ba)) -> new_esEs(yvy4000, yvy3000, ba) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy4000, yvy3000, ga) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy4000, yvy3000, bb, bc, bd) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy4002, yvy3002, ce, cf, cg) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy4001, yvy3001, gd, ge, gf) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy4000, yvy3000, bbe, bbf) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4001, yvy3001, hc) new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdb)) -> new_esEs(yvy4000, yvy3000, bdb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], eh), cc, dg) -> new_esEs(yvy4000, yvy3000, eh) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy4000, yvy3000, bg, bh) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_[], df), dg) -> new_esEs(yvy4001, yvy3001, df) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_[], bca)) -> new_esEs(yvy4000, yvy3000, bca) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ca)) -> new_esEs3(yvy4000, yvy3000, ca) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy4000, yvy3000, bda) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy4002, yvy3002, cd) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, bae), he) -> new_esEs3(yvy4000, yvy3000, bae) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy4000, yvy3000, baa, bab) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_[], gc)) -> new_esEs(yvy4001, yvy3001, gc) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy4001, yvy3001, ha, hb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy4002, yvy3002, dc, dd) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy4000, yvy3000, bce, bcf) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy4001, yvy3001, gg, gh) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy4000, yvy3000, bbc, bbd) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy4000, yvy3000, fa, fb, fc) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy4000, yvy3000, fd, ff) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], baf), bag) -> new_esEs(yvy4000, yvy3000, baf) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bah), bba), bbb), bag) -> new_esEs0(yvy4000, yvy3000, bah, bba, bbb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy4001, yvy3001, ee, ef) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) R is empty. Q is empty. 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_esEs3(Just(yvy4000), Just(yvy3000), 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(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdb)) -> new_esEs(yvy4000, yvy3000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy4000), Just(yvy3000), 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_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy4000, yvy3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy4000, yvy3000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ca)) -> new_esEs3(yvy4000, yvy3000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy4000, yvy3000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy4000, yvy3000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy4002, yvy3002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy4001, yvy3001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy4001, yvy3001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy4002, yvy3002, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy4000, yvy3000, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy4001, yvy3001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy4002, yvy3002, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy4000, yvy3000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], eh), cc, dg) -> new_esEs(yvy4000, yvy3000, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_[], df), dg) -> new_esEs(yvy4001, yvy3001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy4002, yvy3002, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy4002, yvy3002, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy4001, yvy3001, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy4000, yvy3000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy4000, yvy3000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy4001, yvy3001, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy4000, yvy3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy4000, yvy3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy4000, yvy3000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy4001, yvy3001, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4001, yvy3001, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, bae), he) -> new_esEs3(yvy4000, yvy3000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], hd), he) -> new_esEs(yvy4000, yvy3000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_[], gc)) -> new_esEs(yvy4001, yvy3001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy4000, yvy3000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy4001, yvy3001, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy4000, yvy3000, bcb, bcc, bcd) 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, bah), bba), bbb), bag) -> new_esEs0(yvy4000, yvy3000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy4000, yvy3000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy4000, yvy3000, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_[], bca)) -> new_esEs(yvy4000, yvy3000, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], baf), bag) -> new_esEs(yvy4000, yvy3000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_esEs(yvy4001, yvy3001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], ba)) -> new_esEs(yvy4000, yvy3000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy4000, yvy3000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy4000, yvy3000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: 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_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(Nothing, Just(yvy300), False, h), GT), h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs8(new_compare30(yvy20, yvy15, bb), LT), bb, bc) 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_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Nothing, False, h), GT), h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare31(yvy300, h), LT), h, ba) new_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, 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_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare33(h), LT), h, ba) 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_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, h), LT), 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_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, caa) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cda, cdb) -> new_pePe(new_lt20(yvy49000, yvy50000, cda), new_asAs(new_esEs28(yvy49000, yvy50000, cda), new_ltEs20(yvy49001, yvy50001, cdb))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bfa, bfb, bfc) -> new_pePe(new_lt9(yvy49000, yvy50000, bfa), new_asAs(new_esEs24(yvy49000, yvy50000, bfa), new_pePe(new_lt10(yvy49001, yvy50001, bfb), new_asAs(new_esEs23(yvy49001, yvy50001, bfb), new_ltEs18(yvy49002, yvy50002, bfc))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cee)) -> new_compare6(yvy49000, yvy50000, cee) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], cef)) -> new_compare(yvy49000, yvy50000, cef) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfd) -> new_esEs8(new_compare(yvy49000, yvy50000, bfd), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bff)) -> new_esEs9(yvy49001, yvy50001, bff) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cbd), caa)) -> new_ltEs16(yvy4900, yvy5000, cbd, caa) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cah), cba), caa) -> new_ltEs16(yvy49000, yvy50000, cah, cba) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfd)) -> new_lt15(yvy49000, yvy50000, bfd) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_Either, ccc), ccd)) -> new_ltEs16(yvy49000, yvy50000, ccc, ccd) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cbd, caa) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgh)) -> new_ltEs11(yvy49002, yvy50002, bgh) new_compare26(Nothing, Nothing, False, ccg) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfc), cfd)) -> new_compare13(yvy49000, yvy50000, cfc, cfd) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(yvy49001, yvy50001, bfg, bfh, bga) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt16(yvy49001, yvy50001, bfg, bfh, bga) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs12(yvy4900, yvy5000, bfa, bfb, bfc) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy49000, yvy50000, cce, ccf) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cag), caa) -> new_ltEs4(yvy49000, yvy50000, cag) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_esEs9(:(yvy4000, yvy4001), [], bef) -> False new_esEs9([], :(yvy3000, yvy3001), bef) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs12(yvy49002, yvy50002, bha, bhb, bhc) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, caa) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccg) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccg), ccg) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccg) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_esEs5(yvy49001, yvy50001, bgb) new_lt10(yvy49001, yvy50001, app(ty_[], bff)) -> new_lt15(yvy49001, yvy50001, bff) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, caa) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, cad), cae), caf), caa) -> new_ltEs12(yvy49000, yvy50000, cad, cae, caf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_esEs15(yvy49001, yvy50001, bfe) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bef) -> new_asAs(new_esEs25(yvy4000, yvy3000, bef), new_esEs9(yvy4001, yvy3001, bef)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdg), cdh)) -> new_esEs7(yvy4000, yvy3000, cdg, cdh) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cch) -> new_fsEs(new_compare6(yvy4900, yvy5000, cch)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_esEs6(yvy49001, yvy50001, bgc, bgd) new_esEs24(yvy49000, yvy50000, app(ty_[], bfd)) -> new_esEs9(yvy49000, yvy50000, bfd) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cbb), cbc), caa) -> new_ltEs17(yvy49000, yvy50000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, caa) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs27(yvy4000, yvy3000, beg), new_esEs26(yvy4001, yvy3001, beh)) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cbd, caa) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs9(yvy4000, yvy3000, cdc) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bhd)) -> new_ltEs4(yvy49002, yvy50002, bhd) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_[], cbf)) -> new_ltEs11(yvy49000, yvy50000, cbf) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, cfb)) -> new_compare9(yvy49000, yvy50000, cfb) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, caa) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, bb) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cab), caa) -> new_ltEs9(yvy49000, yvy50000, cab) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs12(yvy49000, yvy50000, cbg, cbh, cca) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_esEs7(yvy49001, yvy50001, bge, bgf) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_lt5(yvy49001, yvy50001, bfe) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], cac), caa) -> new_ltEs11(yvy49000, yvy50000, cac) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Ratio, cbe)) -> new_ltEs9(yvy49000, yvy50000, cbe) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhe), bhf)) -> new_ltEs16(yvy49002, yvy50002, bhe, bhf) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cec)) -> new_esEs5(yvy4000, yvy3000, cec) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, caa) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccg) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_lt19(yvy49001, yvy50001, bge, bgf) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfe), cff)) -> new_compare11(yvy49000, yvy50000, cfe, cff) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ced)) -> new_esEs15(yvy4000, yvy3000, ced) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfg) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, caa) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(ty_[], bef)) -> new_esEs9(yvy400, yvy300, bef) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Maybe, ccb)) -> new_ltEs4(yvy49000, yvy50000, ccb) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cda), cdb)) -> new_ltEs17(yvy4900, yvy5000, cda, cdb) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cdd, cde, cdf) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfg) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgg)) -> new_ltEs9(yvy49002, yvy50002, bgg) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, caa) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccg) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cch)) -> new_ltEs9(yvy4900, yvy5000, cch) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhg), bhh)) -> new_ltEs17(yvy49002, yvy50002, bhg, bhh) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_esEs9([], [], bef) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy400, yvy300, app(app(ty_@2, beg), beh)) -> new_esEs7(yvy400, yvy300, beg, beh) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_lt18(yvy49001, yvy50001, bgc, bgd) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_compare7(yvy49000, yvy50000, ceg, ceh, cfa) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_lt7(yvy49001, yvy50001, bgb) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_compare26(x0, x1, True, x2) new_esEs26(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Nothing, x0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_compare26(Nothing, Just(x0), False, x1) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs9([], [], x0) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare([], [], x0) new_esEs32(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_[], x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_compare26(Just(x0), Nothing, False, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt13(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_compare111(x0, x1, True, x2) new_esEs8(GT, GT) new_esEs32(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(x0, x1, x2) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(ty_[], x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs5(Just(x0), Nothing, x1) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs9(:(x0, x1), :(x2, x3), x4) new_lt9(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs9(:(x0, x1), [], x2) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare26(Nothing, Nothing, False, x0) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Integer) new_esEs9([], :(x0, x1), x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs32(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs18(x0, x1, ty_@0) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare28(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare28(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare28(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs18(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_compare111(x0, x1, False, x2) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (34) Complex Obligation (AND) ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: 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_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(Nothing, Just(yvy300), False, h), GT), h, ba) new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare31(yvy300, h), LT), h, ba) new_splitGT10(yvy300, 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_esEs8(new_compare33(h), LT), h, ba) new_splitGT1(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT(yvy33, h, ba) The TRS R consists of the following rules: new_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, caa) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cda, cdb) -> new_pePe(new_lt20(yvy49000, yvy50000, cda), new_asAs(new_esEs28(yvy49000, yvy50000, cda), new_ltEs20(yvy49001, yvy50001, cdb))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bfa, bfb, bfc) -> new_pePe(new_lt9(yvy49000, yvy50000, bfa), new_asAs(new_esEs24(yvy49000, yvy50000, bfa), new_pePe(new_lt10(yvy49001, yvy50001, bfb), new_asAs(new_esEs23(yvy49001, yvy50001, bfb), new_ltEs18(yvy49002, yvy50002, bfc))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cee)) -> new_compare6(yvy49000, yvy50000, cee) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], cef)) -> new_compare(yvy49000, yvy50000, cef) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfd) -> new_esEs8(new_compare(yvy49000, yvy50000, bfd), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bff)) -> new_esEs9(yvy49001, yvy50001, bff) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cbd), caa)) -> new_ltEs16(yvy4900, yvy5000, cbd, caa) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cah), cba), caa) -> new_ltEs16(yvy49000, yvy50000, cah, cba) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfd)) -> new_lt15(yvy49000, yvy50000, bfd) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_Either, ccc), ccd)) -> new_ltEs16(yvy49000, yvy50000, ccc, ccd) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cbd, caa) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgh)) -> new_ltEs11(yvy49002, yvy50002, bgh) new_compare26(Nothing, Nothing, False, ccg) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfc), cfd)) -> new_compare13(yvy49000, yvy50000, cfc, cfd) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(yvy49001, yvy50001, bfg, bfh, bga) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt16(yvy49001, yvy50001, bfg, bfh, bga) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs12(yvy4900, yvy5000, bfa, bfb, bfc) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy49000, yvy50000, cce, ccf) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cag), caa) -> new_ltEs4(yvy49000, yvy50000, cag) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_esEs9(:(yvy4000, yvy4001), [], bef) -> False new_esEs9([], :(yvy3000, yvy3001), bef) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs12(yvy49002, yvy50002, bha, bhb, bhc) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, caa) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccg) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccg), ccg) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccg) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_esEs5(yvy49001, yvy50001, bgb) new_lt10(yvy49001, yvy50001, app(ty_[], bff)) -> new_lt15(yvy49001, yvy50001, bff) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, caa) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, cad), cae), caf), caa) -> new_ltEs12(yvy49000, yvy50000, cad, cae, caf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_esEs15(yvy49001, yvy50001, bfe) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bef) -> new_asAs(new_esEs25(yvy4000, yvy3000, bef), new_esEs9(yvy4001, yvy3001, bef)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdg), cdh)) -> new_esEs7(yvy4000, yvy3000, cdg, cdh) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cch) -> new_fsEs(new_compare6(yvy4900, yvy5000, cch)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_esEs6(yvy49001, yvy50001, bgc, bgd) new_esEs24(yvy49000, yvy50000, app(ty_[], bfd)) -> new_esEs9(yvy49000, yvy50000, bfd) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cbb), cbc), caa) -> new_ltEs17(yvy49000, yvy50000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, caa) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs27(yvy4000, yvy3000, beg), new_esEs26(yvy4001, yvy3001, beh)) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cbd, caa) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs9(yvy4000, yvy3000, cdc) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bhd)) -> new_ltEs4(yvy49002, yvy50002, bhd) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_[], cbf)) -> new_ltEs11(yvy49000, yvy50000, cbf) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, cfb)) -> new_compare9(yvy49000, yvy50000, cfb) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, caa) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, bb) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cab), caa) -> new_ltEs9(yvy49000, yvy50000, cab) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs12(yvy49000, yvy50000, cbg, cbh, cca) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_esEs7(yvy49001, yvy50001, bge, bgf) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_lt5(yvy49001, yvy50001, bfe) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], cac), caa) -> new_ltEs11(yvy49000, yvy50000, cac) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Ratio, cbe)) -> new_ltEs9(yvy49000, yvy50000, cbe) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhe), bhf)) -> new_ltEs16(yvy49002, yvy50002, bhe, bhf) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cec)) -> new_esEs5(yvy4000, yvy3000, cec) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, caa) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccg) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_lt19(yvy49001, yvy50001, bge, bgf) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfe), cff)) -> new_compare11(yvy49000, yvy50000, cfe, cff) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ced)) -> new_esEs15(yvy4000, yvy3000, ced) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfg) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, caa) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(ty_[], bef)) -> new_esEs9(yvy400, yvy300, bef) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Maybe, ccb)) -> new_ltEs4(yvy49000, yvy50000, ccb) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cda), cdb)) -> new_ltEs17(yvy4900, yvy5000, cda, cdb) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cdd, cde, cdf) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfg) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgg)) -> new_ltEs9(yvy49002, yvy50002, bgg) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, caa) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccg) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cch)) -> new_ltEs9(yvy4900, yvy5000, cch) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhg), bhh)) -> new_ltEs17(yvy49002, yvy50002, bhg, bhh) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_esEs9([], [], bef) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy400, yvy300, app(app(ty_@2, beg), beh)) -> new_esEs7(yvy400, yvy300, beg, beh) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_lt18(yvy49001, yvy50001, bgc, bgd) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_compare7(yvy49000, yvy50000, ceg, ceh, cfa) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_lt7(yvy49001, yvy50001, bgb) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_compare26(x0, x1, True, x2) new_esEs26(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Nothing, x0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_compare26(Nothing, Just(x0), False, x1) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs9([], [], x0) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare([], [], x0) new_esEs32(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_[], x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_compare26(Just(x0), Nothing, False, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt13(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_compare111(x0, x1, True, x2) new_esEs8(GT, GT) new_esEs32(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(x0, x1, x2) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(ty_[], x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs5(Just(x0), Nothing, x1) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs9(:(x0, x1), :(x2, x3), x4) new_lt9(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs9(:(x0, x1), [], x2) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare26(Nothing, Nothing, False, x0) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Integer) new_esEs9([], :(x0, x1), x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs32(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs18(x0, x1, ty_@0) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare28(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare28(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare28(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs18(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_compare111(x0, x1, False, x2) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(False, x0) 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_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(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_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT1(yvy31, yvy32, yvy33, yvy34, new_esEs8(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_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_esEs8(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 *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_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_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 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(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_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs8(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) new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Just(yvy400), h, ba) new_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bb, bc) -> new_splitGT0(yvy19, yvy20, bb, bc) new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, h), LT), h, ba) new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT0(yvy33, yvy400, h, ba) The TRS R consists of the following rules: new_ltEs20(yvy49001, yvy50001, app(ty_[], dda)) -> new_ltEs11(yvy49001, yvy50001, dda) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, caa) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), cda, cdb) -> new_pePe(new_lt20(yvy49000, yvy50000, cda), new_asAs(new_esEs28(yvy49000, yvy50000, cda), new_ltEs20(yvy49001, yvy50001, cdb))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bfa, bfb, bfc) -> new_pePe(new_lt9(yvy49000, yvy50000, bfa), new_asAs(new_esEs24(yvy49000, yvy50000, bfa), new_pePe(new_lt10(yvy49001, yvy50001, bfb), new_asAs(new_esEs23(yvy49001, yvy50001, bfb), new_ltEs18(yvy49002, yvy50002, bfc))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(yvy49000, yvy50000, dbh, dca, dcb) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cee)) -> new_compare6(yvy49000, yvy50000, cee) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], cef)) -> new_compare(yvy49000, yvy50000, cef) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfd) -> new_esEs8(new_compare(yvy49000, yvy50000, bfd), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bff)) -> new_esEs9(yvy49001, yvy50001, bff) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_lt7(yvy49000, yvy50000, dcc) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cbd), caa)) -> new_ltEs16(yvy4900, yvy5000, cbd, caa) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dch)) -> new_ltEs9(yvy49001, yvy50001, dch) new_primCompAux0(yvy200, LT) -> LT new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cah), cba), caa) -> new_ltEs16(yvy49000, yvy50000, cah, cba) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfd)) -> new_lt15(yvy49000, yvy50000, bfd) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_Either, ccc), ccd)) -> new_ltEs16(yvy49000, yvy50000, ccc, ccd) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbe)) -> new_esEs15(yvy20, yvy15, dbe) new_ltEs16(Left(yvy49000), Right(yvy50000), cbd, caa) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bgh)) -> new_ltEs11(yvy49002, yvy50002, bgh) new_compare26(Nothing, Nothing, False, ccg) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfc), cfd)) -> new_compare13(yvy49000, yvy50000, cfc, cfd) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(yvy49001, yvy50001, bfg, bfh, bga) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs4(yvy20, yvy15, dae, daf, dag) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt16(yvy49001, yvy50001, bfg, bfh, bga) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs12(yvy49001, yvy50001, ddb, ddc, ddd) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbg)) -> new_lt15(yvy49000, yvy50000, dbg) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs12(yvy4900, yvy5000, bfa, bfb, bfc) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_lt19(yvy49000, yvy50000, dcf, dcg) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(ty_@2, cce), ccf)) -> new_ltEs17(yvy49000, yvy50000, cce, ccf) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cag), caa) -> new_ltEs4(yvy49000, yvy50000, cag) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_esEs9(:(yvy4000, yvy4001), [], bef) -> False new_esEs9([], :(yvy3000, yvy3001), bef) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddf), ddg)) -> new_ltEs16(yvy49001, yvy50001, ddf, ddg) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs12(yvy49002, yvy50002, bha, bhb, bhc) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, caa) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_esEs32(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccg) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccg), ccg) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccg) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_esEs5(yvy49001, yvy50001, bgb) new_lt10(yvy49001, yvy50001, app(ty_[], bff)) -> new_lt15(yvy49001, yvy50001, bff) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, caa) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, cad), cae), caf), caa) -> new_ltEs12(yvy49000, yvy50000, cad, cae, caf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_esEs15(yvy49001, yvy50001, bfe) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bef) -> new_asAs(new_esEs25(yvy4000, yvy3000, bef), new_esEs9(yvy4001, yvy3001, bef)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cdg), cdh)) -> new_esEs7(yvy4000, yvy3000, cdg, cdh) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_lt5(yvy49000, yvy50000, dbf) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cch) -> new_fsEs(new_compare6(yvy4900, yvy5000, cch)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_esEs6(yvy49001, yvy50001, bgc, bgd) new_esEs24(yvy49000, yvy50000, app(ty_[], bfd)) -> new_esEs9(yvy49000, yvy50000, bfd) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cbb), cbc), caa) -> new_ltEs17(yvy49000, yvy50000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, caa) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs27(yvy4000, yvy3000, beg), new_esEs26(yvy4001, yvy3001, beh)) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cbd, caa) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs9(yvy4000, yvy3000, cdc) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bhd)) -> new_ltEs4(yvy49002, yvy50002, bhd) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_[], cbf)) -> new_ltEs11(yvy49000, yvy50000, cbf) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, cfb)) -> new_compare9(yvy49000, yvy50000, cfb) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, caa) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dah), dba)) -> new_esEs7(yvy20, yvy15, dah, dba) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, bb) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bb), bb) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cab), caa) -> new_ltEs9(yvy49000, yvy50000, cab) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbd)) -> new_esEs5(yvy20, yvy15, dbd) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs12(yvy49000, yvy50000, cbg, cbh, cca) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs32(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_esEs7(yvy49001, yvy50001, bge, bgf) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfe)) -> new_lt5(yvy49001, yvy50001, bfe) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], cac), caa) -> new_ltEs11(yvy49000, yvy50000, cac) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Ratio, cbe)) -> new_ltEs9(yvy49000, yvy50000, cbe) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhe), bhf)) -> new_ltEs16(yvy49002, yvy50002, bhe, bhf) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cec)) -> new_esEs5(yvy4000, yvy3000, cec) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, caa) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cea), ceb)) -> new_esEs6(yvy4000, yvy3000, cea, ceb) new_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccg) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bge), bgf)) -> new_lt19(yvy49001, yvy50001, bge, bgf) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcf), dcg)) -> new_esEs7(yvy49000, yvy50000, dcf, dcg) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfe), cff)) -> new_compare11(yvy49000, yvy50000, cfe, cff) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ced)) -> new_esEs15(yvy4000, yvy3000, ced) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcc)) -> new_esEs5(yvy49000, yvy50000, dcc) new_compare111(yvy168, yvy169, False, cfg) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(yvy49000, yvy50000, dbh, dca, dcb) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, caa) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, ddh), dea)) -> new_ltEs17(yvy49001, yvy50001, ddh, dea) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(ty_[], bef)) -> new_esEs9(yvy400, yvy300, bef) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, app(ty_Maybe, ccb)) -> new_ltEs4(yvy49000, yvy50000, ccb) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, cda), cdb)) -> new_ltEs17(yvy4900, yvy5000, cda, cdb) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbb), dbc)) -> new_esEs6(yvy20, yvy15, dbb, dbc) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_lt18(yvy49000, yvy50000, dcd, dce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs4(yvy4000, yvy3000, cdd, cde, cdf) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfg) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbg)) -> new_esEs9(yvy49000, yvy50000, dbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgg)) -> new_ltEs9(yvy49002, yvy50002, bgg) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cbd, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, caa) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccg) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cch)) -> new_ltEs9(yvy4900, yvy5000, cch) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhg), bhh)) -> new_ltEs17(yvy49002, yvy50002, bhg, bhh) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_esEs9([], [], bef) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dcd), dce)) -> new_esEs6(yvy49000, yvy50000, dcd, dce) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs32(yvy400, yvy300, app(app(ty_@2, beg), beh)) -> new_esEs7(yvy400, yvy300, beg, beh) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bgc), bgd)) -> new_lt18(yvy49001, yvy50001, bgc, bgd) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_compare7(yvy49000, yvy50000, ceg, ceh, cfa) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbf)) -> new_esEs15(yvy49000, yvy50000, dbf) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dad)) -> new_esEs9(yvy20, yvy15, dad) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, dde)) -> new_ltEs4(yvy49001, yvy50001, dde) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bgb)) -> new_lt7(yvy49001, yvy50001, bgb) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_compare26(x0, x1, True, x2) new_esEs26(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Nothing, x0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_compare26(Nothing, Just(x0), False, x1) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs9([], [], x0) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare([], [], x0) new_esEs32(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_[], x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_compare26(Just(x0), Nothing, False, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt13(x0, x1) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_compare111(x0, x1, True, x2) new_esEs8(GT, GT) new_esEs32(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_ltEs9(x0, x1, x2) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(ty_[], x2)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_lt15(x0, x1, x2) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs5(Just(x0), Nothing, x1) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_esEs9(:(x0, x1), :(x2, x3), x4) new_lt9(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs9(:(x0, x1), [], x2) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_compare26(Nothing, Nothing, False, x0) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare([], :(x0, x1), x2) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Integer) new_esEs9([], :(x0, x1), x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_compare28(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs32(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs18(x0, x1, ty_@0) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare28(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_compare28(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare28(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs18(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_compare111(x0, x1, False, x2) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_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_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT11(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(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_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_splitGT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(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_splitGT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(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_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 *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_splitGT21(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bb, bc) -> new_splitGT12(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs8(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_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 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(yvy49000, yvy50000, yvy196, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) new_compare2(yvy49000, yvy50000, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, gf))) -> new_ltEs1(yvy49000, yvy50000, gf) new_compare20(yvy49000, yvy50000, False, cb, cc, cd) -> new_ltEs0(yvy49000, yvy50000, cb, cc, cd) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(ty_[], bdb))) -> new_ltEs(yvy49001, yvy50001, bdb) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs0(yvy49002, yvy50002, fa, fb, fc) new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(ty_@2, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(ty_Either, ff), fg)) -> new_ltEs2(yvy49002, yvy50002, ff, fg) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, da), cf, cg) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(ty_@2, ef), eg)), cg)) -> new_lt3(yvy49001, yvy50001, ef, eg) new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bac), bad)), hd)) -> new_ltEs3(yvy49000, yvy50000, bac, bad) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(ty_Either, ed), ee), cg) -> new_lt2(yvy49001, yvy50001, ed, ee) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbh)) -> new_lt2(yvy49000, yvy50000, bce, bcf) new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, ha), hb))) -> new_ltEs3(yvy49000, yvy50000, ha, hb) new_primCompAux(yvy49000, yvy50000, yvy196, app(ty_Maybe, be)) -> new_compare2(yvy49000, yvy50000, be) new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) new_ltEs2(Left(yvy49000), Left(yvy50000), app(ty_[], hc), hd) -> new_ltEs(yvy49000, yvy50000, hc) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(ty_Maybe, ec), cg) -> new_lt1(yvy49001, yvy50001, ec) new_compare22(yvy49000, yvy50000, False, db, dc) -> new_ltEs2(yvy49000, yvy50000, db, dc) new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs0(yvy49000, yvy50000, gc, gd, ge) new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, he), hf), hg)), hd)) -> new_ltEs0(yvy49000, yvy50000, he, hf, hg) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(ty_@2, bea), beb)) -> new_ltEs3(yvy49001, yvy50001, bea, beb) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, bcg), bch), bbh) -> new_lt3(yvy49000, yvy50000, bcg, bch) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(ty_@2, bea), beb))) -> new_ltEs3(yvy49001, yvy50001, bea, beb) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, bcg), bch)), bbh)) -> new_lt3(yvy49000, yvy50000, bcg, bch) new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, cb), cc), cd), cf, cg) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, he), hf), hg), hd) -> new_ltEs0(yvy49000, yvy50000, he, hf, hg) new_compare21(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_compare0(yvy49001, yvy50001, h) new_compare23(yvy49000, yvy50000, False, dd, de) -> new_ltEs3(yvy49000, yvy50000, dd, de) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(ty_Maybe, bdf)) -> new_ltEs1(yvy49001, yvy50001, bdf) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, dd), de)), cf), cg)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) new_lt2(yvy49000, yvy50000, db, dc) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(ty_[], dg), cg) -> new_lt(yvy49001, yvy50001, dg) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs0(yvy49001, yvy50001, bdc, bdd, bde) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(ty_Maybe, fd)) -> new_ltEs1(yvy49002, yvy50002, fd) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], bbg), bbh) -> new_lt(yvy49000, yvy50000, bbg) new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(ty_Maybe, bbb)) -> new_ltEs1(yvy49000, yvy50000, bbb) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(ty_Either, ed), ee)), cg)) -> new_lt2(yvy49001, yvy50001, ed, ee) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(ty_[], eh))) -> new_ltEs(yvy49002, yvy50002, eh) new_ltEs(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, db), dc), cf, cg) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs0(yvy49001, yvy50001, bdc, bdd, bde) new_compare4(yvy49000, yvy50000, dd, de) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], hc)), hd)) -> new_ltEs(yvy49000, yvy50000, hc) new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_compare0(yvy49001, yvy50001, h) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, cb), cc), cd)), cf), cg)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_ltEs1(Just(yvy49000), Just(yvy50000), app(ty_Maybe, gf)) -> new_ltEs1(yvy49000, yvy50000, gf) new_ltEs2(Left(yvy49000), Left(yvy50000), app(ty_Maybe, hh), hd) -> new_ltEs1(yvy49000, yvy50000, hh) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(ty_Either, bdg), bdh))) -> new_ltEs2(yvy49001, yvy50001, bdg, bdh) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, bcd), bbh) -> new_lt1(yvy49000, yvy50000, bcd) new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, gg), gh))) -> new_ltEs2(yvy49000, yvy50000, gg, gh) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(ty_[], eh)) -> new_ltEs(yvy49002, yvy50002, eh) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(ty_Either, bdg), bdh)) -> new_ltEs2(yvy49001, yvy50001, bdg, bdh) new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(yvy49000, yvy50000, gc, gd, ge) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(ty_@2, ef), eg), cg) -> new_lt3(yvy49001, yvy50001, ef, eg) new_compare3(yvy49000, yvy50000, db, dc) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(ty_[], bdb)) -> new_ltEs(yvy49001, yvy50001, bdb) new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(ty_@2, ha), hb)) -> new_ltEs3(yvy49000, yvy50000, ha, hb) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(ty_Maybe, bdf))) -> new_ltEs1(yvy49001, yvy50001, bdf) new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(ty_Maybe, bbb))) -> new_ltEs1(yvy49000, yvy50000, bbb) new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(yvy49000, yvy50000, bbc, bbd) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], ce), cf, cg) -> new_compare0(yvy49000, yvy50000, ce) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(ty_Either, ff), fg))) -> new_ltEs2(yvy49002, yvy50002, ff, fg) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, db), dc)), cf), cg)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(app(ty_@3, bag), bah), bba))) -> new_ltEs0(yvy49000, yvy50000, bag, bah, bba) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, bce), bcf), bbh) -> new_lt2(yvy49000, yvy50000, bce, bcf) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(app(ty_@3, dh), ea), eb), cg) -> new_lt0(yvy49001, yvy50001, dh, ea, eb) new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], gb))) -> new_ltEs(yvy49000, yvy50000, gb) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(ty_@2, fh), ga)) -> new_ltEs3(yvy49002, yvy50002, fh, ga) new_lt0(yvy49000, yvy50000, cb, cc, cd) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_compare1(yvy49000, yvy50000, cb, cc, cd) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(yvy49000, yvy50000, bbc, bbd) new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_lt0(yvy49000, yvy50000, bca, bcb, bcc) new_compare0(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(ty_[], dg)), cg)) -> new_lt(yvy49001, yvy50001, dg) new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, baa), bab)), hd)) -> new_ltEs2(yvy49000, yvy50000, baa, bab) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, bca), bcb), bcc)), bbh)) -> new_lt0(yvy49000, yvy50000, bca, bcb, bcc) new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs0(yvy49000, yvy50000, bag, bah, bba) new_lt1(yvy49000, yvy50000, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bac), bad), hd) -> new_ltEs3(yvy49000, yvy50000, bac, bad) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, bcd)), bbh)) -> new_lt1(yvy49000, yvy50000, bcd) new_lt(yvy49000, yvy50000, ce) -> new_compare0(yvy49000, yvy50000, ce) new_primCompAux(yvy49000, yvy50000, yvy196, app(app(ty_@2, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, da)), cf), cg)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, hh)), hd)) -> new_ltEs1(yvy49000, yvy50000, hh) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(app(ty_@3, dh), ea), eb)), cg)) -> new_lt0(yvy49001, yvy50001, dh, ea, eb) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(ty_Maybe, ec)), cg)) -> new_lt1(yvy49001, yvy50001, ec) new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(ty_Either, baa), bab), hd) -> new_ltEs2(yvy49000, yvy50000, baa, bab) new_primCompAux(yvy49000, yvy50000, yvy196, app(app(ty_Either, bf), bg)) -> new_compare3(yvy49000, yvy50000, bf, bg) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], ce)), cf), cg)) -> new_compare0(yvy49000, yvy50000, ce) new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, dd), de), cf, cg) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) new_ltEs1(Just(yvy49000), Just(yvy50000), app(ty_[], gb)) -> new_ltEs(yvy49000, yvy50000, gb) new_lt3(yvy49000, yvy50000, dd, de) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) new_compare21(Just(:(yvy49000, yvy49001)), Just(:(yvy50000, yvy50001)), False, app(ty_[], h)) -> new_primCompAux(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(ty_@2, fh), ga))) -> new_ltEs3(yvy49002, yvy50002, fh, ga) new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], bbg)), bbh)) -> new_lt(yvy49000, yvy50000, bbg) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(app(ty_@3, fa), fb), fc))) -> new_ltEs0(yvy49002, yvy50002, fa, fb, fc) new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) new_primCompAux(yvy49000, yvy50000, yvy196, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(yvy49000, yvy50000, bb, bc, bd) new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(ty_Maybe, fd))) -> new_ltEs1(yvy49002, yvy50002, fd) new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(ty_Either, gg), gh)) -> new_ltEs2(yvy49000, yvy50000, gg, gh) The TRS R consists of the following rules: new_ltEs20(yvy49001, yvy50001, app(ty_[], bdb)) -> new_ltEs11(yvy49001, yvy50001, bdb) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs4(yvy4000, yvy3000, bga, bgb, bgc) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, hd) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, bbh) -> new_pePe(new_lt20(yvy49000, yvy50000, bda), new_asAs(new_esEs28(yvy49000, yvy50000, bda), new_ltEs20(yvy49001, yvy50001, bbh))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, cg) -> new_pePe(new_lt9(yvy49000, yvy50000, df), new_asAs(new_esEs24(yvy49000, yvy50000, df), new_pePe(new_lt10(yvy49001, yvy50001, cf), new_asAs(new_esEs23(yvy49001, yvy50001, cf), new_ltEs18(yvy49002, yvy50002, cg))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], dah)) -> new_esEs9(yvy4000, yvy3000, dah) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bff), bee) -> new_esEs15(yvy4000, yvy3000, bff) new_compare(:(yvy49000, yvy49001), [], h) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs4(yvy4002, yvy3002, cbc, cbd, cbe) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_lt7(yvy49000, yvy50000, da) -> new_esEs8(new_compare9(yvy49000, yvy50000, da), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(ty_Ratio, bha)) -> new_esEs15(yvy4000, yvy3000, bha) new_ltEs4(Nothing, Nothing, cae) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, dab), dac)) -> new_esEs7(yvy4001, yvy3001, dab, dac) new_ltEs4(Just(yvy49000), Nothing, cae) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs4(yvy49000, yvy50000, bca, bcb, bcc) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, chb)) -> new_compare6(yvy49000, yvy50000, chb) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bhg), bhh)) -> new_esEs7(yvy4000, yvy3000, bhg, bhh) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, gf)) -> new_ltEs4(yvy49000, yvy50000, gf) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, ccc)) -> new_esEs15(yvy4002, yvy3002, ccc) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], h)) -> new_ltEs11(yvy4900, yvy5000, h) new_compare28(yvy49000, yvy50000, app(ty_[], ba)) -> new_compare(yvy49000, yvy50000, ba) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, ce) -> new_esEs8(new_compare(yvy49000, yvy50000, ce), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bec)) -> new_esEs15(yvy49000, yvy50000, bec) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], dg)) -> new_esEs9(yvy49001, yvy50001, dg) new_lt20(yvy49000, yvy50000, app(ty_Maybe, bcd)) -> new_lt7(yvy49000, yvy50000, bcd) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, bae), hd)) -> new_ltEs16(yvy4900, yvy5000, bae, hd) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, bee) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dcc)) -> new_ltEs9(yvy49001, yvy50001, dcc) new_primCompAux0(yvy200, LT) -> LT new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, baa), bab), hd) -> new_ltEs16(yvy49000, yvy50000, baa, bab) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], ce)) -> new_lt15(yvy49000, yvy50000, ce) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs16(yvy49000, yvy50000, bbc, bbd) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ceh) -> new_asAs(new_esEs22(yvy4000, yvy3000, ceh), new_esEs21(yvy4001, yvy3001, ceh)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs16(Left(yvy49000), Right(yvy50000), bae, hd) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, db, dc) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], eh)) -> new_ltEs11(yvy49002, yvy50002, eh) new_compare26(Nothing, Nothing, False, cfe) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, bee) -> new_esEs14(yvy4000, yvy3000) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bhc)) -> new_esEs9(yvy4000, yvy3000, bhc) new_compare15(yvy49000, yvy50000, True, dd, de) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, bf), bg)) -> new_compare13(yvy49000, yvy50000, bf, bg) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs4(yvy49000, yvy50000, cb, cc, cd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs4(yvy49001, yvy50001, dh, ea, eb) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ceg)) -> new_esEs15(yvy4000, yvy3000, ceg) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, dh), ea), eb)) -> new_lt16(yvy49001, yvy50001, dh, ea, eb) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs12(yvy49001, yvy50001, bdc, bdd, bde) new_lt9(yvy49000, yvy50000, app(app(ty_Either, db), dc)) -> new_lt18(yvy49000, yvy50000, db, dc) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, db, dc) -> new_esEs8(new_compare13(yvy49000, yvy50000, db, dc), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(ty_Maybe, bgh)) -> new_esEs5(yvy4000, yvy3000, bgh) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], bbg)) -> new_lt15(yvy49000, yvy50000, bbg) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, df), cf), cg)) -> new_ltEs12(yvy4900, yvy5000, df, cf, cg) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, app(app(ty_@2, bcg), bch)) -> new_lt19(yvy49000, yvy50000, bcg, bch) new_compare7(yvy49000, yvy50000, cb, cc, cd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, dbd), dbe)) -> new_esEs7(yvy4000, yvy3000, dbd, dbe) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs4(yvy4001, yvy3001, cce, ccf, ccg) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs17(yvy49000, yvy50000, bbe, bbf) new_compare25(yvy49000, yvy50000, True, db, dc) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bfe), bee) -> new_esEs5(yvy4000, yvy3000, bfe) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, hh), hd) -> new_ltEs4(yvy49000, yvy50000, hh) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, bee) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_esEs9(:(yvy4000, yvy4001), [], cfg) -> False new_esEs9([], :(yvy3000, yvy3001), cfg) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], chf)) -> new_esEs9(yvy4001, yvy3001, chf) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bef), beg), beh), bee) -> new_esEs4(yvy4000, yvy3000, bef, beg, beh) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, bdg), bdh)) -> new_ltEs16(yvy49001, yvy50001, bdg, bdh) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs12(yvy49002, yvy50002, fa, fb, fc) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, bhb) -> True new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), bhb) -> False new_esEs5(Just(yvy4000), Nothing, bhb) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, caa), cab)) -> new_esEs6(yvy4000, yvy3000, caa, cab) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, db), dc)) -> new_esEs6(yvy49000, yvy50000, db, dc) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bfc), bfd), bee) -> new_esEs6(yvy4000, yvy3000, bfc, bfd) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, hd) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, cfe) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, cfe), cfe) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, gg), gh)) -> new_ltEs16(yvy49000, yvy50000, gg, gh) new_compare26(yvy490, yvy500, True, cfe) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, ec)) -> new_esEs5(yvy49001, yvy50001, ec) new_lt10(yvy49001, yvy50001, app(ty_[], dg)) -> new_lt15(yvy49001, yvy50001, dg) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, hd) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bfa), bfb), bee) -> new_esEs7(yvy4000, yvy3000, bfa, bfb) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, cb, cc, cd) -> new_esEs8(new_compare7(yvy49000, yvy50000, cb, cc, cd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, he), hf), hg), hd) -> new_ltEs12(yvy49000, yvy50000, he, hf, hg) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, bee) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdg, cdh, cea) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, cfa)) -> new_esEs15(yvy49001, yvy50001, cfa) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(ty_[], bfh)) -> new_esEs9(yvy4000, yvy3000, bfh) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt16(yvy49000, yvy50000, cb, cc, cd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cfg) -> new_asAs(new_esEs25(yvy4000, yvy3000, cfg), new_esEs9(yvy4001, yvy3001, cfg)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cad)) -> new_esEs15(yvy4000, yvy3000, cad) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4000, yvy3000, cgd, cge) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dcb)) -> new_lt5(yvy49000, yvy50000, dcb) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), h) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(app(ty_@2, bgd), bge)) -> new_esEs7(yvy4000, yvy3000, bgd, bge) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cac)) -> new_esEs5(yvy4000, yvy3000, cac) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cff) -> new_fsEs(new_compare6(yvy4900, yvy5000, cff)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, ed), ee)) -> new_esEs6(yvy49001, yvy50001, ed, ee) new_esEs24(yvy49000, yvy50000, app(ty_[], ce)) -> new_esEs9(yvy49000, yvy50000, ce) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs4(yvy4001, yvy3001, chg, chh, daa) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, app(app(ty_Either, bgf), bgg)) -> new_esEs6(yvy4000, yvy3000, bgf, bgg) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bac), bad), hd) -> new_ltEs17(yvy49000, yvy50000, bac, bad) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, dag)) -> new_esEs15(yvy4001, yvy3001, dag) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], ccd)) -> new_esEs9(yvy4001, yvy3001, ccd) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, cb, cc, cd) -> EQ new_lt5(yvy49000, yvy50000, bec) -> new_esEs8(new_compare6(yvy49000, yvy50000, bec), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, cdd)) -> new_esEs5(yvy4001, yvy3001, cdd) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, hd) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, ha), hb)) -> new_ltEs17(yvy49000, yvy50000, ha, hb) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, db, dc) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), chd, che) -> new_asAs(new_esEs27(yvy4000, yvy3000, chd), new_esEs26(yvy4001, yvy3001, che)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, da) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) new_ltEs16(Right(yvy49000), Left(yvy50000), bae, hd) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cfh)) -> new_esEs9(yvy4000, yvy3000, cfh) new_esEs6(Left(yvy4000), Right(yvy3000), bfg, bee) -> False new_esEs6(Right(yvy4000), Left(yvy3000), bfg, bee) -> False new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs4(yvy4000, yvy3000, bhd, bhe, bhf) new_ltEs4(Nothing, Just(yvy50000), cae) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, cef)) -> new_esEs5(yvy4000, yvy3000, cef) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, fd)) -> new_ltEs4(yvy49002, yvy50002, fd) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(ty_[], baf)) -> new_ltEs11(yvy49000, yvy50000, baf) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, be)) -> new_compare9(yvy49000, yvy50000, be) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, cbf), cbg)) -> new_esEs7(yvy4002, yvy3002, cbf, cbg) new_esEs20(yvy4000, yvy3000, app(ty_[], cdf)) -> new_esEs9(yvy4000, yvy3000, cdf) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, dd), de)) -> new_esEs7(yvy49000, yvy50000, dd, de) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, hd) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_compare110(yvy49000, yvy50000, False) -> GT new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, cfc), hd) -> new_ltEs9(yvy49000, yvy50000, cfc) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, caf)) -> new_ltEs9(yvy49000, yvy50000, caf) new_ltEs11(yvy4900, yvy5000, h) -> new_fsEs(new_compare(yvy4900, yvy5000, h)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, da)) -> new_esEs5(yvy49000, yvy50000, da) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs12(yvy49000, yvy50000, bag, bah, bba) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, dad), dae)) -> new_esEs6(yvy4001, yvy3001, dad, dae) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, ef), eg)) -> new_esEs7(yvy49001, yvy50001, ef, eg) new_lt10(yvy49001, yvy50001, app(ty_Ratio, cfa)) -> new_lt5(yvy49001, yvy50001, cfa) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], hc), hd) -> new_ltEs11(yvy49000, yvy50000, hc) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, bee) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, h) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, h)) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(ty_Ratio, cfd)) -> new_ltEs9(yvy49000, yvy50000, cfd) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, ff), fg)) -> new_ltEs16(yvy49002, yvy50002, ff, fg) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cgh)) -> new_esEs5(yvy4000, yvy3000, cgh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, hd) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, cdb), cdc)) -> new_esEs6(yvy4001, yvy3001, cdb, cdc) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4000, yvy3000, cgf, cgg) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, dd, de) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) new_compare26(Just(yvy4900), Nothing, False, cfe) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, ccb)) -> new_esEs5(yvy4002, yvy3002, ccb) new_lt10(yvy49001, yvy50001, app(app(ty_@2, ef), eg)) -> new_lt19(yvy49001, yvy50001, ef, eg) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], h) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, db, dc) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, db, dc), db, dc) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, bcg), bch)) -> new_esEs7(yvy49000, yvy50000, bcg, bch) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, ced), cee)) -> new_esEs6(yvy4000, yvy3000, ced, cee) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, db, dc) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, bh), ca)) -> new_compare11(yvy49000, yvy50000, bh, ca) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, cha)) -> new_esEs15(yvy4000, yvy3000, cha) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, da)) -> new_lt7(yvy49000, yvy50000, da) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, cde)) -> new_esEs15(yvy4001, yvy3001, cde) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, bcd)) -> new_esEs5(yvy49000, yvy50000, bcd) new_compare111(yvy168, yvy169, False, chc) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, bee) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, cch), cda)) -> new_esEs7(yvy4001, yvy3001, cch, cda) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(yvy4000, yvy3000, dba, dbb, dbc) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt16(yvy49000, yvy50000, bca, bcb, bcc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, hd) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, cb, cc, cd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, bea), beb)) -> new_ltEs17(yvy49001, yvy50001, bea, beb) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dca)) -> new_esEs15(yvy4000, yvy3000, dca) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], bed), bee) -> new_esEs9(yvy4000, yvy3000, bed) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, app(ty_Maybe, bbb)) -> new_ltEs4(yvy49000, yvy50000, bbb) new_compare27(yvy49000, yvy50000, False, dd, de) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, dd, de), dd, de) new_compare112(yvy49000, yvy50000, False, cb, cc, cd) -> GT new_compare27(yvy49000, yvy50000, True, dd, de) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, bda), bbh)) -> new_ltEs17(yvy4900, yvy5000, bda, bbh) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, daf)) -> new_esEs5(yvy4001, yvy3001, daf) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, app(app(ty_Either, bce), bcf)) -> new_lt18(yvy49000, yvy50000, bce, bcf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4000, yvy3000, cga, cgb, cgc) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, dd, de) -> new_esEs8(new_compare11(yvy49000, yvy50000, dd, de), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, cb, cc, cd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, chc) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], bbg)) -> new_esEs9(yvy49000, yvy50000, bbg) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gb)) -> new_ltEs11(yvy49000, yvy50000, gb) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(yvy4000, yvy3000, dbf, dbg) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, cfb)) -> new_ltEs9(yvy49002, yvy50002, cfb) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), bae, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, hd) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, cbh), cca)) -> new_esEs6(yvy4002, yvy3002, cbh, cca) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bec)) -> new_lt5(yvy49000, yvy50000, bec) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, bee) -> new_esEs17(yvy4000, yvy3000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, cfe) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, dd), de)) -> new_lt19(yvy49000, yvy50000, dd, de) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cff)) -> new_ltEs9(yvy4900, yvy5000, cff) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, fh), ga)) -> new_ltEs17(yvy49002, yvy50002, fh, ga) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, dd, de) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], cfg) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, cae)) -> new_ltEs4(yvy4900, yvy5000, cae) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, bee) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, bce), bcf)) -> new_esEs6(yvy49000, yvy50000, bce, bcf) new_esEs6(Right(yvy4000), Right(yvy3000), bfg, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, ed), ee)) -> new_lt18(yvy49001, yvy50001, ed, ee) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, bb), bc), bd)) -> new_compare7(yvy49000, yvy50000, bb, bc, bd) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs12(yvy49000, yvy50000, gc, gd, ge) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dcb)) -> new_esEs15(yvy49000, yvy50000, dcb) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), h) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, h), h) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cag, cah, cba) -> new_asAs(new_esEs20(yvy4000, yvy3000, cag), new_asAs(new_esEs19(yvy4001, yvy3001, cah), new_esEs18(yvy4002, yvy3002, cba))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dbh)) -> new_esEs5(yvy4000, yvy3000, dbh) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, bdf)) -> new_ltEs4(yvy49001, yvy50001, bdf) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, ec)) -> new_lt7(yvy49001, yvy50001, ec) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], cbb)) -> new_esEs9(yvy4002, yvy3002, cbb) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, ceb), cec)) -> new_esEs7(yvy4000, yvy3000, ceb, cec) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_compare27(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCompAux0(x0, LT) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat0(Succ(x0), Zero) new_compare28(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_compare16(x0, x1) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs13(EQ, EQ) new_esEs26(x0, x1, ty_Int) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_sr(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare15(x0, x1, True, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare15(x0, x1, False, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt17(x0, x1) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_lt9(x0, x1, ty_Ordering) new_ltEs4(Just(x0), Nothing, x1) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(True, True) new_lt15(x0, x1, x2) new_esEs26(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare24(x0, x1, True, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Float) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs9(:(x0, x1), [], x2) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), x1) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Char) new_lt10(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_lt16(x0, x1, x2, x3, x4) new_compare112(x0, x1, False, x2, x3, x4) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_compare210(x0, x1, False) new_compare([], [], x0) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs12(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt10(x0, x1, ty_Bool) new_compare26(Just(x0), Just(x1), False, x2) new_compare10(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs10(False, False) new_compare26(x0, x1, True, x2) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt19(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare(:(x0, x1), [], x2) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Int) new_compare25(x0, x1, True, x2, x3) new_compare111(x0, x1, False, x2) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, ty_Char) new_compare19(@0, @0) new_esEs27(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_@0) new_compare11(x0, x1, x2, x3) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_ltEs4(Nothing, Nothing, x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Zero) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs20(x0, x1, ty_Char) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_compare10(x0, x1, True, x2, x3) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Nothing, Nothing, x0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_primCompAux1(x0, x1, x2, x3) new_ltEs18(x0, x1, ty_Bool) new_compare26(Nothing, Just(x0), False, x1) new_lt9(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs9(x0, x1, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_lt8(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare24(x0, x1, False, x2, x3, x4) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(:(x0, x1), :(x2, x3), x4) new_lt10(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_lt5(x0, x1, x2) new_lt20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs11(x0, x1, x2) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs19(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_pePe(False, x0) new_ltEs6(True, True) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare13(x0, x1, x2, x3) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_compare8(Char(x0), Char(x1)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare26(Just(x0), Nothing, False, x1) new_compare([], :(x0, x1), x2) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, False) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs25(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs13(GT, GT) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs18(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare7(x0, x1, x2, x3, x4) new_ltEs10(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt18(x0, x1, x2, x3) new_esEs18(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_fsEs(x0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Nothing, Just(x0), x1) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_compare28(x0, x1, ty_Ordering) new_lt9(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_compare28(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_ltEs4(Nothing, Just(x0), x1) new_not(False) new_compare25(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_compare112(x0, x1, True, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(Nothing, Nothing, False, x0) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_compare111(x0, x1, True, x2) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs17(Integer(x0), Integer(x1)) new_lt7(x0, x1, x2) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9([], [], x0) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(Just(x0), Nothing, x1) new_ltEs18(x0, x1, ty_Char) new_compare9(x0, x1, x2) new_esEs19(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs9([], :(x0, x1), x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_asAs(False, x0) 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_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_compare21(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_primCompAux(yvy49000, yvy50000, yvy196, app(ty_Maybe, be)) -> new_compare2(yvy49000, yvy50000, be) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_Maybe, da)), cf), cg)) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 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_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(app(ty_@3, cb), cc), cd)), cf), cg)) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_Maybe, da), cf, cg) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(app(ty_@3, cb), cc), cd), cf, cg) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(yvy49000, yvy50000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs0(yvy49002, yvy50002, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs0(yvy49001, yvy50001, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(yvy49000, yvy50000, False, cb, cc, cd) -> new_ltEs0(yvy49000, yvy50000, cb, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt3(yvy49000, yvy50000, dd, de) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt2(yvy49000, yvy50000, db, dc) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(yvy49000, yvy50000, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt1(yvy49000, yvy50000, da) -> new_compare21(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, da), da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(ty_Either, gg), gh)) -> new_ltEs2(yvy49000, yvy50000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(ty_Either, ff), fg)) -> new_ltEs2(yvy49002, yvy50002, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(ty_Either, bdg), bdh)) -> new_ltEs2(yvy49001, yvy50001, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(yvy49000, yvy50000, False, db, dc) -> new_ltEs2(yvy49000, yvy50000, db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_Either, db), dc)), cf), cg)) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_Either, db), dc), cf, cg) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare3(yvy49000, yvy50000, db, dc) -> new_compare22(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, db, dc), db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs1(Just(yvy49000), Just(yvy50000), app(app(ty_@2, ha), hb)) -> new_ltEs3(yvy49000, yvy50000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(app(ty_@2, fh), ga)) -> new_ltEs3(yvy49002, yvy50002, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(app(ty_@2, bea), beb)) -> new_ltEs3(yvy49001, yvy50001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare23(yvy49000, yvy50000, False, dd, de) -> new_ltEs3(yvy49000, yvy50000, dd, de) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs1(Just(yvy49000), Just(yvy50000), app(ty_[], gb)) -> new_ltEs(yvy49000, yvy50000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(yvy49000), Just(yvy50000), app(ty_Maybe, gf)) -> new_ltEs1(yvy49000, yvy50000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(ty_[], eh)) -> new_ltEs(yvy49002, yvy50002, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(ty_[], bdb)) -> new_ltEs(yvy49001, yvy50001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(app(ty_@2, dd), de)), cf), cg)) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(app(ty_@2, dd), de), cf, cg) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare4(yvy49000, yvy50000, dd, de) -> new_compare23(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, dd, de), dd, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(ty_Either, ed), ee), cg) -> new_lt2(yvy49001, yvy50001, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_Either, bce), bcf), bbh) -> new_lt2(yvy49000, yvy50000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(yvy49000, yvy50000, ce) -> new_compare0(yvy49000, yvy50000, ce) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(yvy49000, yvy50000, yvy196, app(app(ty_@2, bh), ca)) -> new_compare4(yvy49000, yvy50000, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), app(ty_[], ce), cf, cg) -> new_compare0(yvy49000, yvy50000, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(yvy49000, yvy50000, yvy196, app(ty_[], ba)) -> new_compare0(yvy49000, yvy50000, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, cf, app(ty_Maybe, fd)) -> new_ltEs1(yvy49002, yvy50002, fd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bda, app(ty_Maybe, bdf)) -> new_ltEs1(yvy49001, yvy50001, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(yvy49000, yvy50000, yvy196, app(app(ty_Either, bf), bg)) -> new_compare3(yvy49000, yvy50000, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(yvy49000, yvy50000, yvy196, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(yvy49000, yvy50000, bb, bc, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_lt0(yvy49000, yvy50000, cb, cc, cd) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare1(yvy49000, yvy50000, cb, cc, cd) -> new_compare20(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, cb, cc, cd), cb, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(app(ty_@3, dh), ea), eb), cg) -> new_lt0(yvy49001, yvy50001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_lt0(yvy49000, yvy50000, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(ty_Maybe, ec), cg) -> new_lt1(yvy49001, yvy50001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_Maybe, bcd), bbh) -> new_lt1(yvy49000, yvy50000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(ty_[], dg), cg) -> new_lt(yvy49001, yvy50001, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), df, app(app(ty_@2, ef), eg), cg) -> new_lt3(yvy49001, yvy50001, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(ty_[], bbg), bbh) -> new_lt(yvy49000, yvy50000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), app(app(ty_@2, bcg), bch), bbh) -> new_lt3(yvy49000, yvy50000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(app(ty_@3, gc), gd), ge))) -> new_ltEs0(yvy49000, yvy50000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(app(ty_@3, he), hf), hg)), hd)) -> new_ltEs0(yvy49000, yvy50000, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs0(yvy49001, yvy50001, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(app(ty_@3, bag), bah), bba))) -> new_ltEs0(yvy49000, yvy50000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(app(ty_@3, fa), fb), fc))) -> new_ltEs0(yvy49002, yvy50002, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(ty_Either, bdg), bdh))) -> new_ltEs2(yvy49001, yvy50001, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_Either, gg), gh))) -> new_ltEs2(yvy49000, yvy50000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(yvy49000, yvy50000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(ty_Either, ff), fg))) -> new_ltEs2(yvy49002, yvy50002, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_Either, baa), bab)), hd)) -> new_ltEs2(yvy49000, yvy50000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(app(ty_@2, bbe), bbf))) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(app(ty_@2, bac), bad)), hd)) -> new_ltEs3(yvy49000, yvy50000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(app(ty_@2, ha), hb))) -> new_ltEs3(yvy49000, yvy50000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(app(ty_@2, bea), beb))) -> new_ltEs3(yvy49001, yvy50001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(app(ty_@2, fh), ga))) -> new_ltEs3(yvy49002, yvy50002, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(ty_[], baf))) -> new_ltEs(yvy49000, yvy50000, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(ty_[], bdb))) -> new_ltEs(yvy49001, yvy50001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(ty_[], eh))) -> new_ltEs(yvy49002, yvy50002, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_[], hc)), hd)) -> new_ltEs(yvy49000, yvy50000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_[], gb))) -> new_ltEs(yvy49000, yvy50000, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbh)) -> new_lt2(yvy49000, yvy50000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(ty_Either, ed), ee)), cg)) -> new_lt2(yvy49001, yvy50001, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(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_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, app(ty_[], ce)), cf), cg)) -> new_compare0(yvy49000, yvy50000, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Just(yvy49000)), Just(Just(yvy50000)), False, app(ty_Maybe, app(ty_Maybe, gf))) -> new_ltEs1(yvy49000, yvy50000, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, bda), app(ty_Maybe, bdf))) -> new_ltEs1(yvy49001, yvy50001, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(yvy49000)), Just(Right(yvy50000)), False, app(app(ty_Either, bae), app(ty_Maybe, bbb))) -> new_ltEs1(yvy49000, yvy50000, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(yvy49000)), Just(Left(yvy50000)), False, app(app(ty_Either, app(ty_Maybe, hh)), hd)) -> new_ltEs1(yvy49000, yvy50000, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), cf), app(ty_Maybe, fd))) -> new_ltEs1(yvy49002, yvy50002, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(app(ty_@3, bca), bcb), bcc)), bbh)) -> new_lt0(yvy49000, yvy50000, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(app(ty_@3, dh), ea), eb)), cg)) -> new_lt0(yvy49001, yvy50001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_Maybe, bcd)), bbh)) -> new_lt1(yvy49000, yvy50000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(ty_Maybe, ec)), cg)) -> new_lt1(yvy49001, yvy50001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(ty_[], dg)), cg)) -> new_lt(yvy49001, yvy50001, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(ty_[], bbg)), bbh)) -> new_lt(yvy49000, yvy50000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(yvy49000, yvy49001, yvy49002)), Just(@3(yvy50000, yvy50001, yvy50002)), False, app(app(app(ty_@3, df), app(app(ty_@2, ef), eg)), cg)) -> new_lt3(yvy49001, yvy50001, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(yvy49000, yvy49001)), Just(@2(yvy50000, yvy50001)), False, app(app(ty_@2, app(app(ty_@2, bcg), bch)), bbh)) -> new_lt3(yvy49000, yvy50000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, he), hf), hg), hd) -> new_ltEs0(yvy49000, yvy50000, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs0(yvy49000, yvy50000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(yvy49000, yvy50000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(ty_Either, baa), bab), hd) -> new_ltEs2(yvy49000, yvy50000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(app(ty_@2, bbe), bbf)) -> new_ltEs3(yvy49000, yvy50000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy49000), Left(yvy50000), app(app(ty_@2, bac), bad), hd) -> new_ltEs3(yvy49000, yvy50000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(yvy49000), Left(yvy50000), app(ty_[], hc), hd) -> new_ltEs(yvy49000, yvy50000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(ty_[], baf)) -> new_ltEs(yvy49000, yvy50000, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(yvy49000), Right(yvy50000), bae, app(ty_Maybe, bbb)) -> new_ltEs1(yvy49000, yvy50000, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(yvy49000), Left(yvy50000), app(ty_Maybe, hh), hd) -> new_ltEs1(yvy49000, yvy50000, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: 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_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), 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_splitLT3(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT20(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Nothing, False, h), LT), h, ba) new_splitLT21(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, bc) -> new_splitLT0(yvy33, yvy35, bb, bc) 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(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(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_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_ltEs20(yvy49001, yvy50001, app(ty_[], ddb)) -> new_ltEs11(yvy49001, yvy50001, ddb) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhf) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), ccf, ccg) -> new_pePe(new_lt20(yvy49000, yvy50000, ccf), new_asAs(new_esEs28(yvy49000, yvy50000, ccf), new_ltEs20(yvy49001, yvy50001, ccg))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bef, beg, beh) -> new_pePe(new_lt9(yvy49000, yvy50000, bef), new_asAs(new_esEs24(yvy49000, yvy50000, bef), new_pePe(new_lt10(yvy49001, yvy50001, beg), new_asAs(new_esEs23(yvy49001, yvy50001, beg), new_ltEs18(yvy49002, yvy50002, beh))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs4(yvy49000, yvy50000, dca, dcb, dcc) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cec)) -> new_compare6(yvy49000, yvy50000, cec) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], ced)) -> new_compare(yvy49000, yvy50000, ced) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfa) -> new_esEs8(new_compare(yvy49000, yvy50000, bfa), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfc)) -> new_esEs9(yvy49001, yvy50001, bfc) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_lt7(yvy49000, yvy50000, dcd) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cba), bhf)) -> new_ltEs16(yvy4900, yvy5000, cba, bhf) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dda)) -> new_ltEs9(yvy49001, yvy50001, dda) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cae), caf), bhf) -> new_ltEs16(yvy49000, yvy50000, cae, caf) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfa)) -> new_lt15(yvy49000, yvy50000, bfa) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_Either, cbh), cca)) -> new_ltEs16(yvy49000, yvy50000, cbh, cca) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbf)) -> new_esEs15(yvy20, yvy15, dbf) new_ltEs16(Left(yvy49000), Right(yvy50000), cba, bhf) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bge)) -> new_ltEs11(yvy49002, yvy50002, bge) new_compare26(Nothing, Nothing, False, ccd) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfa), cfb)) -> new_compare13(yvy49000, yvy50000, cfa, cfb) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs4(yvy49001, yvy50001, bfd, bfe, bff) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(yvy20, yvy15, daf, dag, dah) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt16(yvy49001, yvy50001, bfd, bfe, bff) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs12(yvy49001, yvy50001, ddc, ddd, dde) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbh)) -> new_lt15(yvy49000, yvy50000, dbh) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs12(yvy4900, yvy5000, bef, beg, beh) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_lt19(yvy49000, yvy50000, dcg, dch) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_@2, ccb), ccc)) -> new_ltEs17(yvy49000, yvy50000, ccb, ccc) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cad), bhf) -> new_ltEs4(yvy49000, yvy50000, cad) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], cch) -> False new_esEs9([], :(yvy3000, yvy3001), cch) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddg), ddh)) -> new_ltEs16(yvy49001, yvy50001, ddg, ddh) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy49002, yvy50002, bgf, bgg, bgh) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhf) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccd) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccd), ccd) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccd) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_esEs5(yvy49001, yvy50001, bfg) new_lt10(yvy49001, yvy50001, app(ty_[], bfc)) -> new_lt15(yvy49001, yvy50001, bfc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhf) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, caa), cab), cac), bhf) -> new_ltEs12(yvy49000, yvy50000, caa, cab, cac) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_esEs15(yvy49001, yvy50001, bfb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cch) -> new_asAs(new_esEs25(yvy4000, yvy3000, cch), new_esEs9(yvy4001, yvy3001, cch)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cde), cdf)) -> new_esEs7(yvy4000, yvy3000, cde, cdf) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_lt5(yvy49000, yvy50000, dbg) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cce) -> new_fsEs(new_compare6(yvy4900, yvy5000, cce)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_esEs6(yvy49001, yvy50001, bfh, bga) new_esEs24(yvy49000, yvy50000, app(ty_[], bfa)) -> new_esEs9(yvy49000, yvy50000, bfa) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cag), cah), bhf) -> new_ltEs17(yvy49000, yvy50000, cag, cah) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhf) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, app(ty_[], cch)) -> new_esEs9(yvy400, yvy300, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cff, cfg) -> new_asAs(new_esEs27(yvy4000, yvy3000, cff), new_esEs26(yvy4001, yvy3001, cfg)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cba, bhf) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cda)) -> new_esEs9(yvy4000, yvy3000, cda) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bha)) -> new_ltEs4(yvy49002, yvy50002, bha) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_[], cbc)) -> new_ltEs11(yvy49000, yvy50000, cbc) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceh)) -> new_compare9(yvy49000, yvy50000, ceh) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhf) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dba), dbb)) -> new_esEs7(yvy20, yvy15, dba, dbb) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dad) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dad), dad) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhg), bhf) -> new_ltEs9(yvy49000, yvy50000, bhg) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbe)) -> new_esEs5(yvy20, yvy15, dbe) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs12(yvy49000, yvy50000, cbd, cbe, cbf) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_esEs7(yvy49001, yvy50001, bgb, bgc) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_lt5(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhh), bhf) -> new_ltEs11(yvy49000, yvy50000, bhh) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Ratio, cbb)) -> new_ltEs9(yvy49000, yvy50000, cbb) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs31(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhb), bhc)) -> new_ltEs16(yvy49002, yvy50002, bhb, bhc) new_esEs31(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cea)) -> new_esEs5(yvy4000, yvy3000, cea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhf) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs6(yvy4000, yvy3000, cdg, cdh) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccd) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_lt19(yvy49001, yvy50001, bgb, bgc) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_esEs7(yvy49000, yvy50000, dcg, dch) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfc), cfd)) -> new_compare11(yvy49000, yvy50000, cfc, cfd) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_esEs31(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_esEs5(yvy49000, yvy50000, dcd) new_compare111(yvy168, yvy169, False, cfe) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt16(yvy49000, yvy50000, dca, dcb, dcc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhf) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, dea), deb)) -> new_ltEs17(yvy49001, yvy50001, dea, deb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Maybe, cbg)) -> new_ltEs4(yvy49000, yvy50000, cbg) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy4900, yvy5000, ccf, ccg) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbc), dbd)) -> new_esEs6(yvy20, yvy15, dbc, dbd) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_lt18(yvy49000, yvy50000, dce, dcf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc, cdd) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfe) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbh)) -> new_esEs9(yvy49000, yvy50000, dbh) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgd)) -> new_ltEs9(yvy49002, yvy50002, bgd) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhf) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccd) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cce)) -> new_ltEs9(yvy4900, yvy5000, cce) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy49002, yvy50002, bhd, bhe) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], cch) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_esEs6(yvy49000, yvy50000, dce, dcf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_lt18(yvy49001, yvy50001, bfh, bga) new_esEs31(yvy400, yvy300, app(app(ty_@2, cff), cfg)) -> new_esEs7(yvy400, yvy300, cff, cfg) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare7(yvy49000, yvy50000, cee, cef, ceg) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_esEs15(yvy49000, yvy50000, dbg) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dae)) -> new_esEs9(yvy20, yvy15, dae) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, ddf)) -> new_ltEs4(yvy49001, yvy50001, ddf) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_lt7(yvy49001, yvy50001, bfg) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs28(x0, x1, app(ty_[], x2)) new_compare26(Nothing, Just(x0), False, x1) new_lt15(x0, x1, x2) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs5(Nothing, Nothing, x0) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_esEs9(:(x0, x1), [], x2) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare([], [], x0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, True, x2) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_ltEs9(x0, x1, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs9(:(x0, x1), :(x2, x3), x4) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare30(x0, x1, x2) new_lt13(x0, x1) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_compare26(Just(x0), Nothing, False, x1) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_esEs8(GT, GT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(False, False) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Double) new_esEs5(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(@0, @0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_lt9(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_compare28(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_lt20(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_gt(x0) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare([], :(x0, x1), x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_compare26(Nothing, Nothing, False, x0) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9([], [], x0) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare32(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_compare28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare28(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9([], :(x0, x1), x2) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_lt5(x0, x1, x2) new_esEs31(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (46) Complex Obligation (AND) ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: 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) 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_esEs8(new_compare26(Nothing, Just(yvy300), False, 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_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 TRS R consists of the following rules: new_ltEs20(yvy49001, yvy50001, app(ty_[], ddb)) -> new_ltEs11(yvy49001, yvy50001, ddb) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhf) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), ccf, ccg) -> new_pePe(new_lt20(yvy49000, yvy50000, ccf), new_asAs(new_esEs28(yvy49000, yvy50000, ccf), new_ltEs20(yvy49001, yvy50001, ccg))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bef, beg, beh) -> new_pePe(new_lt9(yvy49000, yvy50000, bef), new_asAs(new_esEs24(yvy49000, yvy50000, bef), new_pePe(new_lt10(yvy49001, yvy50001, beg), new_asAs(new_esEs23(yvy49001, yvy50001, beg), new_ltEs18(yvy49002, yvy50002, beh))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs4(yvy49000, yvy50000, dca, dcb, dcc) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cec)) -> new_compare6(yvy49000, yvy50000, cec) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], ced)) -> new_compare(yvy49000, yvy50000, ced) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfa) -> new_esEs8(new_compare(yvy49000, yvy50000, bfa), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfc)) -> new_esEs9(yvy49001, yvy50001, bfc) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_lt7(yvy49000, yvy50000, dcd) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cba), bhf)) -> new_ltEs16(yvy4900, yvy5000, cba, bhf) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dda)) -> new_ltEs9(yvy49001, yvy50001, dda) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cae), caf), bhf) -> new_ltEs16(yvy49000, yvy50000, cae, caf) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfa)) -> new_lt15(yvy49000, yvy50000, bfa) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_Either, cbh), cca)) -> new_ltEs16(yvy49000, yvy50000, cbh, cca) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbf)) -> new_esEs15(yvy20, yvy15, dbf) new_ltEs16(Left(yvy49000), Right(yvy50000), cba, bhf) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bge)) -> new_ltEs11(yvy49002, yvy50002, bge) new_compare26(Nothing, Nothing, False, ccd) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfa), cfb)) -> new_compare13(yvy49000, yvy50000, cfa, cfb) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs4(yvy49001, yvy50001, bfd, bfe, bff) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(yvy20, yvy15, daf, dag, dah) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt16(yvy49001, yvy50001, bfd, bfe, bff) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs12(yvy49001, yvy50001, ddc, ddd, dde) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbh)) -> new_lt15(yvy49000, yvy50000, dbh) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs12(yvy4900, yvy5000, bef, beg, beh) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_lt19(yvy49000, yvy50000, dcg, dch) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_@2, ccb), ccc)) -> new_ltEs17(yvy49000, yvy50000, ccb, ccc) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cad), bhf) -> new_ltEs4(yvy49000, yvy50000, cad) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], cch) -> False new_esEs9([], :(yvy3000, yvy3001), cch) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddg), ddh)) -> new_ltEs16(yvy49001, yvy50001, ddg, ddh) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy49002, yvy50002, bgf, bgg, bgh) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhf) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccd) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccd), ccd) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccd) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_esEs5(yvy49001, yvy50001, bfg) new_lt10(yvy49001, yvy50001, app(ty_[], bfc)) -> new_lt15(yvy49001, yvy50001, bfc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhf) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, caa), cab), cac), bhf) -> new_ltEs12(yvy49000, yvy50000, caa, cab, cac) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_esEs15(yvy49001, yvy50001, bfb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cch) -> new_asAs(new_esEs25(yvy4000, yvy3000, cch), new_esEs9(yvy4001, yvy3001, cch)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cde), cdf)) -> new_esEs7(yvy4000, yvy3000, cde, cdf) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_lt5(yvy49000, yvy50000, dbg) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cce) -> new_fsEs(new_compare6(yvy4900, yvy5000, cce)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_esEs6(yvy49001, yvy50001, bfh, bga) new_esEs24(yvy49000, yvy50000, app(ty_[], bfa)) -> new_esEs9(yvy49000, yvy50000, bfa) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cag), cah), bhf) -> new_ltEs17(yvy49000, yvy50000, cag, cah) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhf) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, app(ty_[], cch)) -> new_esEs9(yvy400, yvy300, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cff, cfg) -> new_asAs(new_esEs27(yvy4000, yvy3000, cff), new_esEs26(yvy4001, yvy3001, cfg)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cba, bhf) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cda)) -> new_esEs9(yvy4000, yvy3000, cda) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bha)) -> new_ltEs4(yvy49002, yvy50002, bha) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_[], cbc)) -> new_ltEs11(yvy49000, yvy50000, cbc) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceh)) -> new_compare9(yvy49000, yvy50000, ceh) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhf) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dba), dbb)) -> new_esEs7(yvy20, yvy15, dba, dbb) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dad) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dad), dad) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhg), bhf) -> new_ltEs9(yvy49000, yvy50000, bhg) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbe)) -> new_esEs5(yvy20, yvy15, dbe) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs12(yvy49000, yvy50000, cbd, cbe, cbf) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_esEs7(yvy49001, yvy50001, bgb, bgc) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_lt5(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhh), bhf) -> new_ltEs11(yvy49000, yvy50000, bhh) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Ratio, cbb)) -> new_ltEs9(yvy49000, yvy50000, cbb) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs31(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhb), bhc)) -> new_ltEs16(yvy49002, yvy50002, bhb, bhc) new_esEs31(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cea)) -> new_esEs5(yvy4000, yvy3000, cea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhf) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs6(yvy4000, yvy3000, cdg, cdh) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccd) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_lt19(yvy49001, yvy50001, bgb, bgc) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_esEs7(yvy49000, yvy50000, dcg, dch) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfc), cfd)) -> new_compare11(yvy49000, yvy50000, cfc, cfd) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_esEs31(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_esEs5(yvy49000, yvy50000, dcd) new_compare111(yvy168, yvy169, False, cfe) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt16(yvy49000, yvy50000, dca, dcb, dcc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhf) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, dea), deb)) -> new_ltEs17(yvy49001, yvy50001, dea, deb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Maybe, cbg)) -> new_ltEs4(yvy49000, yvy50000, cbg) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy4900, yvy5000, ccf, ccg) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbc), dbd)) -> new_esEs6(yvy20, yvy15, dbc, dbd) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_lt18(yvy49000, yvy50000, dce, dcf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc, cdd) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfe) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbh)) -> new_esEs9(yvy49000, yvy50000, dbh) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgd)) -> new_ltEs9(yvy49002, yvy50002, bgd) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhf) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccd) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cce)) -> new_ltEs9(yvy4900, yvy5000, cce) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy49002, yvy50002, bhd, bhe) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], cch) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_esEs6(yvy49000, yvy50000, dce, dcf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_lt18(yvy49001, yvy50001, bfh, bga) new_esEs31(yvy400, yvy300, app(app(ty_@2, cff), cfg)) -> new_esEs7(yvy400, yvy300, cff, cfg) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare7(yvy49000, yvy50000, cee, cef, ceg) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_esEs15(yvy49000, yvy50000, dbg) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dae)) -> new_esEs9(yvy20, yvy15, dae) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, ddf)) -> new_ltEs4(yvy49001, yvy50001, ddf) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_lt7(yvy49001, yvy50001, bfg) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs28(x0, x1, app(ty_[], x2)) new_compare26(Nothing, Just(x0), False, x1) new_lt15(x0, x1, x2) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs5(Nothing, Nothing, x0) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_esEs9(:(x0, x1), [], x2) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare([], [], x0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, True, x2) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_ltEs9(x0, x1, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs9(:(x0, x1), :(x2, x3), x4) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare30(x0, x1, x2) new_lt13(x0, x1) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_compare26(Just(x0), Nothing, False, x1) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_esEs8(GT, GT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(False, False) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Double) new_esEs5(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(@0, @0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_lt9(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_compare28(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_lt20(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_gt(x0) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare([], :(x0, x1), x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_compare26(Nothing, Nothing, False, x0) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9([], [], x0) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare32(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_compare28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare28(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9([], :(x0, x1), x2) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_lt5(x0, x1, x2) new_esEs31(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_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_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, 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 *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_splitLT3(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(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_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_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 ---------------------------------------- (49) YES ---------------------------------------- (50) 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_esEs8(new_compare26(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_esEs8(new_compare26(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_ltEs20(yvy49001, yvy50001, app(ty_[], ddb)) -> new_ltEs11(yvy49001, yvy50001, ddb) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs4(yvy4000, yvy3000, ef, eg, eh) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, bhf) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), ccf, ccg) -> new_pePe(new_lt20(yvy49000, yvy50000, ccf), new_asAs(new_esEs28(yvy49000, yvy50000, ccf), new_ltEs20(yvy49001, yvy50001, ccg))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), bef, beg, beh) -> new_pePe(new_lt9(yvy49000, yvy50000, bef), new_asAs(new_esEs24(yvy49000, yvy50000, bef), new_pePe(new_lt10(yvy49001, yvy50001, beg), new_asAs(new_esEs23(yvy49001, yvy50001, beg), new_ltEs18(yvy49002, yvy50002, beh))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ec), db) -> new_esEs15(yvy4000, yvy3000, ec) new_compare(:(yvy49000, yvy49001), [], bac) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy5000))) -> GT new_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs4(yvy4002, yvy3002, bah, bba, bbb) new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_esEs30(yvy20, yvy15, ty_Float) -> new_esEs13(yvy20, yvy15) new_lt7(yvy49000, yvy50000, hh) -> new_esEs8(new_compare9(yvy49000, yvy50000, hh), LT) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Ratio, fg)) -> new_esEs15(yvy4000, yvy3000, fg) new_ltEs4(Nothing, Nothing, ge) -> True new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_ltEs4(Just(yvy49000), Nothing, ge) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs4(yvy49000, yvy50000, dca, dcb, dcc) new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare19(@0, @0) -> EQ new_compare28(yvy49000, yvy50000, app(ty_Ratio, cec)) -> new_compare6(yvy49000, yvy50000, cec) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cb), cc)) -> new_esEs7(yvy4000, yvy3000, cb, cc) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, hc)) -> new_ltEs4(yvy49000, yvy50000, hc) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, bbh)) -> new_esEs15(yvy4002, yvy3002, bbh) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], bac)) -> new_ltEs11(yvy4900, yvy5000, bac) new_compare28(yvy49000, yvy50000, app(ty_[], ced)) -> new_compare(yvy49000, yvy50000, ced) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_ltEs13(EQ, GT) -> True new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, bfa) -> new_esEs8(new_compare(yvy49000, yvy50000, bfa), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_esEs15(yvy49000, yvy50000, bd) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], bfc)) -> new_esEs9(yvy49001, yvy50001, bfc) new_lt20(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_lt7(yvy49000, yvy50000, dcd) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, cba), bhf)) -> new_ltEs16(yvy4900, yvy5000, cba, bhf) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, db) -> new_esEs11(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, dda)) -> new_ltEs9(yvy49001, yvy50001, dda) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, cae), caf), bhf) -> new_ltEs16(yvy49000, yvy50000, cae, caf) new_not(True) -> False new_primCmpNat0(Zero, Zero) -> EQ new_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_lt9(yvy49000, yvy50000, app(ty_[], bfa)) -> new_lt15(yvy49000, yvy50000, bfa) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_Either, cbh), cca)) -> new_ltEs16(yvy49000, yvy50000, cbh, cca) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs22(yvy4000, yvy3000, bee), new_esEs21(yvy4001, yvy3001, bee)) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs30(yvy20, yvy15, app(ty_Ratio, dbf)) -> new_esEs15(yvy20, yvy15, dbf) new_ltEs16(Left(yvy49000), Right(yvy50000), cba, bhf) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare10(yvy49000, yvy50000, True, fh, ga) -> LT new_ltEs18(yvy49002, yvy50002, app(ty_[], bge)) -> new_ltEs11(yvy49002, yvy50002, bge) new_compare26(Nothing, Nothing, False, ccd) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, db) -> new_esEs14(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs9(yvy4000, yvy3000, bf) new_compare15(yvy49000, yvy50000, True, baa, bab) -> LT new_compare28(yvy49000, yvy50000, app(app(ty_Either, cfa), cfb)) -> new_compare13(yvy49000, yvy50000, cfa, cfb) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(yvy49000, yvy50000, gb, gc, gd) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs4(yvy49001, yvy50001, bfd, bfe, bff) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(yvy20, yvy15, daf, dag, dah) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT new_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, bed)) -> new_esEs15(yvy4000, yvy3000, bed) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt16(yvy49001, yvy50001, bfd, bfe, bff) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs12(yvy49001, yvy50001, ddc, ddd, dde) new_lt9(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_lt18(yvy49000, yvy50000, fh, ga) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare13(yvy49000, yvy50000, fh, ga), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_Maybe, ff)) -> new_esEs5(yvy4000, yvy3000, ff) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_lt20(yvy49000, yvy50000, app(ty_[], dbh)) -> new_lt15(yvy49000, yvy50000, dbh) new_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs12(yvy4900, yvy5000, bef, beg, beh) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_lt19(yvy49000, yvy50000, dcg, dch) new_compare7(yvy49000, yvy50000, gb, gc, gd) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_esEs27(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs4(yvy4001, yvy3001, bcb, bcc, bcd) new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(ty_@2, ccb), ccc)) -> new_ltEs17(yvy49000, yvy50000, ccb, ccc) new_compare25(yvy49000, yvy50000, True, fh, ga) -> EQ new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eb), db) -> new_esEs5(yvy4000, yvy3000, eb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, cad), bhf) -> new_ltEs4(yvy49000, yvy50000, cad) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, db) -> new_esEs8(yvy4000, yvy3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], cch) -> False new_esEs9([], :(yvy3000, yvy3001), cch) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dc), dd), de), db) -> new_esEs4(yvy4000, yvy3000, dc, dd, de) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, ddg), ddh)) -> new_ltEs16(yvy49001, yvy50001, ddg, ddh) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(yvy49002, yvy50002, bgf, bgg, bgh) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, be) -> True new_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_ltEs6(False, False) -> True new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs5(Nothing, Just(yvy3000), be) -> False new_esEs5(Just(yvy4000), Nothing, be) -> False new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cd), ce)) -> new_esEs6(yvy4000, yvy3000, cd, ce) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, fh), ga)) -> new_esEs6(yvy49000, yvy50000, fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dh), ea), db) -> new_esEs6(yvy4000, yvy3000, dh, ea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, bhf) -> new_ltEs15(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ccd) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ccd), ccd) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(yvy400, yvy300, bad, bae, baf) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, hd), he)) -> new_ltEs16(yvy49000, yvy50000, hd, he) new_compare26(yvy490, yvy500, True, ccd) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_esEs5(yvy49001, yvy50001, bfg) new_lt10(yvy49001, yvy50001, app(ty_[], bfc)) -> new_lt15(yvy49001, yvy50001, bfc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, bhf) -> new_ltEs7(yvy49000, yvy50000) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, df), dg), db) -> new_esEs7(yvy4000, yvy3000, df, dg) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_lt16(yvy49000, yvy50000, gb, gc, gd) -> new_esEs8(new_compare7(yvy49000, yvy50000, gb, gc, gd), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, caa), cab), cac), bhf) -> new_ltEs12(yvy49000, yvy50000, caa, cab, cac) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, db) -> new_esEs12(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bdd, bde, bdf) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) new_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_esEs15(yvy49001, yvy50001, bfb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(ty_[], ee)) -> new_esEs9(yvy4000, yvy3000, ee) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, gb), gc), gd)) -> new_lt16(yvy49000, yvy50000, gb, gc, gd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cch) -> new_asAs(new_esEs25(yvy4000, yvy3000, cch), new_esEs9(yvy4001, yvy3001, cch)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cg)) -> new_esEs15(yvy4000, yvy3000, cg) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, cde), cdf)) -> new_esEs7(yvy4000, yvy3000, cde, cdf) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_lt5(yvy49000, yvy50000, dbg) new_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), bac) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_@2, fa), fb)) -> new_esEs7(yvy4000, yvy3000, fa, fb) new_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cf)) -> new_esEs5(yvy4000, yvy3000, cf) new_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, cce) -> new_fsEs(new_compare6(yvy4900, yvy5000, cce)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_esEs6(yvy49001, yvy50001, bfh, bga) new_esEs24(yvy49000, yvy50000, app(ty_[], bfa)) -> new_esEs9(yvy49000, yvy50000, bfa) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, app(app(ty_Either, fc), fd)) -> new_esEs6(yvy4000, yvy3000, fc, fd) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, cag), cah), bhf) -> new_ltEs17(yvy49000, yvy50000, cag, cah) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], bca)) -> new_esEs9(yvy4001, yvy3001, bca) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_compare24(yvy49000, yvy50000, True, gb, gc, gd) -> EQ new_lt5(yvy49000, yvy50000, bd) -> new_esEs8(new_compare6(yvy49000, yvy50000, bd), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bda)) -> new_esEs5(yvy4001, yvy3001, bda) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, bhf) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, app(ty_[], cch)) -> new_esEs9(yvy400, yvy300, cch) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, hf), hg)) -> new_ltEs17(yvy49000, yvy50000, hf, hg) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_compare10(yvy49000, yvy50000, False, fh, ga) -> GT new_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cff, cfg) -> new_asAs(new_esEs27(yvy4000, yvy3000, cff), new_esEs26(yvy4001, yvy3001, cfg)) new_compare113(yvy49000, yvy50000, True) -> LT new_compare9(yvy49000, yvy50000, hh) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, hh), hh) new_ltEs16(Right(yvy49000), Left(yvy50000), cba, bhf) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], cda)) -> new_esEs9(yvy4000, yvy3000, cda) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs4(yvy4000, yvy3000, bg, bh, ca) new_esEs6(Left(yvy4000), Right(yvy3000), ed, db) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ed, db) -> False new_ltEs4(Nothing, Just(yvy50000), ge) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bec)) -> new_esEs5(yvy4000, yvy3000, bec) new_esEs16(@0, @0) -> True new_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, bha)) -> new_ltEs4(yvy49002, yvy50002, bha) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_[], cbc)) -> new_ltEs11(yvy49000, yvy50000, cbc) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, app(ty_Maybe, ceh)) -> new_compare9(yvy49000, yvy50000, ceh) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, bbc), bbd)) -> new_esEs7(yvy4002, yvy3002, bbc, bbd) new_esEs20(yvy4000, yvy3000, app(ty_[], bdc)) -> new_esEs9(yvy4000, yvy3000, bdc) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_esEs7(yvy49000, yvy50000, baa, bab) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, bhf) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_esEs30(yvy20, yvy15, app(app(ty_@2, dba), dbb)) -> new_esEs7(yvy20, yvy15, dba, dbb) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, dad) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, dad), dad) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, bhg), bhf) -> new_ltEs9(yvy49000, yvy50000, bhg) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, gf)) -> new_ltEs9(yvy49000, yvy50000, gf) new_ltEs11(yvy4900, yvy5000, bac) -> new_fsEs(new_compare(yvy4900, yvy5000, bac)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_esEs5(yvy49000, yvy50000, hh) new_esEs30(yvy20, yvy15, app(ty_Maybe, dbe)) -> new_esEs5(yvy20, yvy15, dbe) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs12(yvy49000, yvy50000, cbd, cbe, cbf) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_esEs23(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_esEs7(yvy49001, yvy50001, bgb, bgc) new_lt10(yvy49001, yvy50001, app(ty_Ratio, bfb)) -> new_lt5(yvy49001, yvy50001, bfb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], bhh), bhf) -> new_ltEs11(yvy49000, yvy50000, bhh) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, db) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, bac) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, bac)) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Ratio, cbb)) -> new_ltEs9(yvy49000, yvy50000, cbb) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs31(yvy400, yvy300, app(ty_Maybe, be)) -> new_esEs5(yvy400, yvy300, be) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bhb), bhc)) -> new_ltEs16(yvy49002, yvy50002, bhb, bhc) new_esEs31(yvy400, yvy300, app(app(ty_Either, ed), db)) -> new_esEs6(yvy400, yvy300, ed, db) new_ltEs13(EQ, LT) -> False new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(ty_Maybe, cea)) -> new_esEs5(yvy4000, yvy3000, cea) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, bhf) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bcg), bch)) -> new_esEs6(yvy4001, yvy3001, bcg, bch) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, cdg), cdh)) -> new_esEs6(yvy4000, yvy3000, cdg, cdh) new_primCompAux0(yvy200, EQ) -> yvy200 new_compare11(yvy49000, yvy50000, baa, bab) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, baa, bab), baa, bab) new_compare26(Just(yvy4900), Nothing, False, ccd) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, bbg)) -> new_esEs5(yvy4002, yvy3002, bbg) new_lt10(yvy49001, yvy50001, app(app(ty_@2, bgb), bgc)) -> new_lt19(yvy49001, yvy50001, bgb, bgc) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare([], [], bac) -> EQ new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, fh, ga) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, dcg), dch)) -> new_esEs7(yvy49000, yvy50000, dcg, dch) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, bea), beb)) -> new_esEs6(yvy4000, yvy3000, bea, beb) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_compare13(yvy49000, yvy50000, fh, ga) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, fh, ga), fh, ga) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, cfc), cfd)) -> new_compare11(yvy49000, yvy50000, cfc, cfd) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) new_esEs31(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs15(yvy400, yvy300, bee) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, hh)) -> new_lt7(yvy49000, yvy50000, hh) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bdb)) -> new_esEs15(yvy4001, yvy3001, bdb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(yvy49000, yvy50000, app(ty_Maybe, dcd)) -> new_esEs5(yvy49000, yvy50000, dcd) new_compare111(yvy168, yvy169, False, cfe) -> GT new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, db) -> new_esEs13(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bce), bcf)) -> new_esEs7(yvy4001, yvy3001, bce, bcf) new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_lt16(yvy49000, yvy50000, dca, dcb, dcc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, bhf) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, gb, gc, gd) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, dea), deb)) -> new_ltEs17(yvy49001, yvy50001, dea, deb) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs27(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], da), db) -> new_esEs9(yvy4000, yvy3000, da) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, app(ty_Maybe, cbg)) -> new_ltEs4(yvy49000, yvy50000, cbg) new_compare27(yvy49000, yvy50000, False, baa, bab) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, baa, bab), baa, bab) new_compare112(yvy49000, yvy50000, False, gb, gc, gd) -> GT new_compare27(yvy49000, yvy50000, True, baa, bab) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, ccf), ccg)) -> new_ltEs17(yvy4900, yvy5000, ccf, ccg) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, dbc), dbd)) -> new_esEs6(yvy20, yvy15, dbc, dbd) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_lt18(yvy49000, yvy50000, dce, dcf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc, cdd) new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_lt19(yvy49000, yvy50000, baa, bab) -> new_esEs8(new_compare11(yvy49000, yvy50000, baa, bab), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, gb, gc, gd) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, gb, gc, gd), gb, gc, gd) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_compare111(yvy168, yvy169, True, cfe) -> LT new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], dbh)) -> new_esEs9(yvy49000, yvy50000, dbh) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], gg)) -> new_ltEs11(yvy49000, yvy50000, gg) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, bgd)) -> new_ltEs9(yvy49002, yvy50002, bgd) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), cba, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, bhf) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yvy4002, yvy3002, bbe, bbf) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, bd)) -> new_lt5(yvy49000, yvy50000, bd) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, db) -> new_esEs17(yvy4000, yvy3000) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ccd) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, baa), bab)) -> new_lt19(yvy49000, yvy50000, baa, bab) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, cce)) -> new_ltEs9(yvy4900, yvy5000, cce) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bhd), bhe)) -> new_ltEs17(yvy49002, yvy50002, bhd, bhe) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare15(yvy49000, yvy50000, False, baa, bab) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs9([], [], cch) -> True new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ge)) -> new_ltEs4(yvy4900, yvy5000, ge) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, db) -> new_esEs16(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, dce), dcf)) -> new_esEs6(yvy49000, yvy50000, dce, dcf) new_esEs6(Right(yvy4000), Right(yvy3000), ed, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_primEqNat0(Zero, Zero) -> True new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, bfh), bga)) -> new_lt18(yvy49001, yvy50001, bfh, bga) new_esEs31(yvy400, yvy300, app(app(ty_@2, cff), cfg)) -> new_esEs7(yvy400, yvy300, cff, cfg) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare7(yvy49000, yvy50000, cee, cef, ceg) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(yvy49000, yvy50000, gh, ha, hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, dbg)) -> new_esEs15(yvy49000, yvy50000, dbg) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), bac) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, bac), bac) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bad, bae, baf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bad), new_asAs(new_esEs19(yvy4001, yvy3001, bae), new_esEs18(yvy4002, yvy3002, baf))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], dae)) -> new_esEs9(yvy20, yvy15, dae) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, ddf)) -> new_ltEs4(yvy49001, yvy50001, ddf) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_lt10(yvy49001, yvy50001, app(ty_Maybe, bfg)) -> new_lt7(yvy49001, yvy50001, bfg) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], bag)) -> new_esEs9(yvy4002, yvy3002, bag) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bdg), bdh)) -> new_esEs7(yvy4000, yvy3000, bdg, bdh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, LT) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs28(x0, x1, app(ty_[], x2)) new_compare26(Nothing, Just(x0), False, x1) new_lt15(x0, x1, x2) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_compare16(x0, x1) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare9(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs20(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_ltEs13(EQ, EQ) new_primCompAux1(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_sr(x0, x1) new_esEs28(x0, x1, ty_Bool) new_esEs5(Nothing, Nothing, x0) new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(x0, x1, False, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_esEs9(:(x0, x1), [], x2) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_compare10(x0, x1, False, x2, x3) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), x1) new_esEs24(x0, x1, ty_@0) new_compare13(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Char) new_compare([], [], x0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, True, x2) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_ltEs9(x0, x1, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs12(Char(x0), Char(x1)) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_esEs23(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs9(:(x0, x1), :(x2, x3), x4) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs11(x0, x1, x2) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare24(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare30(x0, x1, x2) new_lt13(x0, x1) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare25(x0, x1, True, x2, x3) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_compare26(Just(x0), Nothing, False, x1) new_lt19(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, ty_Char) new_esEs8(GT, GT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(False, False) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare28(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, ty_Double) new_esEs5(Just(x0), Nothing, x1) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(@0, @0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare33(x0) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_lt9(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_compare28(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs16(@0, @0) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare(:(x0, x1), [], x2) new_primPlusNat1(Succ(x0), Zero) new_lt20(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_gt(x0) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_pePe(True, x0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Int) new_primMulNat0(Zero, Zero) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_compare111(x0, x1, True, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_compare210(x0, x1, True) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare28(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare([], :(x0, x1), x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_compare26(Nothing, Nothing, False, x0) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs4(Nothing, Just(x0), x1) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs13(LT, LT) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_compare31(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_lt14(x0, x1) new_primCompAux0(x0, GT) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare8(Char(x0), Char(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare7(x0, x1, x2, x3, x4) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9([], [], x0) new_ltEs8(x0, x1) new_esEs25(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs13(GT, GT) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare32(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs25(x0, x1, ty_Integer) new_lt18(x0, x1, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs5(Just(x0), Just(x1), ty_Double) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_fsEs(x0) new_lt7(x0, x1, x2) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_gt0(x0, x1) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_compare28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare28(x0, x1, ty_@0) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_compare26(Just(x0), Just(x1), False, x2) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Zero, Zero) new_ltEs18(x0, x1, ty_Int) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_not(False) new_lt20(x0, x1, ty_Double) new_compare27(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9([], :(x0, x1), x2) new_esEs24(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs6(False, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_lt5(x0, x1, x2) new_esEs31(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, False, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs10(False, True) new_esEs10(True, False) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_[], 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_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, ty_@0) new_ltEs4(Just(x0), Nothing, x1) new_esEs21(x0, x1, ty_Int) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) 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_esEs8(new_compare26(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_esEs8(new_compare26(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 ---------------------------------------- (52) YES ---------------------------------------- (53) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The TRS R consists of the following rules: new_ltEs20(yvy49001, yvy50001, app(ty_[], bhg)) -> new_ltEs11(yvy49001, yvy50001, bhg) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs4(yvy4000, yvy3000, cde, cdf, cdg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Bool, dad) -> new_ltEs6(yvy49000, yvy50000) new_compare28(yvy49000, yvy50000, ty_Ordering) -> new_compare5(yvy49000, yvy50000) new_ltEs17(@2(yvy49000, yvy49001), @2(yvy50000, yvy50001), bgb, bgc) -> new_pePe(new_lt20(yvy49000, yvy50000, bgb), new_asAs(new_esEs28(yvy49000, yvy50000, bgb), new_ltEs20(yvy49001, yvy50001, bgc))) new_ltEs12(@3(yvy49000, yvy49001, yvy49002), @3(yvy50000, yvy50001, yvy50002), fb, fc, fd) -> new_pePe(new_lt9(yvy49000, yvy50000, fb), new_asAs(new_esEs24(yvy49000, yvy50000, fb), new_pePe(new_lt10(yvy49001, yvy50001, fc), new_asAs(new_esEs23(yvy49001, yvy50001, fc), new_ltEs18(yvy49002, yvy50002, fd))))) new_pePe(True, yvy195) -> True new_compare16(yvy49000, yvy50000) -> new_compare210(yvy49000, yvy50000, new_esEs10(yvy49000, yvy50000)) new_ltEs19(yvy4900, yvy5000, ty_@0) -> new_ltEs5(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) new_esEs17(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_splitLT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Just(yvy400), h, ba) new_esEs27(yvy4000, yvy3000, app(ty_[], bde)) -> new_esEs9(yvy4000, yvy3000, bde) new_esEs27(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs12(yvy400, yvy500) new_lt10(yvy49001, yvy50001, ty_Integer) -> new_lt13(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cdc), ed) -> new_esEs15(yvy4000, yvy3000, cdc) new_compare(:(yvy49000, yvy49001), [], fa) -> GT new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C23(yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(Nothing, Nothing, True, h), LT), h, ba) new_primCmpInt2(yvy6200, yvy134) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy134) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 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_esEs21(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitGT5(yvy34, yvy400, h, ba) new_esEs24(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs4(yvy4002, yvy3002, ceg, ceh, cfa) 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_lt7(yvy49000, yvy50000, fg) -> new_esEs8(new_compare9(yvy49000, yvy50000, fg), LT) new_esEs24(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, ty_Float) -> new_esEs13(yvy4002, yvy3002) new_esEs28(yvy49000, yvy50000, ty_Integer) -> new_esEs17(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(Nothing, Nothing, ca) -> True new_esEs26(yvy4001, yvy3001, app(app(ty_@2, bcg), bch)) -> new_esEs7(yvy4001, yvy3001, bcg, bch) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Ratio, cee)) -> new_esEs15(yvy4000, yvy3000, cee) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Nothing, ca) -> False new_esEs10(False, True) -> False new_esEs10(True, False) -> False new_ltEs13(GT, GT) -> True 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_esEs8(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_addToFM_C0(Branch(Nothing, yvy51, yvy52, yvy53, yvy54), Just(yvy400), yvy41, h, ba) -> new_addToFM_C25(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare26(Just(yvy400), Nothing, False, h), LT), h, ba) new_compare113(yvy49000, yvy50000, False) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs4(yvy49000, yvy50000, bgf, bgg, bgh) new_ltEs7(yvy4900, yvy5000) -> new_fsEs(new_compare12(yvy4900, yvy5000)) new_compare19(@0, @0) -> EQ new_esEs18(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) new_compare28(yvy49000, yvy50000, app(ty_Ratio, baf)) -> new_compare6(yvy49000, yvy50000, baf) new_esEs25(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_primCompAux0(yvy200, GT) -> GT new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Char) -> new_ltEs14(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Integer) -> new_esEs17(yvy49001, yvy50001) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cbd), cbe)) -> new_esEs7(yvy4000, yvy3000, cbd, cbe) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Maybe, cg)) -> new_ltEs4(yvy49000, yvy50000, cg) new_esEs18(yvy4002, yvy3002, app(ty_Ratio, cfg)) -> new_esEs15(yvy4002, yvy3002, cfg) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_compare28(yvy49000, yvy50000, app(ty_[], bag)) -> new_compare(yvy49000, yvy50000, bag) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs8(GT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(ty_[], fa)) -> new_ltEs11(yvy4900, yvy5000, fa) new_lt12(yvy49000, yvy50000) -> new_esEs8(new_compare16(yvy49000, yvy50000), LT) new_ltEs13(EQ, GT) -> True new_fsEs(yvy183) -> new_not(new_esEs8(yvy183, GT)) new_esEs23(yvy49001, yvy50001, ty_@0) -> new_esEs16(yvy49001, yvy50001) new_lt17(yvy49000, yvy50000) -> new_esEs8(new_compare17(yvy49000, yvy50000), LT) new_lt15(yvy49000, yvy50000, ff) -> new_esEs8(new_compare(yvy49000, yvy50000, ff), LT) new_esEs24(yvy49000, yvy50000, app(ty_Ratio, be)) -> new_esEs15(yvy49000, yvy50000, be) new_lt9(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_[], gc)) -> new_esEs9(yvy49001, yvy50001, gc) new_lt20(yvy49000, yvy50000, app(ty_Maybe, bha)) -> new_lt7(yvy49000, yvy50000, bha) new_ltEs13(EQ, EQ) -> True new_esEs8(EQ, EQ) -> True new_ltEs19(yvy4900, yvy5000, app(app(ty_Either, dbg), dad)) -> new_ltEs16(yvy4900, yvy5000, dbg, dad) new_esEs31(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Double, ed) -> new_esEs11(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy49001, yvy50001, ty_Bool) -> new_ltEs6(yvy49001, yvy50001) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs13(yvy400, yvy500) new_esEs30(yvy20, yvy15, ty_Char) -> new_esEs12(yvy20, yvy15) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_ltEs20(yvy49001, yvy50001, app(ty_Ratio, bhf)) -> new_ltEs9(yvy49001, yvy50001, bhf) new_primCompAux0(yvy200, LT) -> LT new_gt(h) -> new_esEs8(new_compare33(h), GT) new_splitLT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_Either, dbc), dbd), dad) -> new_ltEs16(yvy49000, yvy50000, dbc, dbd) new_not(True) -> False 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_ltEs18(yvy49002, yvy50002, ty_Ordering) -> new_ltEs13(yvy49002, yvy50002) new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Just(yvy300), new_esEs31(yvy400, yvy300, h), h), LT), h, ba) new_lt9(yvy49000, yvy50000, app(ty_[], ff)) -> new_lt15(yvy49000, yvy50000, ff) new_ltEs19(yvy4900, yvy5000, ty_Bool) -> new_ltEs6(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, ty_Double) -> new_esEs11(yvy20, yvy15) 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_esEs8(new_compare26(Just(yvy400), Just(yvy500), new_esEs29(yvy400, yvy500, h), h), LT), h, ba) new_esEs28(yvy49000, yvy50000, ty_Float) -> new_esEs13(yvy49000, yvy50000) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(app(ty_Either, dcf), dcg)) -> new_ltEs16(yvy49000, yvy50000, dcf, dcg) new_esEs32(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) new_esEs15(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ef) -> new_asAs(new_esEs22(yvy4000, yvy3000, ef), new_esEs21(yvy4001, yvy3001, ef)) new_splitGT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_esEs30(yvy20, yvy15, app(ty_Ratio, bga)) -> new_esEs15(yvy20, yvy15, bga) new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_ltEs16(Left(yvy49000), Right(yvy50000), dbg, dad) -> True 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_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 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_esEs8(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) new_gt1(yvy400, h) -> new_esEs8(new_compare32(yvy400, h), GT) new_splitGT5(EmptyFM, yvy400, h, ba) -> new_emptyFM(h, ba) new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bca, bcb) -> new_splitGT5(yvy19, yvy20, bca, bcb) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy34 new_esEs24(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_esEs25(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) 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_compare10(yvy49000, yvy50000, True, eg, eh) -> LT new_splitLT16(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy33 new_ltEs18(yvy49002, yvy50002, app(ty_[], he)) -> new_ltEs11(yvy49002, yvy50002, he) new_compare26(Nothing, Nothing, False, ddb) -> LT new_esEs6(Left(yvy4000), Left(yvy3000), ty_Int, ed) -> new_esEs14(yvy4000, yvy3000) 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_esEs31(yvy400, yvy300, ty_Int) -> new_esEs14(yvy400, yvy300) 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(yvy18200), Zero) -> Pos(Succ(yvy18200)) new_compare110(yvy49000, yvy50000, True) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs27(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_Double) -> new_esEs11(yvy4002, yvy3002) new_ltEs6(True, True) -> True new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_[], cah)) -> new_esEs9(yvy4000, yvy3000, cah) new_compare28(yvy49000, yvy50000, app(app(ty_Either, bbd), bbe)) -> new_compare13(yvy49000, yvy50000, bbd, bbe) new_lt20(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_compare15(yvy49000, yvy50000, True, fh, ga) -> LT new_esEs32(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs24(yvy49000, yvy50000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs4(yvy49000, yvy50000, bf, bg, bh) new_esEs23(yvy49001, yvy50001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs4(yvy49001, yvy50001, gd, ge, gf) new_esEs26(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs30(yvy20, yvy15, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs4(yvy20, yvy15, bfa, bfb, bfc) new_primCmpInt(Pos(Succ(yvy4900)), Neg(yvy500)) -> GT 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_ltEs18(yvy49002, yvy50002, ty_Double) -> new_ltEs15(yvy49002, yvy50002) new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Nothing, False, h), GT), h, ba) new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Nothing, False, h), LT), h, ba) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, dac)) -> new_esEs15(yvy4000, yvy3000, dac) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Bool) -> new_esEs10(yvy4000, yvy3000) 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_esEs26(yvy4001, yvy3001, ty_Int) -> new_esEs14(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, app(app(app(ty_@3, gd), ge), gf)) -> new_lt16(yvy49001, yvy50001, gd, ge, gf) new_addToFM_C15(yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba) -> Branch(Just(yvy400), new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_ltEs20(yvy49001, yvy50001, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs12(yvy49001, yvy50001, bhh, caa, cab) new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, beg) -> new_mkVBalBranch0(Just(yvy30), yvy31, yvy33, new_splitLT5(yvy34, yvy35, bb, beg), bb, beg) new_lt9(yvy49000, yvy50000, app(app(ty_Either, eg), eh)) -> new_lt18(yvy49000, yvy50000, eg, eh) 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_esEs29(yvy400, yvy500, ty_Double) -> new_esEs11(yvy400, yvy500) new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_lt18(yvy49000, yvy50000, eg, eh) -> new_esEs8(new_compare13(yvy49000, yvy50000, eg, eh), LT) new_ltEs20(yvy49001, yvy50001, ty_@0) -> new_ltEs5(yvy49001, yvy50001) new_compare5(yvy49000, yvy50000) -> new_compare29(yvy49000, yvy50000, new_esEs8(yvy49000, yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Bool) -> new_ltEs6(yvy49002, yvy50002) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_Maybe, ced)) -> new_esEs5(yvy4000, yvy3000, ced) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, True, h, ba) -> new_mkBranch(Zero, yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) new_lt20(yvy49000, yvy50000, app(ty_[], bge)) -> new_lt15(yvy49000, yvy50000, bge) new_compare210(yvy49000, yvy50000, False) -> new_compare113(yvy49000, yvy50000, new_ltEs6(yvy49000, yvy50000)) new_esEs29(yvy400, yvy500, app(app(app(ty_@3, df), dg), dh)) -> new_esEs4(yvy400, yvy500, df, dg, dh) 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_ltEs13(LT, GT) -> True new_ltEs19(yvy4900, yvy5000, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs12(yvy4900, yvy5000, fb, fc, fd) new_compare210(yvy49000, yvy50000, True) -> EQ new_esEs28(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_gt0(yvy300, h) -> new_esEs8(new_compare31(yvy300, h), GT) new_lt20(yvy49000, yvy50000, app(app(ty_@2, bhd), bhe)) -> new_lt19(yvy49000, yvy50000, bhd, bhe) 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_compare7(yvy49000, yvy50000, bf, bg, bh) -> new_compare24(yvy49000, yvy50000, new_esEs4(yvy49000, yvy50000, bf, bg, bh), bf, bg, bh) new_esEs27(yvy4000, yvy3000, app(app(ty_@2, bea), beb)) -> new_esEs7(yvy4000, yvy3000, bea, beb) new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_pePe(False, yvy195) -> yvy195 new_esEs28(yvy49000, yvy50000, ty_Double) -> new_esEs11(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs4(yvy4001, yvy3001, cga, cgb, cgc) new_lt20(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_ltEs18(yvy49002, yvy50002, ty_@0) -> new_ltEs5(yvy49002, yvy50002) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(app(ty_@2, dch), dda)) -> new_ltEs17(yvy49000, yvy50000, dch, dda) new_compare25(yvy49000, yvy50000, True, eg, eh) -> EQ 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, beg) -> yvy33 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs17(yvy400, yvy500) new_esEs6(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cdb), ed) -> new_esEs5(yvy4000, yvy3000, cdb) 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(yvy18200), Succ(yvy18100)) -> new_primMinusNat0(yvy18200, yvy18100) 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_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Maybe, dbb), dad) -> new_ltEs4(yvy49000, yvy50000, dbb) new_compare32(yvy400, h) -> new_compare26(Just(yvy400), Nothing, False, h) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Ordering, ed) -> new_esEs8(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Integer) -> new_compare14(new_sr0(yvy49000, yvy50001), new_sr0(yvy50000, yvy49001)) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_ltEs8(yvy4900, yvy5000) -> new_fsEs(new_compare14(yvy4900, yvy5000)) new_gt2(yvy35, yvy30, bb) -> new_esEs8(new_compare30(yvy35, yvy30, bb), GT) new_esEs9(:(yvy4000, yvy4001), [], de) -> False new_esEs9([], :(yvy3000, yvy3001), de) -> False new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_addToFM0(yvy51, yvy41, ba) -> yvy41 new_lt9(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_[], bcc)) -> new_esEs9(yvy4001, yvy3001, bcc) new_esEs28(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_ltEs18(yvy49002, yvy50002, ty_Float) -> new_ltEs10(yvy49002, yvy50002) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ccc), ccd), cce), ed) -> new_esEs4(yvy4000, yvy3000, ccc, ccd, cce) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs18(yvy4002, yvy3002, ty_@0) -> new_esEs16(yvy4002, yvy3002) new_ltEs20(yvy49001, yvy50001, app(app(ty_Either, cad), cae)) -> new_ltEs16(yvy49001, yvy50001, cad, cae) new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 new_ltEs18(yvy49002, yvy50002, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs12(yvy49002, yvy50002, hf, hg, hh) 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_mkBalBranch6Size_r(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy54, h, ba) new_esEs26(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_esEs10(False, False) -> True new_esEs5(Nothing, Nothing, ee) -> True new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy67, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba) -> error([]) new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bca, bcb) -> new_mkVBalBranch0(Just(yvy15), yvy16, new_splitGT5(yvy18, yvy20, bca, bcb), yvy19, bca, bcb) 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_compare33(h) -> new_compare26(Nothing, Nothing, True, h) new_mkBranch(yvy217, yvy218, yvy219, yvy220, yvy221, bc, bd) -> Branch(yvy218, yvy219, new_mkBranchUnbox(yvy220, yvy218, yvy221, new_ps(new_ps(Pos(Succ(Zero)), new_sizeFM1(yvy220, bc, bd)), new_sizeFM1(yvy221, bc, bd)), bc, bd), yvy220, yvy221) new_ltEs6(False, False) -> True new_splitGT14(yvy31, yvy32, yvy33, yvy34, False, h, ba) -> yvy34 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs25(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs5(Nothing, Just(yvy3000), ee) -> False new_esEs5(Just(yvy4000), Nothing, ee) -> False new_splitLT16(yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_esEs5(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cbf), cbg)) -> new_esEs6(yvy4000, yvy3000, cbf, cbg) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Char) -> new_ltEs14(yvy4900, yvy5000) new_lt9(yvy49000, yvy50000, ty_Integer) -> new_lt13(yvy49000, yvy50000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 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_lt6(yvy49000, yvy50000) -> new_esEs8(new_compare8(yvy49000, yvy50000), LT) new_ltEs20(yvy49001, yvy50001, ty_Double) -> new_ltEs15(yvy49001, yvy50001) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs24(yvy49000, yvy50000, app(app(ty_Either, eg), eh)) -> new_esEs6(yvy49000, yvy50000, eg, eh) new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), h, ba) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Nothing, h, ba) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cch), cda), ed) -> new_esEs6(yvy4000, yvy3000, cch, cda) new_ps(Neg(yvy1820), Neg(yvy1810)) -> Neg(new_primPlusNat1(yvy1820, yvy1810)) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Double, dad) -> new_ltEs15(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_compare6(:%(yvy49000, yvy49001), :%(yvy50000, yvy50001), ty_Int) -> new_compare12(new_sr(yvy49000, yvy50001), new_sr(yvy50000, yvy49001)) 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_lt8(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_esEs32(yvy400, yvy300, app(ty_Maybe, ee)) -> new_esEs5(yvy400, yvy300, ee) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_compare26(Just(yvy4900), Just(yvy5000), False, ddb) -> new_compare111(yvy4900, yvy5000, new_ltEs19(yvy4900, yvy5000, ddb), ddb) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 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_ltEs15(yvy4900, yvy5000) -> new_fsEs(new_compare17(yvy4900, yvy5000)) new_esEs31(yvy400, yvy300, app(app(app(ty_@3, df), dg), dh)) -> new_esEs4(yvy400, yvy300, df, dg, dh) new_esEs24(yvy49000, yvy50000, ty_Char) -> new_esEs12(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_Either, da), db)) -> new_ltEs16(yvy49000, yvy50000, da, db) new_compare26(yvy490, yvy500, True, ddb) -> EQ new_esEs23(yvy49001, yvy50001, app(ty_Maybe, gg)) -> new_esEs5(yvy49001, yvy50001, gg) new_lt10(yvy49001, yvy50001, app(ty_[], gc)) -> new_lt15(yvy49001, yvy50001, gc) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Int, dad) -> new_ltEs7(yvy49000, yvy50000) new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, new_splitGT4(yvy33, h, ba), yvy34, h, ba) new_lt20(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, ty_Bool) -> new_esEs10(yvy49001, yvy50001) new_esEs6(Left(yvy4000), Left(yvy3000), app(app(ty_@2, ccf), ccg), ed) -> new_esEs7(yvy4000, yvy3000, ccf, ccg) new_lt16(yvy49000, yvy50000, bf, bg, bh) -> new_esEs8(new_compare7(yvy49000, yvy50000, bf, bg, bh), LT) new_esEs18(yvy4002, yvy3002, ty_Integer) -> new_esEs17(yvy4002, yvy3002) new_lt14(yvy49000, yvy50000) -> new_esEs8(new_compare18(yvy49000, yvy50000), LT) new_ltEs6(True, False) -> False new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_mkVBalBranch0(Just(yvy300), yvy31, yvy33, new_splitLT4(yvy34, h, ba), h, ba) new_esEs8(LT, LT) -> True new_esEs5(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(app(ty_@3, dag), dah), dba), dad) -> new_ltEs12(yvy49000, yvy50000, dag, dah, dba) 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_lt8(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_esEs24(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(GT, LT) -> False new_esEs6(Left(yvy4000), Left(yvy3000), ty_Char, ed) -> new_esEs12(yvy4000, yvy3000) new_mkBranchUnbox(yvy220, yvy218, yvy221, yvy225, bc, bd) -> yvy225 new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs4(yvy4000, yvy3000, chc, chd, che) new_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs30(yvy20, yvy15, ty_@0) -> new_esEs16(yvy20, yvy15) new_esEs31(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_esEs24(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) 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_esEs30(yvy20, yvy15, ty_Integer) -> new_esEs17(yvy20, yvy15) 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_lt9(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs23(yvy49001, yvy50001, app(ty_Ratio, gb)) -> new_esEs15(yvy49001, yvy50001, gb) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_ltEs20(yvy49001, yvy50001, ty_Float) -> new_ltEs10(yvy49001, yvy50001) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Integer) -> new_ltEs8(yvy49000, yvy50000) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_esEs31(yvy400, yvy300, ty_@0) -> new_esEs16(yvy400, yvy300) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) new_lt10(yvy49001, yvy50001, ty_@0) -> new_lt11(yvy49001, yvy50001) new_lt9(yvy49000, yvy50000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt16(yvy49000, yvy50000, bf, bg, bh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(ty_[], cdd)) -> new_esEs9(yvy4000, yvy3000, cdd) new_esEs9(:(yvy4000, yvy4001), :(yvy3000, yvy3001), de) -> new_asAs(new_esEs25(yvy4000, yvy3000, de), new_esEs9(yvy4001, yvy3001, de)) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_ltEs19(yvy4900, yvy5000, ty_Float) -> new_ltEs10(yvy4900, yvy5000) new_primCmpInt(Pos(Zero), Pos(Succ(yvy5000))) -> new_primCmpNat0(Zero, Succ(yvy5000)) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cca)) -> new_esEs15(yvy4000, yvy3000, cca) new_esEs25(yvy4000, yvy3000, app(app(ty_@2, ddh), dea)) -> new_esEs7(yvy4000, yvy3000, ddh, dea) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bb, beg) -> new_splitLT15(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bb), bb, beg) new_lt20(yvy49000, yvy50000, app(ty_Ratio, bgd)) -> new_lt5(yvy49000, yvy50000, bgd) new_esEs25(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) 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_compare28(yvy49000, yvy50000, ty_Float) -> new_compare18(yvy49000, yvy50000) new_compare([], :(yvy50000, yvy50001), fa) -> LT new_ltEs13(GT, EQ) -> False new_ltEs18(yvy49002, yvy50002, ty_Integer) -> new_ltEs8(yvy49002, yvy50002) new_esEs32(yvy400, yvy300, app(app(app(ty_@3, df), dg), dh)) -> new_esEs4(yvy400, yvy300, df, dg, dh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_@2, cdh), cea)) -> new_esEs7(yvy4000, yvy3000, cdh, cea) new_mkBalBranch(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy67, yvy54, new_lt8(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_esEs26(yvy4001, yvy3001, ty_Double) -> new_esEs11(yvy4001, yvy3001) new_esEs5(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbh)) -> new_esEs5(yvy4000, yvy3000, cbh) 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_ltEs18(yvy49002, yvy50002, ty_Char) -> new_ltEs14(yvy49002, yvy50002) new_ltEs9(yvy4900, yvy5000, ddc) -> new_fsEs(new_compare6(yvy4900, yvy5000, ddc)) new_esEs23(yvy49001, yvy50001, ty_Ordering) -> new_esEs8(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, ty_Int) -> new_esEs14(yvy49001, yvy50001) new_esEs23(yvy49001, yvy50001, app(app(ty_Either, gh), ha)) -> new_esEs6(yvy49001, yvy50001, gh, ha) new_esEs24(yvy49000, yvy50000, app(ty_[], ff)) -> new_esEs9(yvy49000, yvy50000, ff) new_compare29(yvy49000, yvy50000, False) -> new_compare110(yvy49000, yvy50000, new_ltEs13(yvy49000, yvy50000)) new_esEs26(yvy4001, yvy3001, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs4(yvy4001, yvy3001, bcd, bce, bcf) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_esEs12(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_compare31(yvy300, h) -> new_compare26(Nothing, Just(yvy300), False, h) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs13(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, app(app(ty_Either, ceb), cec)) -> new_esEs6(yvy4000, yvy3000, ceb, cec) new_ltEs16(Left(yvy49000), Left(yvy50000), app(app(ty_@2, dbe), dbf), dad) -> new_ltEs17(yvy49000, yvy50000, dbe, dbf) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_esEs26(yvy4001, yvy3001, app(ty_Ratio, bdd)) -> new_esEs15(yvy4001, yvy3001, bdd) new_esEs28(yvy49000, yvy50000, ty_Int) -> new_esEs14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_[], cfh)) -> new_esEs9(yvy4001, yvy3001, cfh) new_esEs27(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_sr0(Integer(yvy490000), Integer(yvy500010)) -> Integer(new_primMulInt(yvy490000, yvy500010)) new_esEs29(yvy400, yvy500, app(ty_Maybe, ee)) -> new_esEs5(yvy400, yvy500, ee) new_esEs27(yvy4000, yvy3000, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs5(yvy4900, yvy5000) -> new_fsEs(new_compare19(yvy4900, yvy5000)) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs10(yvy400, yvy500) new_splitLT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT16(yvy31, yvy32, yvy33, yvy34, new_gt(h), h, ba) new_compare24(yvy49000, yvy50000, True, bf, bg, bh) -> EQ new_lt5(yvy49000, yvy50000, be) -> new_esEs8(new_compare6(yvy49000, yvy50000, be), LT) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs10(yvy4001, yvy3001) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Double) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, cgh)) -> new_esEs5(yvy4001, yvy3001, cgh) new_esEs31(yvy400, yvy300, app(ty_[], de)) -> new_esEs9(yvy400, yvy300, de) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Integer, dad) -> new_ltEs8(yvy49000, yvy50000) new_ltEs19(yvy4900, yvy5000, ty_Integer) -> new_ltEs8(yvy4900, yvy5000) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs16(yvy400, yvy500) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(ty_@2, dc), dd)) -> new_ltEs17(yvy49000, yvy50000, dc, dd) new_asAs(True, yvy175) -> yvy175 new_lt10(yvy49001, yvy50001, ty_Bool) -> new_lt12(yvy49001, yvy50001) new_esEs25(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Float) -> new_esEs13(yvy4001, yvy3001) 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_esEs7(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ea, eb) -> new_asAs(new_esEs27(yvy4000, yvy3000, ea), new_esEs26(yvy4001, yvy3001, eb)) new_compare10(yvy49000, yvy50000, False, eg, eh) -> GT new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_splitLT5(yvy33, yvy400, h, ba) new_compare113(yvy49000, yvy50000, True) -> LT new_esEs32(yvy400, yvy300, app(ty_Ratio, ef)) -> new_esEs15(yvy400, yvy300, ef) new_ps(Pos(yvy1820), Pos(yvy1810)) -> Pos(new_primPlusNat1(yvy1820, yvy1810)) new_compare9(yvy49000, yvy50000, fg) -> new_compare26(yvy49000, yvy50000, new_esEs5(yvy49000, yvy50000, fg), fg) new_ltEs16(Right(yvy49000), Left(yvy50000), dbg, dad) -> False new_esEs25(yvy4000, yvy3000, app(ty_[], ddd)) -> new_esEs9(yvy4000, yvy3000, ddd) new_esEs5(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs4(yvy4000, yvy3000, cba, cbb, cbc) new_esEs6(Left(yvy4000), Right(yvy3000), ec, ed) -> False new_esEs6(Right(yvy4000), Left(yvy3000), ec, ed) -> False new_ltEs4(Nothing, Just(yvy50000), ca) -> True new_esEs20(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs5(yvy4000, yvy3000, dab) new_esEs16(@0, @0) -> 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_esEs26(yvy4001, yvy3001, ty_Integer) -> new_esEs17(yvy4001, yvy3001) new_ltEs18(yvy49002, yvy50002, app(ty_Maybe, baa)) -> new_ltEs4(yvy49002, yvy50002, baa) new_addToFM_C0(Branch(Just(yvy500), yvy51, yvy52, yvy53, yvy54), Nothing, yvy41, h, ba) -> new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, new_esEs8(new_compare26(Nothing, Just(yvy500), False, h), LT), h, ba) new_ltEs19(yvy4900, yvy5000, ty_Double) -> new_ltEs15(yvy4900, yvy5000) new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(ty_[], dca)) -> new_ltEs11(yvy49000, yvy50000, dca) new_ltEs20(yvy49001, yvy50001, ty_Char) -> new_ltEs14(yvy49001, yvy50001) 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_lt8(new_sizeFM(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy544, h, ba))), h, ba) new_compare28(yvy49000, yvy50000, app(ty_Maybe, bbc)) -> new_compare9(yvy49000, yvy50000, bbc) new_ltEs20(yvy49001, yvy50001, ty_Integer) -> new_ltEs8(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Float) -> new_esEs13(yvy400, yvy300) new_esEs18(yvy4002, yvy3002, app(app(ty_@2, cfb), cfc)) -> new_esEs7(yvy4002, yvy3002, cfb, cfc) new_esEs20(yvy4000, yvy3000, app(ty_[], chb)) -> new_esEs9(yvy4000, yvy3000, chb) new_esEs24(yvy49000, yvy50000, app(app(ty_@2, fh), ga)) -> new_esEs7(yvy49000, yvy50000, fh, ga) new_esEs30(yvy20, yvy15, app(app(ty_@2, bfd), bfe)) -> new_esEs7(yvy20, yvy15, bfd, bfe) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Char, dad) -> new_ltEs14(yvy49000, yvy50000) new_primCmpInt(Pos(Succ(yvy4900)), Pos(yvy500)) -> new_primCmpNat0(Succ(yvy4900), yvy500) new_compare110(yvy49000, yvy50000, False) -> GT new_compare30(yvy20, yvy15, bca) -> new_compare26(Just(yvy20), Just(yvy15), new_esEs30(yvy20, yvy15, bca), bca) new_compare8(Char(yvy49000), Char(yvy50000)) -> new_primCmpNat0(yvy49000, yvy50000) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 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_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_Ratio, dae), dad) -> new_ltEs9(yvy49000, yvy50000, dae) new_esEs23(yvy49001, yvy50001, ty_Double) -> new_esEs11(yvy49001, yvy50001) new_esEs32(yvy400, yvy300, ty_Integer) -> new_esEs17(yvy400, yvy300) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_Ratio, cb)) -> new_ltEs9(yvy49000, yvy50000, cb) new_ltEs11(yvy4900, yvy5000, fa) -> new_fsEs(new_compare(yvy4900, yvy5000, fa)) new_primMulNat0(Zero, Zero) -> Zero new_compare28(yvy49000, yvy50000, ty_Int) -> new_compare12(yvy49000, yvy50000) new_esEs27(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_esEs23(yvy49001, yvy50001, ty_Char) -> new_esEs12(yvy49001, yvy50001) new_esEs24(yvy49000, yvy50000, app(ty_Maybe, fg)) -> new_esEs5(yvy49000, yvy50000, fg) new_esEs30(yvy20, yvy15, app(ty_Maybe, bfh)) -> new_esEs5(yvy20, yvy15, bfh) new_splitGT30(Nothing, yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT14(yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare33(h), LT), h, ba) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs12(yvy49000, yvy50000, dcb, dcc, dcd) new_esEs26(yvy4001, yvy3001, app(app(ty_Either, bda), bdb)) -> new_esEs6(yvy4001, yvy3001, bda, bdb) new_esEs32(yvy400, yvy300, app(app(ty_Either, ec), ed)) -> new_esEs6(yvy400, yvy300, ec, ed) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT new_esEs23(yvy49001, yvy50001, app(app(ty_@2, hb), hc)) -> new_esEs7(yvy49001, yvy50001, hb, hc) new_lt10(yvy49001, yvy50001, app(ty_Ratio, gb)) -> new_lt5(yvy49001, yvy50001, gb) new_splitGT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bca, bcb) -> new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_esEs8(new_compare30(yvy20, yvy15, bca), LT), bca, bcb) new_ltEs16(Left(yvy49000), Left(yvy50000), app(ty_[], daf), dad) -> new_ltEs11(yvy49000, yvy50000, daf) new_esEs27(yvy4000, yvy3000, ty_Float) -> new_esEs13(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_splitGT23(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, h), LT), h, ba) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Bool, ed) -> new_esEs10(yvy4000, yvy3000) new_primCompAux1(yvy49000, yvy50000, yvy196, fa) -> new_primCompAux0(yvy196, new_compare28(yvy49000, yvy50000, fa)) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(ty_Ratio, dbh)) -> new_ltEs9(yvy49000, yvy50000, dbh) new_lt10(yvy49001, yvy50001, ty_Int) -> new_lt8(yvy49001, yvy50001) new_esEs31(yvy400, yvy300, ty_Bool) -> new_esEs10(yvy400, yvy300) new_esEs31(yvy400, yvy300, app(ty_Maybe, ee)) -> new_esEs5(yvy400, yvy300, ee) new_compare28(yvy49000, yvy50000, ty_@0) -> new_compare19(yvy49000, yvy50000) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy67, yvy54, False, h, ba) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy67, yvy54, app(ty_Maybe, h), ba) new_ltEs18(yvy49002, yvy50002, app(app(ty_Either, bab), bac)) -> new_ltEs16(yvy49002, yvy50002, bab, bac) new_ltEs13(EQ, LT) -> False new_esEs31(yvy400, yvy300, app(app(ty_Either, ec), ed)) -> new_esEs6(yvy400, yvy300, ec, ed) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs12(yvy4000, yvy3000) new_lt20(yvy49000, yvy50000, ty_Ordering) -> new_lt4(yvy49000, yvy50000) 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_esEs25(yvy4000, yvy3000, app(ty_Maybe, ded)) -> new_esEs5(yvy4000, yvy3000, ded) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Float, dad) -> new_ltEs10(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, cgf), cgg)) -> new_esEs6(yvy4001, yvy3001, cgf, cgg) new_lt10(yvy49001, yvy50001, ty_Ordering) -> new_lt4(yvy49001, yvy50001) new_ltEs6(False, True) -> True new_esEs25(yvy4000, yvy3000, app(app(ty_Either, deb), dec)) -> new_esEs6(yvy4000, yvy3000, deb, dec) 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_esEs32(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_primCompAux0(yvy200, EQ) -> yvy200 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_compare11(yvy49000, yvy50000, fh, ga) -> new_compare27(yvy49000, yvy50000, new_esEs7(yvy49000, yvy50000, fh, ga), fh, ga) new_compare26(Just(yvy4900), Nothing, False, ddb) -> GT new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) 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_lt10(yvy49001, yvy50001, app(app(ty_@2, hb), hc)) -> new_lt19(yvy49001, yvy50001, hb, hc) new_esEs18(yvy4002, yvy3002, app(ty_Maybe, cff)) -> new_esEs5(yvy4002, yvy3002, cff) 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_compare([], [], fa) -> EQ new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs10(yvy4000, yvy3000) 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_lt8(new_sizeFM(yvy674, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy673, h, ba))), h, ba) new_esEs14(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt9(yvy49000, yvy50000, ty_@0) -> new_lt11(yvy49000, yvy50000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(Nothing, Just(yvy300), False, h), GT), h, ba) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Float) -> new_ltEs10(yvy49000, yvy50000) new_compare25(yvy49000, yvy50000, False, eg, eh) -> new_compare10(yvy49000, yvy50000, new_ltEs16(yvy49000, yvy50000, eg, eh), eg, eh) new_esEs28(yvy49000, yvy50000, app(app(ty_@2, bhd), bhe)) -> new_esEs7(yvy49000, yvy50000, bhd, bhe) new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitLT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_gt0(yvy300, h), h, ba) new_esEs20(yvy4000, yvy3000, app(app(ty_Either, chh), daa)) -> new_esEs6(yvy4000, yvy3000, chh, daa) new_ltEs19(yvy4900, yvy5000, ty_Ordering) -> new_ltEs13(yvy4900, yvy5000) new_splitLT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Nothing, h, ba) -> new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare26(Nothing, Just(yvy300), False, h), LT), h, ba) new_addToFM_C13(yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_compare13(yvy49000, yvy50000, eg, eh) -> new_compare25(yvy49000, yvy50000, new_esEs6(yvy49000, yvy50000, eg, eh), eg, eh) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare28(yvy49000, yvy50000, app(app(ty_@2, bbf), bbg)) -> new_compare11(yvy49000, yvy50000, bbf, bbg) new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs31(yvy400, yvy300, app(ty_Ratio, ef)) -> new_esEs15(yvy400, yvy300, ef) new_esEs25(yvy4000, yvy3000, app(ty_Ratio, dee)) -> new_esEs15(yvy4000, yvy3000, dee) new_lt9(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_lt9(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_lt9(yvy49000, yvy50000, app(ty_Maybe, fg)) -> new_lt7(yvy49000, yvy50000, fg) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, cha)) -> new_esEs15(yvy4001, yvy3001, cha) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_mkBalBranch6Size_l(yvy50, yvy51, yvy67, yvy54, h, ba) -> new_sizeFM(yvy67, h, ba) new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> yvy33 new_esEs28(yvy49000, yvy50000, app(ty_Maybe, bha)) -> new_esEs5(yvy49000, yvy50000, bha) new_compare111(yvy168, yvy169, False, bbh) -> GT new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs14(yvy400, yvy500) new_ltEs20(yvy49001, yvy50001, ty_Ordering) -> new_ltEs13(yvy49001, yvy50001) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_@0) -> new_ltEs5(yvy49000, yvy50000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Float, ed) -> new_esEs13(yvy4000, yvy3000) new_sizeFM1(EmptyFM, bc, bd) -> 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_esEs28(yvy49000, yvy50000, ty_Bool) -> new_esEs10(yvy49000, yvy50000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_esEs23(yvy49001, yvy50001, ty_Float) -> new_esEs13(yvy49001, yvy50001) new_compare28(yvy49000, yvy50000, ty_Integer) -> new_compare14(yvy49000, yvy50000) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, cgd), cge)) -> new_esEs7(yvy4001, yvy3001, cgd, cge) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_esEs27(yvy4000, yvy3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs4(yvy4000, yvy3000, bdf, bdg, bdh) new_splitLT24(yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba) -> new_splitLT14(yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, h), h, ba) new_lt20(yvy49000, yvy50000, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt16(yvy49000, yvy50000, bgf, bgg, bgh) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_Ordering, dad) -> new_ltEs13(yvy49000, yvy50000) new_not(False) -> True new_compare28(yvy49000, yvy50000, ty_Double) -> new_compare17(yvy49000, yvy50000) new_compare112(yvy49000, yvy50000, True, bf, bg, bh) -> LT new_compare17(Double(yvy49000, Pos(yvy490010)), Double(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare17(Double(yvy49000, Neg(yvy490010)), Double(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) 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_esEs31(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) new_ltEs20(yvy49001, yvy50001, app(app(ty_@2, caf), cag)) -> new_ltEs17(yvy49001, yvy50001, caf, cag) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Double) -> new_ltEs15(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(ty_[], de)) -> new_esEs9(yvy400, yvy300, de) new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, False, h, ba) -> new_splitGT13(yvy300, yvy31, yvy32, yvy33, yvy34, new_esEs8(new_compare31(yvy300, h), LT), h, ba) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(yvy49000, yvy50000, True) -> EQ new_ltEs13(LT, LT) -> True new_esEs29(yvy400, yvy500, app(app(ty_Either, ec), ed)) -> new_esEs6(yvy400, yvy500, ec, ed) new_gt3(yvy146, yvy145) -> new_esEs8(new_compare12(yvy146, yvy145), GT) new_esEs27(yvy4000, yvy3000, app(ty_Ratio, bef)) -> new_esEs15(yvy4000, yvy3000, bef) 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_esEs6(Left(yvy4000), Left(yvy3000), app(ty_[], ccb), ed) -> new_esEs9(yvy4000, yvy3000, ccb) new_esEs24(yvy49000, yvy50000, ty_@0) -> new_esEs16(yvy49000, yvy50000) new_lt11(yvy49000, yvy50000) -> new_esEs8(new_compare19(yvy49000, yvy50000), LT) new_compare27(yvy49000, yvy50000, False, fh, ga) -> new_compare15(yvy49000, yvy50000, new_ltEs17(yvy49000, yvy50000, fh, ga), fh, ga) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, app(ty_Maybe, dce)) -> new_ltEs4(yvy49000, yvy50000, dce) new_esEs29(yvy400, yvy500, app(ty_Ratio, ef)) -> new_esEs15(yvy400, yvy500, ef) new_compare112(yvy49000, yvy50000, False, bf, bg, bh) -> GT new_compare27(yvy49000, yvy50000, True, fh, ga) -> EQ new_ltEs19(yvy4900, yvy5000, app(app(ty_@2, bgb), bgc)) -> new_ltEs17(yvy4900, yvy5000, bgb, bgc) new_esEs29(yvy400, yvy500, app(app(ty_@2, ea), eb)) -> new_esEs7(yvy400, yvy500, ea, eb) new_esEs10(True, True) -> True new_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_lt20(yvy49000, yvy50000, ty_Int) -> new_lt8(yvy49000, yvy50000) new_esEs26(yvy4001, yvy3001, app(ty_Maybe, bdc)) -> new_esEs5(yvy4001, yvy3001, bdc) new_esEs18(yvy4002, yvy3002, ty_Bool) -> new_esEs10(yvy4002, yvy3002) new_ltEs19(yvy4900, yvy5000, ty_Int) -> new_ltEs7(yvy4900, yvy5000) new_esEs30(yvy20, yvy15, app(app(ty_Either, bff), bfg)) -> new_esEs6(yvy20, yvy15, bff, bfg) new_lt9(yvy49000, yvy50000, ty_Bool) -> new_lt12(yvy49000, yvy50000) new_esEs30(yvy20, yvy15, ty_Int) -> new_esEs14(yvy20, yvy15) new_lt20(yvy49000, yvy50000, app(app(ty_Either, bhb), bhc)) -> new_lt18(yvy49000, yvy50000, bhb, bhc) new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), h, ba) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Nothing, h, ba) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bb, beg) -> new_splitLT5(yvy33, yvy35, bb, beg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare28(yvy49000, yvy50000, ty_Bool) -> new_compare16(yvy49000, yvy50000) new_esEs25(yvy4000, yvy3000, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs4(yvy4000, yvy3000, dde, ddf, ddg) new_lt19(yvy49000, yvy50000, fh, ga) -> new_esEs8(new_compare11(yvy49000, yvy50000, fh, ga), LT) new_lt20(yvy49000, yvy50000, ty_Double) -> new_lt17(yvy49000, yvy50000) new_primPlusNat1(Zero, Zero) -> Zero new_compare24(yvy49000, yvy50000, False, bf, bg, bh) -> new_compare112(yvy49000, yvy50000, new_ltEs12(yvy49000, yvy50000, bf, bg, bh), bf, bg, bh) new_esEs18(yvy4002, yvy3002, ty_Char) -> new_esEs12(yvy4002, yvy3002) new_ps(Pos(yvy1820), Neg(yvy1810)) -> new_primMinusNat0(yvy1820, yvy1810) new_ps(Neg(yvy1820), Pos(yvy1810)) -> new_primMinusNat0(yvy1810, yvy1820) 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(yvy168, yvy169, True, bbh) -> LT new_compare18(Float(yvy49000, Pos(yvy490010)), Float(yvy50000, Neg(yvy500010))) -> new_compare12(new_sr(yvy49000, Pos(yvy500010)), new_sr(Neg(yvy490010), yvy50000)) new_compare18(Float(yvy49000, Neg(yvy490010)), Float(yvy50000, Pos(yvy500010))) -> new_compare12(new_sr(yvy49000, Neg(yvy500010)), new_sr(Pos(yvy490010), yvy50000)) new_esEs26(yvy4001, yvy3001, ty_@0) -> new_esEs16(yvy4001, yvy3001) new_ltEs20(yvy49001, yvy50001, ty_Int) -> new_ltEs7(yvy49001, yvy50001) new_esEs28(yvy49000, yvy50000, app(ty_[], bge)) -> new_esEs9(yvy49000, yvy50000, bge) new_lt20(yvy49000, yvy50000, ty_Float) -> new_lt14(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), app(ty_[], cc)) -> new_ltEs11(yvy49000, yvy50000, cc) new_esEs27(yvy4000, yvy3000, app(app(ty_Either, bec), bed)) -> new_esEs6(yvy4000, yvy3000, bec, bed) new_esEs27(yvy4000, yvy3000, ty_Int) -> new_esEs14(yvy4000, yvy3000) new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitLT4(yvy33, h, ba) new_ltEs18(yvy49002, yvy50002, app(ty_Ratio, hd)) -> new_ltEs9(yvy49002, yvy50002, hd) new_lt4(yvy49000, yvy50000) -> new_esEs8(new_compare5(yvy49000, yvy50000), LT) new_ltEs16(Right(yvy49000), Right(yvy50000), dbg, ty_Int) -> new_ltEs7(yvy49000, yvy50000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Bool) -> new_ltEs6(yvy49000, yvy50000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs25(yvy4000, yvy3000, ty_Integer) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, ty_Bool) -> new_esEs10(yvy20, yvy15) new_ltEs16(Left(yvy49000), Left(yvy50000), ty_@0, dad) -> new_ltEs5(yvy49000, yvy50000) new_esEs18(yvy4002, yvy3002, app(app(ty_Either, cfd), cfe)) -> new_esEs6(yvy4002, yvy3002, cfd, cfe) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_ltEs4(Just(yvy49000), Just(yvy50000), ty_Ordering) -> new_ltEs13(yvy49000, yvy50000) new_lt9(yvy49000, yvy50000, app(ty_Ratio, be)) -> new_lt5(yvy49000, yvy50000, be) new_splitLT4(EmptyFM, h, ba) -> new_emptyFM(h, ba) new_lt10(yvy49001, yvy50001, ty_Char) -> new_lt6(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, ty_Int) -> new_esEs14(yvy4002, yvy3002) new_esEs5(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs11(yvy4000, yvy3000) new_esEs6(Left(yvy4000), Left(yvy3000), ty_Integer, ed) -> new_esEs17(yvy4000, yvy3000) new_esEs31(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_ltEs13(LT, EQ) -> True new_esEs11(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_compare26(Nothing, Just(yvy5000), False, ddb) -> LT new_lt9(yvy49000, yvy50000, app(app(ty_@2, fh), ga)) -> new_lt19(yvy49000, yvy50000, fh, ga) new_splitGT15(yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba) -> new_mkVBalBranch0(Nothing, yvy31, new_splitGT5(yvy33, yvy400, h, ba), yvy34, h, ba) new_ltEs19(yvy4900, yvy5000, app(ty_Ratio, ddc)) -> new_ltEs9(yvy4900, yvy5000, ddc) new_esEs24(yvy49000, yvy50000, ty_Integer) -> new_esEs17(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_primMinusNat0(Zero, Succ(yvy18100)) -> Neg(Succ(yvy18100)) new_ltEs18(yvy49002, yvy50002, app(app(ty_@2, bad), bae)) -> new_ltEs17(yvy49002, yvy50002, bad, bae) new_esEs28(yvy49000, yvy50000, ty_Ordering) -> new_esEs8(yvy49000, yvy50000) new_compare12(yvy49, yvy50) -> new_primCmpInt(yvy49, yvy50) new_esEs13(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs14(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy41, False, h, ba) -> Branch(Nothing, new_addToFM0(yvy51, yvy41, ba), yvy52, yvy53, yvy54) new_compare15(yvy49000, yvy50000, False, fh, ga) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs32(yvy400, yvy300, ty_Char) -> new_esEs12(yvy400, yvy300) new_esEs9([], [], de) -> True new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, True, h, ba) -> new_splitGT4(yvy34, h, ba) new_ltEs19(yvy4900, yvy5000, app(ty_Maybe, ca)) -> new_ltEs4(yvy4900, yvy5000, ca) new_lt20(yvy49000, yvy50000, ty_Char) -> new_lt6(yvy49000, yvy50000) new_esEs28(yvy49000, yvy50000, app(app(ty_Either, bhb), bhc)) -> new_esEs6(yvy49000, yvy50000, bhb, bhc) new_esEs6(Left(yvy4000), Left(yvy3000), ty_@0, ed) -> new_esEs16(yvy4000, yvy3000) new_esEs6(Right(yvy4000), Right(yvy3000), ec, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_[], de)) -> new_esEs9(yvy400, yvy500, de) new_primEqNat0(Zero, Zero) -> True new_splitGT30(Just(yvy300), yvy31, yvy32, yvy33, yvy34, Just(yvy400), h, ba) -> new_splitGT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare26(Just(yvy400), Just(yvy300), new_esEs32(yvy400, yvy300, h), h), GT), h, ba) new_compare28(yvy49000, yvy50000, ty_Char) -> new_compare8(yvy49000, yvy50000) new_esEs32(yvy400, yvy300, app(app(ty_@2, ea), eb)) -> new_esEs7(yvy400, yvy300, ea, eb) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs12(yvy4001, yvy3001) new_ltEs14(yvy4900, yvy5000) -> new_fsEs(new_compare8(yvy4900, yvy5000)) new_lt10(yvy49001, yvy50001, app(app(ty_Either, gh), ha)) -> new_lt18(yvy49001, yvy50001, gh, ha) new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) new_esEs31(yvy400, yvy300, app(app(ty_@2, ea), eb)) -> new_esEs7(yvy400, yvy300, ea, eb) new_esEs32(yvy400, yvy300, ty_Double) -> new_esEs11(yvy400, yvy300) new_compare28(yvy49000, yvy50000, app(app(app(ty_@3, bah), bba), bbb)) -> new_compare7(yvy49000, yvy50000, bah, bba, bbb) new_primCmpInt3(yvy6200, yvy133) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy133) new_asAs(False, yvy175) -> False new_ltEs10(yvy4900, yvy5000) -> new_fsEs(new_compare18(yvy4900, yvy5000)) new_lt13(yvy49000, yvy50000) -> new_esEs8(new_compare14(yvy49000, yvy50000), LT) new_ltEs4(Just(yvy49000), Just(yvy50000), app(app(app(ty_@3, cd), ce), cf)) -> new_ltEs12(yvy49000, yvy50000, cd, ce, cf) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy49000, yvy50000, app(ty_Ratio, bgd)) -> new_esEs15(yvy49000, yvy50000, bgd) new_compare(:(yvy49000, yvy49001), :(yvy50000, yvy50001), fa) -> new_primCompAux1(yvy49000, yvy50000, new_compare(yvy49001, yvy50001, fa), fa) new_esEs4(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), df, dg, dh) -> new_asAs(new_esEs20(yvy4000, yvy3000, df), new_asAs(new_esEs19(yvy4001, yvy3001, dg), new_esEs18(yvy4002, yvy3002, dh))) new_esEs27(yvy4000, yvy3000, app(ty_Maybe, bee)) -> new_esEs5(yvy4000, yvy3000, bee) new_esEs25(yvy4000, yvy3000, ty_@0) -> new_esEs16(yvy4000, yvy3000) new_esEs30(yvy20, yvy15, app(ty_[], beh)) -> new_esEs9(yvy20, yvy15, beh) new_ltEs20(yvy49001, yvy50001, app(ty_Maybe, cac)) -> new_ltEs4(yvy49001, yvy50001, cac) new_esEs25(yvy4000, yvy3000, ty_Float) -> new_esEs13(yvy4000, yvy3000) new_sizeFM1(Branch(yvy2210, yvy2211, yvy2212, yvy2213, yvy2214), bc, bd) -> yvy2212 new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_splitGT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bca, bcb) -> yvy19 new_lt10(yvy49001, yvy50001, app(ty_Maybe, gg)) -> new_lt7(yvy49001, yvy50001, gg) new_ltEs18(yvy49002, yvy50002, ty_Int) -> new_ltEs7(yvy49002, yvy50002) new_compare14(Integer(yvy49000), Integer(yvy50000)) -> new_primCmpInt(yvy49000, yvy50000) new_lt10(yvy49001, yvy50001, ty_Double) -> new_lt17(yvy49001, yvy50001) new_lt10(yvy49001, yvy50001, ty_Float) -> new_lt14(yvy49001, yvy50001) new_esEs18(yvy4002, yvy3002, app(ty_[], cef)) -> new_esEs9(yvy4002, yvy3002, cef) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, chf), chg)) -> new_esEs7(yvy4000, yvy3000, chf, chg) The set Q consists of the following terms: new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_compare30(x0, x1, x2) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_primCmpInt2(x0, x1) new_esEs26(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare26(Nothing, Just(x0), False, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9([], :(x0, x1), x2) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primCompAux0(x0, LT) new_splitGT24(x0, x1, x2, x3, x4, x5, True, x6, x7) new_compare5(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 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_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_compare([], [], x0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_primCmpNat0(Succ(x0), Zero) new_compare29(x0, x1, True) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Int) new_compare16(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs9(x0, x1, x2) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs27(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_primEqInt(Pos(Zero), Pos(Zero)) new_splitLT24(x0, x1, x2, x3, x4, False, x5, x6) new_esEs32(x0, x1, ty_Bool) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_primMinusNat0(Zero, Zero) new_lt10(x0, x1, ty_Double) new_lt10(x0, x1, ty_Char) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_esEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_emptyFM(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs25(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4) new_ltEs13(EQ, EQ) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Int) new_splitLT13(x0, x1, x2, x3, x4, False, x5, x6) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_splitGT14(x0, x1, x2, x3, False, x4, x5) new_sr(x0, x1) new_addToFM_C13(x0, x1, x2, x3, x4, False, x5, x6) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs28(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_compare28(x0, x1, ty_Double) new_splitGT5(EmptyFM, x0, x1, x2) new_compare24(x0, x1, True, x2, x3, x4) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_gt3(x0, x1) new_compare28(x0, x1, app(ty_[], x2)) new_lt17(x0, x1) new_esEs5(Nothing, Nothing, x0) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, False, x2, x3, x4) new_esEs28(x0, x1, ty_Ordering) new_compare110(x0, x1, False) new_lt9(x0, x1, app(ty_Maybe, x2)) new_splitLT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) new_esEs26(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_lt9(x0, x1, ty_Ordering) new_esEs10(True, True) new_esEs26(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_splitGT22(x0, x1, x2, x3, x4, True, x5, x6) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_splitLT14(x0, x1, x2, x3, x4, True, x5, x6) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_[], x2)) new_splitLT15(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare26(x0, x1, True, x2) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, EQ) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Double) new_lt10(x0, x1, ty_@0) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs18(x0, x1, ty_Integer) new_compare25(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), x1) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_esEs24(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_splitLT13(x0, x1, x2, x3, x4, True, x5, x6) new_esEs32(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt11(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_@0) new_compare210(x0, x1, False) new_esEs9(:(x0, x1), [], x2) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs7(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs24(x0, x1, ty_Int) new_ltEs15(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_splitGT24(x0, x1, x2, x3, x4, x5, False, x6, x7) new_sizeFM1(EmptyFM, x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_gt2(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(Char(x0), Char(x1)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Bool) new_splitLT22(x0, x1, x2, x3, x4, x5, False, x6, x7) new_splitLT4(EmptyFM, x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs14(x0, x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_splitGT13(x0, x1, x2, x3, x4, False, x5, x6) new_esEs23(x0, x1, ty_Float) new_compare11(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, ty_Integer) new_compare28(x0, x1, app(ty_Maybe, x2)) new_compare14(Integer(x0), Integer(x1)) new_lt6(x0, x1) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs14(x0, x1) new_esEs18(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_lt7(x0, x1, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1) new_primCmpInt3(x0, x1) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt10(x0, x1, app(ty_Maybe, x2)) new_splitLT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) new_compare28(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 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_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_@0) new_lt12(x0, x1) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt10(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Char) new_lt19(x0, x1, x2, x3) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs8(GT, GT) new_esEs32(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs23(x0, x1, app(ty_Ratio, x2)) 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_esEs10(False, False) new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_compare28(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 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_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_addToFM_C13(x0, x1, x2, x3, x4, True, x5, x6) new_esEs11(Double(x0, x1), Double(x2, x3)) new_esEs28(x0, x1, ty_@0) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs6(False, False) new_lt20(x0, x1, ty_Float) new_splitGT23(x0, x1, x2, x3, x4, True, x5, x6) new_mkBranchUnbox(x0, x1, x2, x3, x4, x5) new_esEs27(x0, x1, ty_Char) new_ltEs4(Nothing, Just(x0), x1) new_compare26(Just(x0), Just(x1), False, x2) new_splitLT24(x0, x1, x2, x3, x4, True, x5, x6) new_compare19(@0, @0) new_compare33(x0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_esEs19(x0, x1, ty_Double) new_splitGT14(x0, x1, x2, x3, True, x4, x5) new_ltEs4(Just(x0), Just(x1), ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_lt9(x0, x1, ty_Double) new_compare113(x0, x1, True) new_lt9(x0, x1, ty_@0) new_lt18(x0, x1, x2, x3) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_splitLT14(x0, x1, x2, x3, x4, False, x5, x6) new_splitGT22(x0, x1, x2, x3, x4, False, x5, x6) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 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_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs16(@0, @0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_splitLT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) new_ltEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_sizeFM(EmptyFM, x0, x1) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_addToFM_C23(x0, x1, x2, x3, x4, True, x5, x6) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs22(x0, x1, ty_Int) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_gt(x0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_compare9(x0, x1, x2) new_splitGT13(x0, x1, x2, x3, x4, True, x5, x6) new_esEs20(x0, x1, ty_Char) 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_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_splitLT30(Just(x0), x1, x2, x3, x4, Nothing, x5, x6) new_splitGT30(Nothing, x0, x1, x2, x3, Just(x4), x5, x6) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, ty_Int) new_splitLT22(x0, x1, x2, x3, x4, x5, True, x6, x7) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs25(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_compare210(x0, x1, True) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C25(x0, x1, x2, x3, x4, x5, False, x6, x7) new_ltEs19(x0, x1, ty_Double) new_esEs18(x0, x1, ty_Int) new_compare28(x0, x1, ty_Integer) 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_esEs31(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare7(x0, x1, x2, x3, x4) new_esEs18(x0, x1, ty_Double) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_[], x2)) new_addToFM_C14(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs30(x0, x1, ty_Int) new_not(True) new_lt8(x0, x1) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_lt15(x0, x1, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_addToFM_C26(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs13(EQ, GT) new_ps(Neg(x0), Neg(x1)) new_ltEs13(GT, EQ) new_compare28(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primMinusNat0(Succ(x0), Zero) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_splitLT23(x0, x1, x2, x3, x4, True, x5, x6) new_splitLT15(x0, x1, x2, x3, x4, x5, False, x6, x7) new_compare27(x0, x1, False, x2, x3) new_lt9(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_compare10(x0, x1, True, x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare113(x0, x1, False) new_esEs21(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Integer) new_splitGT30(Nothing, x0, x1, x2, x3, Nothing, x4, x5) new_compare112(x0, x1, False, x2, x3, x4) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Float) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_ltEs13(LT, LT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_compare31(x0, x1) new_splitGT16(x0, x1, x2, x3, x4, x5, False, x6, x7) new_lt10(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_splitLT5(EmptyFM, x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_esEs9(:(x0, x1), :(x2, x3), x4) new_esEs19(x0, x1, ty_Ordering) new_pePe(False, x0) new_ltEs6(True, True) new_esEs25(x0, x1, app(ty_[], x2)) new_compare26(Nothing, Nothing, False, x0) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare28(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_splitGT30(Just(x0), x1, x2, x3, x4, Just(x5), x6, x7) new_lt14(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Nothing, x1) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, GT) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare(:(x0, x1), :(x2, x3), x4) new_gt1(x0, x1) new_esEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt4(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(Char(x0), Char(x1)) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs5(Nothing, Just(x0), x1) new_esEs31(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare(:(x0, x1), [], x2) new_addToFM_C23(x0, x1, x2, x3, x4, False, x5, x6) new_compare29(x0, x1, False) new_lt16(x0, x1, x2, x3, x4) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_splitLT16(x0, x1, x2, x3, False, x4, x5) new_addToFM_C15(x0, x1, x2, x3, x4, x5, False, x6, x7) new_ltEs8(x0, x1) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Char) new_ltEs13(GT, GT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs8(LT, GT) new_esEs8(GT, LT) new_compare32(x0, x1) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare26(Just(x0), Nothing, False, x1) new_primMinusNat0(Zero, Succ(x0)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_ltEs10(x0, x1) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Bool) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_fsEs(x0) new_splitGT4(EmptyFM, x0, x1) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt0(x0, x1) new_compare28(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_esEs5(Just(x0), Nothing, x1) new_addToFM(x0, x1, x2, x3, x4) new_compare28(x0, x1, ty_@0) new_splitGT15(x0, x1, x2, x3, x4, False, x5, x6) new_primPlusNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_primEqNat0(Zero, Zero) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ps(Pos(x0), Neg(x1)) new_ps(Neg(x0), Pos(x1)) new_ltEs18(x0, x1, ty_Int) new_compare10(x0, x1, False, x2, x3) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_not(False) new_ps(Pos(x0), Pos(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs20(x0, x1, ty_@0) new_lt9(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_compare111(x0, x1, False, x2) new_esEs24(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs19(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(True, False) new_esEs26(x0, x1, ty_Float) new_ltEs6(False, True) new_esEs30(x0, x1, ty_Integer) new_splitGT23(x0, x1, x2, x3, x4, False, x5, x6) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT16(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs19(x0, x1, ty_Float) new_lt9(x0, x1, ty_Bool) new_compare110(x0, x1, True) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_compare27(x0, x1, True, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_compare25(x0, x1, True, x2, x3) new_ltEs11(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Nothing, Nothing, x0) new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs31(x0, x1, ty_Float) new_esEs29(x0, x1, ty_@0) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare112(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, ty_Char) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_addToFM_C14(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs10(False, True) new_esEs10(True, False) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) 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_esEs19(x0, x1, ty_Int) new_addToFM0(x0, x1, x2) new_esEs30(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Char) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primMulNat0(Zero, Succ(x0)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 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_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs21(x0, x1, ty_Int) new_esEs9([], [], x0) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare12(x0, x1) new_asAs(False, x0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (54) 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 ---------------------------------------- (55) YES ---------------------------------------- (56) 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. ---------------------------------------- (57) 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 ---------------------------------------- (58) YES ---------------------------------------- (59) 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. ---------------------------------------- (60) 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 ---------------------------------------- (61) YES ---------------------------------------- (62) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy18200), Succ(yvy18100)) -> new_primMinusNat(yvy18200, yvy18100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (63) 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(yvy18200), Succ(yvy18100)) -> new_primMinusNat(yvy18200, yvy18100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (64) YES ---------------------------------------- (65) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy14900), Succ(yvy3000000)) -> new_primPlusNat(yvy14900, yvy3000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (66) 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(yvy14900), Succ(yvy3000000)) -> new_primPlusNat(yvy14900, yvy3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (67) YES ---------------------------------------- (68) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> 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_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_lt8(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_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_esEs8(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_lt8(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_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_esEs8(new_primCmpInt1(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_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(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_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_esEs8(LT, LT) -> True 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_primCmpInt2(yvy6200, yvy134) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy134) 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_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare12(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_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False 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_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_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_primCmpInt3(yvy6200, yvy133) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy133) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(GT, GT) -> True new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(EQ, EQ) -> True new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_primPlusNat1(Zero, Zero) -> Zero new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 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_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 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_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Succ(x0), Zero) new_esEs8(EQ, EQ) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt8(x0, x1) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt2(x0, x1) 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_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs8(LT, LT) 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_esEs8(EQ, GT) new_esEs8(GT, EQ) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_esEs8(LT, GT) new_esEs8(GT, LT) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 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_primCmpNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primCmpInt(Pos(Succ(x0)), Pos(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_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs8(GT, GT) 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_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Zero, Succ(x0)) new_compare12(x0, x1) 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. ---------------------------------------- (69) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(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_esEs8(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), 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_esEs8(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba), LT), h, ba) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_3 + x_4 + x_5 POL(EQ) = 1 POL(False) = 0 POL(GT) = 1 POL(LT) = 1 POL(Neg(x_1)) = 1 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 1 POL(Zero) = 0 POL(new_compare12(x_1, x_2)) = 1 + x_1 + x_2 POL(new_esEs8(x_1, x_2)) = x_1 POL(new_lt8(x_1, x_2)) = 0 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_4 + x_5 + x_6 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_14 + x_15 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = 1 + x_1 + x_10 + x_13 + x_14 + x_15 + x_2 + x_3 + x_4 + x_5 + 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)) = x_1 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)) = 1 POL(new_primCmpInt2(x_1, x_2)) = 1 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 POL(new_primCmpNat0(x_1, x_2)) = 1 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_6 + x_7 POL(new_sr(x_1, x_2)) = 0 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: new_esEs8(LT, LT) -> True new_esEs8(EQ, LT) -> False new_esEs8(GT, LT) -> False 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_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_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> GT new_primCmpInt2(yvy6200, yvy134) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy134) new_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Succ(yvy4900)), Neg(yvy500)) -> new_primCmpNat0(yvy500, Succ(yvy4900)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy5000))) -> LT new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt(Neg(Zero), Neg(Succ(yvy5000))) -> new_primCmpNat0(Succ(yvy5000), Zero) new_primCmpNat0(Succ(yvy4900), Succ(yvy5000)) -> new_primCmpNat0(yvy4900, yvy5000) new_primCmpNat0(Zero, Succ(yvy5000)) -> LT new_primCmpNat0(Succ(yvy4900), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ ---------------------------------------- (70) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> 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_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_lt8(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_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_lt8(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_primCmpInt(Neg(Succ(yvy4900)), Pos(yvy500)) -> LT new_primMulNat0(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_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_esEs8(LT, LT) -> True 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_primCmpInt2(yvy6200, yvy134) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy134) 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_primPlusNat1(Succ(yvy14900), Zero) -> Succ(yvy14900) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> EQ new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare12(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_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False 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_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_primPlusNat0(Succ(yvy1490), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy1490, yvy300000))) new_primCmpInt3(yvy6200, yvy133) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy133) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs8(GT, GT) -> True new_lt8(yvy179, yvy178) -> new_esEs8(new_compare12(yvy179, yvy178), LT) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(EQ, EQ) -> True new_primPlusNat1(Succ(yvy14900), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy14900, yvy3000000))) new_primPlusNat1(Zero, Zero) -> Zero new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 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_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba) -> LT 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_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Succ(x0), Zero) new_esEs8(EQ, EQ) new_sizeFM(EmptyFM, x0, x1) new_sIZE_RATIO new_primCmpNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt8(x0, x1) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt2(x0, x1) 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_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs8(LT, LT) 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_esEs8(EQ, GT) new_esEs8(GT, EQ) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat1(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_esEs8(LT, GT) new_esEs8(GT, LT) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 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_primCmpNat0(Succ(x0), Succ(x1)) new_primPlusNat0(Succ(x0), x1) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9) new_primCmpInt(Pos(Succ(x0)), Pos(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_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs8(GT, GT) 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_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primPlusNat1(Zero, Succ(x0)) new_compare12(x0, x1) 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. ---------------------------------------- (71) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 0 SCCs with 6 less nodes. ---------------------------------------- (72) TRUE