/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 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, 2 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) DependencyGraphProof [EQUIVALENT, 0 ms] (31) AND (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPOrderProof [EQUIVALENT, 89 ms] (43) QDP (44) DependencyGraphProof [EQUIVALENT, 0 ms] (45) AND (46) QDP (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] (48) YES (49) QDP (50) QDPOrderProof [EQUIVALENT, 0 ms] (51) QDP (52) DependencyGraphProof [EQUIVALENT, 0 ms] (53) QDP (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] (55) YES (56) QDP (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] (58) YES (59) QDP (60) DependencyGraphProof [EQUIVALENT, 0 ms] (61) AND (62) QDP (63) QDPSizeChangeProof [EQUIVALENT, 0 ms] (64) YES (65) QDP (66) QDPSizeChangeProof [EQUIVALENT, 0 ms] (67) YES (68) QDP (69) QDPSizeChangeProof [EQUIVALENT, 27 ms] (70) YES (71) QDP (72) QDPSizeChangeProof [EQUIVALENT, 0 ms] (73) YES (74) QDP (75) QDPSizeChangeProof [EQUIVALENT, 0 ms] (76) YES (77) QDP (78) QDPSizeChangeProof [EQUIVALENT, 0 ms] (79) YES (80) QDP (81) QDPSizeChangeProof [EQUIVALENT, 0 ms] (82) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ 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 -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord 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 b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "fm_l@(Branch vuv vuw vux vuy vuz)" is replaced by the following term "Branch vuv vuw vux vuy vuz" The bind variable of the following binding Pattern "fm_r@(Branch vvv vvw vvx vvy vvz)" is replaced by the following term "Branch vvv vvw vvx vvy vvz" ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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 = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; " "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wwz wxu = gcd3 wwz wxu; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } ; " "gcd1 True wwz wxu = error []; gcd1 wxv wxw wxx = gcd0 wxw wxx; " "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; gcd2 wxy wxz wyu = gcd0 wxz wyu; " "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; gcd3 wyv wyw = gcd0 wyv wyw; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; " The following Function with conditions "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz)|sIZE_RATIO * size_l < size_rmkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz|sIZE_RATIO * size_r < size_lmkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz))|otherwisemkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " is transformed to "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } ; " "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; " "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; " The following Function with conditions "splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key|split_key > keysplitGT fm_r split_key|split_key < keymkVBalBranch key elt (splitGT fm_l split_key) fm_r|otherwisefm_r; " is transformed to "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; " "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; " "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; " "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); " "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); " "splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; " The following Function with conditions "splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key|split_key < keysplitLT fm_l split_key|split_key > keymkVBalBranch key elt fm_l (splitLT fm_r split_key)|otherwisefm_l; " is transformed to "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; " "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; " "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; " "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); " "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); " "splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap 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 = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); " "reduce2D xxv xxw = gcd xxv xxw; " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); " "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; " "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; " "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; " "mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxy xxz fm_lr fm_r); " "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); " "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxy xxz fm_lrr fm_r); " "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxy xxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxy xxz fm_l fm_rl) fm_rr; " "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; " "mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchLeft_size xyv xyw xyx = sizeFM xyv; " "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyx xyv; " "mkBranchBalance_ok xyv xyw xyx = True; " "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchRight_size xyv xyw xyx = sizeFM xyw; " "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (1 + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) xzu xzv; " The bindings of the following Let/Where expression "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; ; lts = splitLT fm1 split_key; } " are unpacked to the following functions on top level "plusFMLts xzw xzx = splitLT xzw xzx; " "plusFMGts xzw xzx = splitGT xzw xzx; " The bindings of the following Let/Where expression "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } " are unpacked to the following functions on top level "mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); " "mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); " "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); " "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); " "mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; 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 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxy xxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxy xxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxy xxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxy xxz fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyx xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (1 + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyw; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord 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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (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 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xxy xxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xxy xxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xxy xxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xxy xxz fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyx xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvw = fst (findMax yvw); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xzv xyy (Pos (Succ Zero) + mkBranchLeft_size xzu xzv xyy + mkBranchRight_size xzu xzv xyy)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyw xyx xyw; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvx = fst (findMin yvx); mkBranchRight_size xyv xyw xyx = sizeFM xyw; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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 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 (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"];5114[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 5[label="",style="solid", color="burlywood", weight=3]; 5115[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 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"];5116[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 8[label="",style="solid", color="burlywood", weight=3]; 5117[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 9[label="",style="solid", color="burlywood", weight=3]; 7[label="yvy4",fontsize=16,color="green",shape="box"];8[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) (FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43) (FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44)",fontsize=16,color="magenta"];11 -> 13[label="",style="dashed", color="magenta", weight=3]; 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 13 -> 4[label="",style="dashed", color="red", weight=0]; 13[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 14 -> 4[label="",style="dashed", color="red", weight=0]; 14[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];5118[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 5118[label="",style="solid", color="burlywood", weight=9]; 5118 -> 19[label="",style="solid", color="burlywood", weight=3]; 5119[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 5119[label="",style="solid", color="burlywood", weight=9]; 5119 -> 20[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 16[label="yvy43",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 18[label="yvy44",fontsize=16,color="green",shape="box"];19[label="FiniteMap.mkVBalBranch yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];5120[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 5120[label="",style="solid", color="burlywood", weight=9]; 5120 -> 24[label="",style="solid", color="burlywood", weight=3]; 5121[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 5121[label="",style="solid", color="burlywood", weight=9]; 5121 -> 25[label="",style="solid", color="burlywood", weight=3]; 21[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 24[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];24 -> 29[label="",style="solid", color="black", weight=3]; 25[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];25 -> 30[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 27[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.mkVBalBranch4 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];29 -> 34[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.mkVBalBranch3 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];30 -> 35[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="black",shape="box"];31 -> 36[label="",style="solid", color="black", weight=3]; 32[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="black",shape="box"];32 -> 37[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];5122[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 38[label="",style="solid", color="burlywood", weight=3]; 5123[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 39[label="",style="solid", color="burlywood", weight=3]; 34 -> 28[label="",style="dashed", color="red", weight=0]; 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 40[label="",style="dashed", color="magenta", weight=3]; 35[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="black",shape="box"];35 -> 41[label="",style="solid", color="black", weight=3]; 36[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];36 -> 42[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];37 -> 43[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];38 -> 44[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];39 -> 45[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];41[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];41 -> 46[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];42 -> 47[label="",style="solid", color="black", weight=3]; 43[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];43 -> 48[label="",style="solid", color="black", weight=3]; 44[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];44 -> 49[label="",style="solid", color="black", weight=3]; 45[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];45 -> 50[label="",style="solid", color="black", weight=3]; 46[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];46 -> 51[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5124[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 52[label="",style="solid", color="burlywood", weight=3]; 5125[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 53[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5126[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 54[label="",style="solid", color="burlywood", weight=3]; 5127[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 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.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5128[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 59[label="",style="solid", color="burlywood", weight=3]; 5129[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 60[label="",style="solid", color="burlywood", weight=3]; 53[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5130[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 61[label="",style="solid", color="burlywood", weight=3]; 5131[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 62[label="",style="solid", color="burlywood", weight=3]; 54[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5132[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 63[label="",style="solid", color="burlywood", weight=3]; 5133[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 64[label="",style="solid", color="burlywood", weight=3]; 55[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5134[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 65[label="",style="solid", color="burlywood", weight=3]; 5135[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 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.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300) == LT)",fontsize=16,color="black",shape="box"];59 -> 71[label="",style="solid", color="black", weight=3]; 60[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300) == LT)",fontsize=16,color="black",shape="box"];60 -> 72[label="",style="solid", color="black", weight=3]; 61[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300) == LT)",fontsize=16,color="black",shape="box"];61 -> 73[label="",style="solid", color="black", weight=3]; 62[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300) == LT)",fontsize=16,color="black",shape="box"];62 -> 74[label="",style="solid", color="black", weight=3]; 63[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300) == GT)",fontsize=16,color="black",shape="box"];63 -> 75[label="",style="solid", color="black", weight=3]; 64[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300) == GT)",fontsize=16,color="black",shape="box"];64 -> 76[label="",style="solid", color="black", weight=3]; 65[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300) == GT)",fontsize=16,color="black",shape="box"];65 -> 77[label="",style="solid", color="black", weight=3]; 66[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300) == GT)",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 -> 365[label="",style="dashed", color="red", weight=0]; 71[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];71 -> 366[label="",style="dashed", color="magenta", weight=3]; 71 -> 367[label="",style="dashed", color="magenta", weight=3]; 71 -> 368[label="",style="dashed", color="magenta", weight=3]; 71 -> 369[label="",style="dashed", color="magenta", weight=3]; 71 -> 370[label="",style="dashed", color="magenta", weight=3]; 71 -> 371[label="",style="dashed", color="magenta", weight=3]; 71 -> 372[label="",style="dashed", color="magenta", weight=3]; 72 -> 218[label="",style="dashed", color="red", weight=0]; 72[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) False == LT)",fontsize=16,color="magenta"];72 -> 219[label="",style="dashed", color="magenta", weight=3]; 73 -> 226[label="",style="dashed", color="red", weight=0]; 73[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) False == LT)",fontsize=16,color="magenta"];73 -> 227[label="",style="dashed", color="magenta", weight=3]; 74 -> 388[label="",style="dashed", color="red", weight=0]; 74[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];74 -> 389[label="",style="dashed", color="magenta", weight=3]; 74 -> 390[label="",style="dashed", color="magenta", weight=3]; 74 -> 391[label="",style="dashed", color="magenta", weight=3]; 74 -> 392[label="",style="dashed", color="magenta", weight=3]; 74 -> 393[label="",style="dashed", color="magenta", weight=3]; 74 -> 394[label="",style="dashed", color="magenta", weight=3]; 74 -> 395[label="",style="dashed", color="magenta", weight=3]; 75 -> 450[label="",style="dashed", color="red", weight=0]; 75[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];75 -> 451[label="",style="dashed", color="magenta", weight=3]; 75 -> 452[label="",style="dashed", color="magenta", weight=3]; 75 -> 453[label="",style="dashed", color="magenta", weight=3]; 75 -> 454[label="",style="dashed", color="magenta", weight=3]; 75 -> 455[label="",style="dashed", color="magenta", weight=3]; 75 -> 456[label="",style="dashed", color="magenta", weight=3]; 75 -> 457[label="",style="dashed", color="magenta", weight=3]; 76 -> 269[label="",style="dashed", color="red", weight=0]; 76[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) False == GT)",fontsize=16,color="magenta"];76 -> 270[label="",style="dashed", color="magenta", weight=3]; 77 -> 280[label="",style="dashed", color="red", weight=0]; 77[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) False == GT)",fontsize=16,color="magenta"];77 -> 281[label="",style="dashed", color="magenta", weight=3]; 78 -> 474[label="",style="dashed", color="red", weight=0]; 78[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];78 -> 475[label="",style="dashed", color="magenta", weight=3]; 78 -> 476[label="",style="dashed", color="magenta", weight=3]; 78 -> 477[label="",style="dashed", color="magenta", weight=3]; 78 -> 478[label="",style="dashed", color="magenta", weight=3]; 78 -> 479[label="",style="dashed", color="magenta", weight=3]; 78 -> 480[label="",style="dashed", color="magenta", weight=3]; 78 -> 481[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"];5136[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 118[label="",style="solid", color="burlywood", weight=3]; 5137[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 5137[label="",style="solid", color="burlywood", weight=9]; 5137 -> 119[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"];5138[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 120[label="",style="solid", color="burlywood", weight=3]; 5139[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 121[label="",style="solid", color="burlywood", weight=3]; 366[label="yvy300",fontsize=16,color="green",shape="box"];367[label="yvy33",fontsize=16,color="green",shape="box"];368[label="yvy32",fontsize=16,color="green",shape="box"];369[label="yvy34",fontsize=16,color="green",shape="box"];370[label="yvy400",fontsize=16,color="green",shape="box"];371 -> 127[label="",style="dashed", color="red", weight=0]; 371[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];371 -> 376[label="",style="dashed", color="magenta", weight=3]; 371 -> 377[label="",style="dashed", color="magenta", weight=3]; 372[label="yvy31",fontsize=16,color="green",shape="box"];365[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) yvy73",fontsize=16,color="burlywood",shape="triangle"];5140[label="yvy73/False",fontsize=10,color="white",style="solid",shape="box"];365 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 378[label="",style="solid", color="burlywood", weight=3]; 5141[label="yvy73/True",fontsize=10,color="white",style="solid",shape="box"];365 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 379[label="",style="solid", color="burlywood", weight=3]; 219 -> 127[label="",style="dashed", color="red", weight=0]; 219[label="compare2 (Left yvy400) (Right yvy300) False == LT",fontsize=16,color="magenta"];219 -> 222[label="",style="dashed", color="magenta", weight=3]; 219 -> 223[label="",style="dashed", color="magenta", weight=3]; 218[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy67",fontsize=16,color="burlywood",shape="triangle"];5142[label="yvy67/False",fontsize=10,color="white",style="solid",shape="box"];218 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 224[label="",style="solid", color="burlywood", weight=3]; 5143[label="yvy67/True",fontsize=10,color="white",style="solid",shape="box"];218 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 225[label="",style="solid", color="burlywood", weight=3]; 227 -> 127[label="",style="dashed", color="red", weight=0]; 227[label="compare2 (Right yvy400) (Left yvy300) False == LT",fontsize=16,color="magenta"];227 -> 230[label="",style="dashed", color="magenta", weight=3]; 227 -> 231[label="",style="dashed", color="magenta", weight=3]; 226[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy68",fontsize=16,color="burlywood",shape="triangle"];5144[label="yvy68/False",fontsize=10,color="white",style="solid",shape="box"];226 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 232[label="",style="solid", color="burlywood", weight=3]; 5145[label="yvy68/True",fontsize=10,color="white",style="solid",shape="box"];226 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 233[label="",style="solid", color="burlywood", weight=3]; 389[label="yvy31",fontsize=16,color="green",shape="box"];390 -> 127[label="",style="dashed", color="red", weight=0]; 390[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];390 -> 399[label="",style="dashed", color="magenta", weight=3]; 390 -> 400[label="",style="dashed", color="magenta", weight=3]; 391[label="yvy300",fontsize=16,color="green",shape="box"];392[label="yvy34",fontsize=16,color="green",shape="box"];393[label="yvy33",fontsize=16,color="green",shape="box"];394[label="yvy32",fontsize=16,color="green",shape="box"];395[label="yvy400",fontsize=16,color="green",shape="box"];388[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) yvy74",fontsize=16,color="burlywood",shape="triangle"];5146[label="yvy74/False",fontsize=10,color="white",style="solid",shape="box"];388 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 401[label="",style="solid", color="burlywood", weight=3]; 5147[label="yvy74/True",fontsize=10,color="white",style="solid",shape="box"];388 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 402[label="",style="solid", color="burlywood", weight=3]; 451[label="yvy300",fontsize=16,color="green",shape="box"];452[label="yvy32",fontsize=16,color="green",shape="box"];453 -> 127[label="",style="dashed", color="red", weight=0]; 453[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];453 -> 461[label="",style="dashed", color="magenta", weight=3]; 453 -> 462[label="",style="dashed", color="magenta", weight=3]; 454[label="yvy33",fontsize=16,color="green",shape="box"];455[label="yvy400",fontsize=16,color="green",shape="box"];456[label="yvy34",fontsize=16,color="green",shape="box"];457[label="yvy31",fontsize=16,color="green",shape="box"];450[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) yvy89",fontsize=16,color="burlywood",shape="triangle"];5148[label="yvy89/False",fontsize=10,color="white",style="solid",shape="box"];450 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 463[label="",style="solid", color="burlywood", weight=3]; 5149[label="yvy89/True",fontsize=10,color="white",style="solid",shape="box"];450 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 464[label="",style="solid", color="burlywood", weight=3]; 270 -> 127[label="",style="dashed", color="red", weight=0]; 270[label="compare2 (Left yvy400) (Right yvy300) False == GT",fontsize=16,color="magenta"];270 -> 273[label="",style="dashed", color="magenta", weight=3]; 270 -> 274[label="",style="dashed", color="magenta", weight=3]; 269[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy69",fontsize=16,color="burlywood",shape="triangle"];5150[label="yvy69/False",fontsize=10,color="white",style="solid",shape="box"];269 -> 5150[label="",style="solid", color="burlywood", weight=9]; 5150 -> 275[label="",style="solid", color="burlywood", weight=3]; 5151[label="yvy69/True",fontsize=10,color="white",style="solid",shape="box"];269 -> 5151[label="",style="solid", color="burlywood", weight=9]; 5151 -> 276[label="",style="solid", color="burlywood", weight=3]; 281 -> 127[label="",style="dashed", color="red", weight=0]; 281[label="compare2 (Right yvy400) (Left yvy300) False == GT",fontsize=16,color="magenta"];281 -> 284[label="",style="dashed", color="magenta", weight=3]; 281 -> 285[label="",style="dashed", color="magenta", weight=3]; 280[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy70",fontsize=16,color="burlywood",shape="triangle"];5152[label="yvy70/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 5152[label="",style="solid", color="burlywood", weight=9]; 5152 -> 286[label="",style="solid", color="burlywood", weight=3]; 5153[label="yvy70/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 5153[label="",style="solid", color="burlywood", weight=9]; 5153 -> 287[label="",style="solid", color="burlywood", weight=3]; 475[label="yvy33",fontsize=16,color="green",shape="box"];476[label="yvy34",fontsize=16,color="green",shape="box"];477[label="yvy400",fontsize=16,color="green",shape="box"];478[label="yvy300",fontsize=16,color="green",shape="box"];479[label="yvy31",fontsize=16,color="green",shape="box"];480[label="yvy32",fontsize=16,color="green",shape="box"];481 -> 127[label="",style="dashed", color="red", weight=0]; 481[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];481 -> 485[label="",style="dashed", color="magenta", weight=3]; 481 -> 486[label="",style="dashed", color="magenta", weight=3]; 474[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) yvy90",fontsize=16,color="burlywood",shape="triangle"];5154[label="yvy90/False",fontsize=10,color="white",style="solid",shape="box"];474 -> 5154[label="",style="solid", color="burlywood", weight=9]; 5154 -> 487[label="",style="solid", color="burlywood", weight=3]; 5155[label="yvy90/True",fontsize=10,color="white",style="solid",shape="box"];474 -> 5155[label="",style="solid", color="burlywood", weight=9]; 5155 -> 488[label="",style="solid", color="burlywood", weight=3]; 118[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) yvy50 (Left yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];5156[label="yvy50/Left yvy500",fontsize=10,color="white",style="solid",shape="box"];118 -> 5156[label="",style="solid", color="burlywood", weight=9]; 5156 -> 190[label="",style="solid", color="burlywood", weight=3]; 5157[label="yvy50/Right yvy500",fontsize=10,color="white",style="solid",shape="box"];118 -> 5157[label="",style="solid", color="burlywood", weight=9]; 5157 -> 191[label="",style="solid", color="burlywood", weight=3]; 119[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) yvy50 (Right yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];5158[label="yvy50/Left yvy500",fontsize=10,color="white",style="solid",shape="box"];119 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 192[label="",style="solid", color="burlywood", weight=3]; 5159[label="yvy50/Right yvy500",fontsize=10,color="white",style="solid",shape="box"];119 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 193[label="",style="solid", color="burlywood", weight=3]; 120[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"];120 -> 194[label="",style="solid", color="black", weight=3]; 121[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"];121 -> 195[label="",style="solid", color="black", weight=3]; 376[label="LT",fontsize=16,color="green",shape="box"];377 -> 2815[label="",style="dashed", color="red", weight=0]; 377[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];377 -> 2816[label="",style="dashed", color="magenta", weight=3]; 377 -> 2817[label="",style="dashed", color="magenta", weight=3]; 377 -> 2818[label="",style="dashed", color="magenta", weight=3]; 127[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5160[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];127 -> 5160[label="",style="solid", color="burlywood", weight=9]; 5160 -> 203[label="",style="solid", color="burlywood", weight=3]; 5161[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];127 -> 5161[label="",style="solid", color="burlywood", weight=9]; 5161 -> 204[label="",style="solid", color="burlywood", weight=3]; 5162[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];127 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 205[label="",style="solid", color="burlywood", weight=3]; 378[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) False",fontsize=16,color="black",shape="box"];378 -> 407[label="",style="solid", color="black", weight=3]; 379[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];379 -> 408[label="",style="solid", color="black", weight=3]; 222[label="LT",fontsize=16,color="green",shape="box"];223 -> 2815[label="",style="dashed", color="red", weight=0]; 223[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="magenta"];223 -> 2819[label="",style="dashed", color="magenta", weight=3]; 223 -> 2820[label="",style="dashed", color="magenta", weight=3]; 223 -> 2821[label="",style="dashed", color="magenta", weight=3]; 224[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];224 -> 235[label="",style="solid", color="black", weight=3]; 225[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];225 -> 236[label="",style="solid", color="black", weight=3]; 230[label="LT",fontsize=16,color="green",shape="box"];231 -> 2815[label="",style="dashed", color="red", weight=0]; 231[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="magenta"];231 -> 2822[label="",style="dashed", color="magenta", weight=3]; 231 -> 2823[label="",style="dashed", color="magenta", weight=3]; 231 -> 2824[label="",style="dashed", color="magenta", weight=3]; 232[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];232 -> 278[label="",style="solid", color="black", weight=3]; 233[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];233 -> 279[label="",style="solid", color="black", weight=3]; 399[label="LT",fontsize=16,color="green",shape="box"];400 -> 2815[label="",style="dashed", color="red", weight=0]; 400[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];400 -> 2825[label="",style="dashed", color="magenta", weight=3]; 400 -> 2826[label="",style="dashed", color="magenta", weight=3]; 400 -> 2827[label="",style="dashed", color="magenta", weight=3]; 401[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) False",fontsize=16,color="black",shape="box"];401 -> 413[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];402 -> 414[label="",style="solid", color="black", weight=3]; 461[label="GT",fontsize=16,color="green",shape="box"];462 -> 2815[label="",style="dashed", color="red", weight=0]; 462[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];462 -> 2828[label="",style="dashed", color="magenta", weight=3]; 462 -> 2829[label="",style="dashed", color="magenta", weight=3]; 462 -> 2830[label="",style="dashed", color="magenta", weight=3]; 463[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) False",fontsize=16,color="black",shape="box"];463 -> 492[label="",style="solid", color="black", weight=3]; 464[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];464 -> 493[label="",style="solid", color="black", weight=3]; 273[label="GT",fontsize=16,color="green",shape="box"];274 -> 2815[label="",style="dashed", color="red", weight=0]; 274[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="magenta"];274 -> 2831[label="",style="dashed", color="magenta", weight=3]; 274 -> 2832[label="",style="dashed", color="magenta", weight=3]; 274 -> 2833[label="",style="dashed", color="magenta", weight=3]; 275[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];275 -> 288[label="",style="solid", color="black", weight=3]; 276[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];276 -> 289[label="",style="solid", color="black", weight=3]; 284[label="GT",fontsize=16,color="green",shape="box"];285 -> 2815[label="",style="dashed", color="red", weight=0]; 285[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="magenta"];285 -> 2834[label="",style="dashed", color="magenta", weight=3]; 285 -> 2835[label="",style="dashed", color="magenta", weight=3]; 285 -> 2836[label="",style="dashed", color="magenta", weight=3]; 286[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];286 -> 326[label="",style="solid", color="black", weight=3]; 287[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];287 -> 327[label="",style="solid", color="black", weight=3]; 485[label="GT",fontsize=16,color="green",shape="box"];486 -> 2815[label="",style="dashed", color="red", weight=0]; 486[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];486 -> 2837[label="",style="dashed", color="magenta", weight=3]; 486 -> 2838[label="",style="dashed", color="magenta", weight=3]; 486 -> 2839[label="",style="dashed", color="magenta", weight=3]; 487[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) False",fontsize=16,color="black",shape="box"];487 -> 499[label="",style="solid", color="black", weight=3]; 488[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];488 -> 500[label="",style="solid", color="black", weight=3]; 190[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Left yvy500) (Left yvy400 == Left yvy500) == LT)",fontsize=16,color="black",shape="box"];190 -> 320[label="",style="solid", color="black", weight=3]; 191[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Right yvy500) (Left yvy400 == Right yvy500) == LT)",fontsize=16,color="black",shape="box"];191 -> 321[label="",style="solid", color="black", weight=3]; 192[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Left yvy500) (Right yvy400 == Left yvy500) == LT)",fontsize=16,color="black",shape="box"];192 -> 322[label="",style="solid", color="black", weight=3]; 193[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Right yvy500) (Right yvy400 == Right yvy500) == LT)",fontsize=16,color="black",shape="box"];193 -> 323[label="",style="solid", color="black", weight=3]; 194 -> 324[label="",style="dashed", color="red", weight=0]; 194[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"];194 -> 325[label="",style="dashed", color="magenta", weight=3]; 195 -> 328[label="",style="dashed", color="red", weight=0]; 195[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"];195 -> 329[label="",style="dashed", color="magenta", weight=3]; 2816[label="Left yvy400",fontsize=16,color="green",shape="box"];2817[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5163[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5163[label="",style="solid", color="blue", weight=9]; 5163 -> 2877[label="",style="solid", color="blue", weight=3]; 5164[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5164[label="",style="solid", color="blue", weight=9]; 5164 -> 2878[label="",style="solid", color="blue", weight=3]; 5165[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5165[label="",style="solid", color="blue", weight=9]; 5165 -> 2879[label="",style="solid", color="blue", weight=3]; 5166[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5166[label="",style="solid", color="blue", weight=9]; 5166 -> 2880[label="",style="solid", color="blue", weight=3]; 5167[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5167[label="",style="solid", color="blue", weight=9]; 5167 -> 2881[label="",style="solid", color="blue", weight=3]; 5168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5168[label="",style="solid", color="blue", weight=9]; 5168 -> 2882[label="",style="solid", color="blue", weight=3]; 5169[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5169[label="",style="solid", color="blue", weight=9]; 5169 -> 2883[label="",style="solid", color="blue", weight=3]; 5170[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5170[label="",style="solid", color="blue", weight=9]; 5170 -> 2884[label="",style="solid", color="blue", weight=3]; 5171[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5171[label="",style="solid", color="blue", weight=9]; 5171 -> 2885[label="",style="solid", color="blue", weight=3]; 5172[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5172[label="",style="solid", color="blue", weight=9]; 5172 -> 2886[label="",style="solid", color="blue", weight=3]; 5173[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 2887[label="",style="solid", color="blue", weight=3]; 5174[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 2888[label="",style="solid", color="blue", weight=3]; 5175[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 2889[label="",style="solid", color="blue", weight=3]; 5176[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 2890[label="",style="solid", color="blue", weight=3]; 2818[label="Left yvy300",fontsize=16,color="green",shape="box"];2815[label="compare2 yvy790 yvy800 yvy203",fontsize=16,color="burlywood",shape="triangle"];5177[label="yvy203/False",fontsize=10,color="white",style="solid",shape="box"];2815 -> 5177[label="",style="solid", color="burlywood", weight=9]; 5177 -> 2891[label="",style="solid", color="burlywood", weight=3]; 5178[label="yvy203/True",fontsize=10,color="white",style="solid",shape="box"];2815 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 2892[label="",style="solid", color="burlywood", weight=3]; 203[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];5179[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];203 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 341[label="",style="solid", color="burlywood", weight=3]; 5180[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];203 -> 5180[label="",style="solid", color="burlywood", weight=9]; 5180 -> 342[label="",style="solid", color="burlywood", weight=3]; 5181[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];203 -> 5181[label="",style="solid", color="burlywood", weight=9]; 5181 -> 343[label="",style="solid", color="burlywood", weight=3]; 204[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];5182[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];204 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 344[label="",style="solid", color="burlywood", weight=3]; 5183[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];204 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 345[label="",style="solid", color="burlywood", weight=3]; 5184[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];204 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 346[label="",style="solid", color="burlywood", weight=3]; 205[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];5185[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];205 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 347[label="",style="solid", color="burlywood", weight=3]; 5186[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];205 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 348[label="",style="solid", color="burlywood", weight=3]; 5187[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];205 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 349[label="",style="solid", color="burlywood", weight=3]; 407 -> 577[label="",style="dashed", color="red", weight=0]; 407[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) (Left yvy20 > Left yvy15)",fontsize=16,color="magenta"];407 -> 578[label="",style="dashed", color="magenta", weight=3]; 408 -> 236[label="",style="dashed", color="red", weight=0]; 408[label="FiniteMap.splitLT yvy18 (Left yvy20)",fontsize=16,color="magenta"];408 -> 432[label="",style="dashed", color="magenta", weight=3]; 408 -> 433[label="",style="dashed", color="magenta", weight=3]; 2819[label="Left yvy400",fontsize=16,color="green",shape="box"];2820[label="False",fontsize=16,color="green",shape="box"];2821[label="Right yvy300",fontsize=16,color="green",shape="box"];235 -> 584[label="",style="dashed", color="red", weight=0]; 235[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (Left yvy400 > Right yvy300)",fontsize=16,color="magenta"];235 -> 585[label="",style="dashed", color="magenta", weight=3]; 236[label="FiniteMap.splitLT yvy33 (Left yvy400)",fontsize=16,color="burlywood",shape="triangle"];5188[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];236 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 382[label="",style="solid", color="burlywood", weight=3]; 5189[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];236 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 383[label="",style="solid", color="burlywood", weight=3]; 2822[label="Right yvy400",fontsize=16,color="green",shape="box"];2823[label="False",fontsize=16,color="green",shape="box"];2824[label="Left yvy300",fontsize=16,color="green",shape="box"];278 -> 593[label="",style="dashed", color="red", weight=0]; 278[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (Right yvy400 > Left yvy300)",fontsize=16,color="magenta"];278 -> 594[label="",style="dashed", color="magenta", weight=3]; 279[label="FiniteMap.splitLT yvy33 (Right yvy400)",fontsize=16,color="burlywood",shape="triangle"];5190[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];279 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 386[label="",style="solid", color="burlywood", weight=3]; 5191[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];279 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 387[label="",style="solid", color="burlywood", weight=3]; 2825[label="Right yvy400",fontsize=16,color="green",shape="box"];2826[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5192[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5192[label="",style="solid", color="blue", weight=9]; 5192 -> 2893[label="",style="solid", color="blue", weight=3]; 5193[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5193[label="",style="solid", color="blue", weight=9]; 5193 -> 2894[label="",style="solid", color="blue", weight=3]; 5194[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5194[label="",style="solid", color="blue", weight=9]; 5194 -> 2895[label="",style="solid", color="blue", weight=3]; 5195[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5195[label="",style="solid", color="blue", weight=9]; 5195 -> 2896[label="",style="solid", color="blue", weight=3]; 5196[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 2897[label="",style="solid", color="blue", weight=3]; 5197[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 2898[label="",style="solid", color="blue", weight=3]; 5198[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 2899[label="",style="solid", color="blue", weight=3]; 5199[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 2900[label="",style="solid", color="blue", weight=3]; 5200[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 2901[label="",style="solid", color="blue", weight=3]; 5201[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 2902[label="",style="solid", color="blue", weight=3]; 5202[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 2903[label="",style="solid", color="blue", weight=3]; 5203[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 2904[label="",style="solid", color="blue", weight=3]; 5204[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 2905[label="",style="solid", color="blue", weight=3]; 5205[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2826 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 2906[label="",style="solid", color="blue", weight=3]; 2827[label="Right yvy300",fontsize=16,color="green",shape="box"];413 -> 631[label="",style="dashed", color="red", weight=0]; 413[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) (Right yvy35 > Right yvy30)",fontsize=16,color="magenta"];413 -> 632[label="",style="dashed", color="magenta", weight=3]; 414 -> 279[label="",style="dashed", color="red", weight=0]; 414[label="FiniteMap.splitLT yvy33 (Right yvy35)",fontsize=16,color="magenta"];414 -> 466[label="",style="dashed", color="magenta", weight=3]; 414 -> 467[label="",style="dashed", color="magenta", weight=3]; 2828[label="Left yvy400",fontsize=16,color="green",shape="box"];2829[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5206[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 2907[label="",style="solid", color="blue", weight=3]; 5207[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5207[label="",style="solid", color="blue", weight=9]; 5207 -> 2908[label="",style="solid", color="blue", weight=3]; 5208[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 2909[label="",style="solid", color="blue", weight=3]; 5209[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 2910[label="",style="solid", color="blue", weight=3]; 5210[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5210[label="",style="solid", color="blue", weight=9]; 5210 -> 2911[label="",style="solid", color="blue", weight=3]; 5211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5211[label="",style="solid", color="blue", weight=9]; 5211 -> 2912[label="",style="solid", color="blue", weight=3]; 5212[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 2913[label="",style="solid", color="blue", weight=3]; 5213[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 2914[label="",style="solid", color="blue", weight=3]; 5214[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 2915[label="",style="solid", color="blue", weight=3]; 5215[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 2916[label="",style="solid", color="blue", weight=3]; 5216[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 2917[label="",style="solid", color="blue", weight=3]; 5217[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 2918[label="",style="solid", color="blue", weight=3]; 5218[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 2919[label="",style="solid", color="blue", weight=3]; 5219[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2829 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 2920[label="",style="solid", color="blue", weight=3]; 2830[label="Left yvy300",fontsize=16,color="green",shape="box"];492 -> 637[label="",style="dashed", color="red", weight=0]; 492[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) (Left yvy50 < Left yvy45)",fontsize=16,color="magenta"];492 -> 638[label="",style="dashed", color="magenta", weight=3]; 493 -> 289[label="",style="dashed", color="red", weight=0]; 493[label="FiniteMap.splitGT yvy49 (Left yvy50)",fontsize=16,color="magenta"];493 -> 516[label="",style="dashed", color="magenta", weight=3]; 493 -> 517[label="",style="dashed", color="magenta", weight=3]; 2831[label="Left yvy400",fontsize=16,color="green",shape="box"];2832[label="False",fontsize=16,color="green",shape="box"];2833[label="Right yvy300",fontsize=16,color="green",shape="box"];288 -> 643[label="",style="dashed", color="red", weight=0]; 288[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (Left yvy400 < Right yvy300)",fontsize=16,color="magenta"];288 -> 644[label="",style="dashed", color="magenta", weight=3]; 289[label="FiniteMap.splitGT yvy34 (Left yvy400)",fontsize=16,color="burlywood",shape="triangle"];5220[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];289 -> 5220[label="",style="solid", color="burlywood", weight=9]; 5220 -> 469[label="",style="solid", color="burlywood", weight=3]; 5221[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];289 -> 5221[label="",style="solid", color="burlywood", weight=9]; 5221 -> 470[label="",style="solid", color="burlywood", weight=3]; 2834[label="Right yvy400",fontsize=16,color="green",shape="box"];2835[label="False",fontsize=16,color="green",shape="box"];2836[label="Left yvy300",fontsize=16,color="green",shape="box"];326 -> 651[label="",style="dashed", color="red", weight=0]; 326[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (Right yvy400 < Left yvy300)",fontsize=16,color="magenta"];326 -> 652[label="",style="dashed", color="magenta", weight=3]; 327[label="FiniteMap.splitGT yvy34 (Right yvy400)",fontsize=16,color="burlywood",shape="triangle"];5222[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];327 -> 5222[label="",style="solid", color="burlywood", weight=9]; 5222 -> 472[label="",style="solid", color="burlywood", weight=3]; 5223[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];327 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 473[label="",style="solid", color="burlywood", weight=3]; 2837[label="Right yvy400",fontsize=16,color="green",shape="box"];2838[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5224[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5224[label="",style="solid", color="blue", weight=9]; 5224 -> 2921[label="",style="solid", color="blue", weight=3]; 5225[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 2922[label="",style="solid", color="blue", weight=3]; 5226[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5226[label="",style="solid", color="blue", weight=9]; 5226 -> 2923[label="",style="solid", color="blue", weight=3]; 5227[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5227[label="",style="solid", color="blue", weight=9]; 5227 -> 2924[label="",style="solid", color="blue", weight=3]; 5228[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5228[label="",style="solid", color="blue", weight=9]; 5228 -> 2925[label="",style="solid", color="blue", weight=3]; 5229[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5229[label="",style="solid", color="blue", weight=9]; 5229 -> 2926[label="",style="solid", color="blue", weight=3]; 5230[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5230[label="",style="solid", color="blue", weight=9]; 5230 -> 2927[label="",style="solid", color="blue", weight=3]; 5231[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5231[label="",style="solid", color="blue", weight=9]; 5231 -> 2928[label="",style="solid", color="blue", weight=3]; 5232[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5232[label="",style="solid", color="blue", weight=9]; 5232 -> 2929[label="",style="solid", color="blue", weight=3]; 5233[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5233[label="",style="solid", color="blue", weight=9]; 5233 -> 2930[label="",style="solid", color="blue", weight=3]; 5234[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5234[label="",style="solid", color="blue", weight=9]; 5234 -> 2931[label="",style="solid", color="blue", weight=3]; 5235[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5235[label="",style="solid", color="blue", weight=9]; 5235 -> 2932[label="",style="solid", color="blue", weight=3]; 5236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 2933[label="",style="solid", color="blue", weight=3]; 5237[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2838 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 2934[label="",style="solid", color="blue", weight=3]; 2839[label="Right yvy300",fontsize=16,color="green",shape="box"];499 -> 687[label="",style="dashed", color="red", weight=0]; 499[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) (Right yvy65 < Right yvy60)",fontsize=16,color="magenta"];499 -> 688[label="",style="dashed", color="magenta", weight=3]; 500 -> 327[label="",style="dashed", color="red", weight=0]; 500[label="FiniteMap.splitGT yvy64 (Right yvy65)",fontsize=16,color="magenta"];500 -> 535[label="",style="dashed", color="magenta", weight=3]; 500 -> 536[label="",style="dashed", color="magenta", weight=3]; 320 -> 494[label="",style="dashed", color="red", weight=0]; 320[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];320 -> 495[label="",style="dashed", color="magenta", weight=3]; 321 -> 518[label="",style="dashed", color="red", weight=0]; 321[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Right yvy500) False == LT)",fontsize=16,color="magenta"];321 -> 519[label="",style="dashed", color="magenta", weight=3]; 322 -> 537[label="",style="dashed", color="red", weight=0]; 322[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Left yvy500) False == LT)",fontsize=16,color="magenta"];322 -> 538[label="",style="dashed", color="magenta", weight=3]; 323 -> 539[label="",style="dashed", color="red", weight=0]; 323[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];323 -> 540[label="",style="dashed", color="magenta", weight=3]; 325 -> 127[label="",style="dashed", color="red", weight=0]; 325[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"];325 -> 541[label="",style="dashed", color="magenta", weight=3]; 325 -> 542[label="",style="dashed", color="magenta", weight=3]; 324[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 yvy71",fontsize=16,color="burlywood",shape="triangle"];5238[label="yvy71/False",fontsize=10,color="white",style="solid",shape="box"];324 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 543[label="",style="solid", color="burlywood", weight=3]; 5239[label="yvy71/True",fontsize=10,color="white",style="solid",shape="box"];324 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 544[label="",style="solid", color="burlywood", weight=3]; 329 -> 127[label="",style="dashed", color="red", weight=0]; 329[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"];329 -> 545[label="",style="dashed", color="magenta", weight=3]; 329 -> 546[label="",style="dashed", color="magenta", weight=3]; 328[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 yvy72",fontsize=16,color="burlywood",shape="triangle"];5240[label="yvy72/False",fontsize=10,color="white",style="solid",shape="box"];328 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 547[label="",style="solid", color="burlywood", weight=3]; 5241[label="yvy72/True",fontsize=10,color="white",style="solid",shape="box"];328 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 548[label="",style="solid", color="burlywood", weight=3]; 2877[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5242[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 2978[label="",style="solid", color="burlywood", weight=3]; 2878[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5243[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2878 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 2979[label="",style="solid", color="burlywood", weight=3]; 5244[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2878 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 2980[label="",style="solid", color="burlywood", weight=3]; 2879[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5245[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2879 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 2981[label="",style="solid", color="burlywood", weight=3]; 2880[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5246[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2880 -> 5246[label="",style="solid", color="burlywood", weight=9]; 5246 -> 2982[label="",style="solid", color="burlywood", weight=3]; 2881[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5247[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5247[label="",style="solid", color="burlywood", weight=9]; 5247 -> 2983[label="",style="solid", color="burlywood", weight=3]; 5248[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 2984[label="",style="solid", color="burlywood", weight=3]; 2882 -> 127[label="",style="dashed", color="red", weight=0]; 2882[label="yvy400 == yvy300",fontsize=16,color="magenta"];2883[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5249[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2883 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 2985[label="",style="solid", color="burlywood", weight=3]; 2884[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5250[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2884 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 2986[label="",style="solid", color="burlywood", weight=3]; 2885[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2885 -> 2987[label="",style="solid", color="black", weight=3]; 2886[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2886 -> 2988[label="",style="solid", color="black", weight=3]; 2887[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2887 -> 2989[label="",style="solid", color="black", weight=3]; 2888[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5251[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 2990[label="",style="solid", color="burlywood", weight=3]; 5252[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 2991[label="",style="solid", color="burlywood", weight=3]; 2889[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5253[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 2992[label="",style="solid", color="burlywood", weight=3]; 5254[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2890[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2890 -> 2994[label="",style="solid", color="black", weight=3]; 2891[label="compare2 yvy790 yvy800 False",fontsize=16,color="black",shape="box"];2891 -> 2995[label="",style="solid", color="black", weight=3]; 2892[label="compare2 yvy790 yvy800 True",fontsize=16,color="black",shape="box"];2892 -> 2996[label="",style="solid", color="black", weight=3]; 341[label="LT == LT",fontsize=16,color="black",shape="box"];341 -> 568[label="",style="solid", color="black", weight=3]; 342[label="LT == EQ",fontsize=16,color="black",shape="box"];342 -> 569[label="",style="solid", color="black", weight=3]; 343[label="LT == GT",fontsize=16,color="black",shape="box"];343 -> 570[label="",style="solid", color="black", weight=3]; 344[label="EQ == LT",fontsize=16,color="black",shape="box"];344 -> 571[label="",style="solid", color="black", weight=3]; 345[label="EQ == EQ",fontsize=16,color="black",shape="box"];345 -> 572[label="",style="solid", color="black", weight=3]; 346[label="EQ == GT",fontsize=16,color="black",shape="box"];346 -> 573[label="",style="solid", color="black", weight=3]; 347[label="GT == LT",fontsize=16,color="black",shape="box"];347 -> 574[label="",style="solid", color="black", weight=3]; 348[label="GT == EQ",fontsize=16,color="black",shape="box"];348 -> 575[label="",style="solid", color="black", weight=3]; 349[label="GT == GT",fontsize=16,color="black",shape="box"];349 -> 576[label="",style="solid", color="black", weight=3]; 578[label="Left yvy20 > Left yvy15",fontsize=16,color="black",shape="triangle"];578 -> 580[label="",style="solid", color="black", weight=3]; 577[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) yvy99",fontsize=16,color="burlywood",shape="triangle"];5255[label="yvy99/False",fontsize=10,color="white",style="solid",shape="box"];577 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 581[label="",style="solid", color="burlywood", weight=3]; 5256[label="yvy99/True",fontsize=10,color="white",style="solid",shape="box"];577 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 582[label="",style="solid", color="burlywood", weight=3]; 432[label="yvy18",fontsize=16,color="green",shape="box"];433[label="yvy20",fontsize=16,color="green",shape="box"];585[label="Left yvy400 > Right yvy300",fontsize=16,color="black",shape="triangle"];585 -> 587[label="",style="solid", color="black", weight=3]; 584[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy100",fontsize=16,color="burlywood",shape="triangle"];5257[label="yvy100/False",fontsize=10,color="white",style="solid",shape="box"];584 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 588[label="",style="solid", color="burlywood", weight=3]; 5258[label="yvy100/True",fontsize=10,color="white",style="solid",shape="box"];584 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 589[label="",style="solid", color="burlywood", weight=3]; 382[label="FiniteMap.splitLT FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];382 -> 590[label="",style="solid", color="black", weight=3]; 383[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Left yvy400)",fontsize=16,color="black",shape="box"];383 -> 591[label="",style="solid", color="black", weight=3]; 594[label="Right yvy400 > Left yvy300",fontsize=16,color="black",shape="triangle"];594 -> 596[label="",style="solid", color="black", weight=3]; 593[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy101",fontsize=16,color="burlywood",shape="triangle"];5259[label="yvy101/False",fontsize=10,color="white",style="solid",shape="box"];593 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 597[label="",style="solid", color="burlywood", weight=3]; 5260[label="yvy101/True",fontsize=10,color="white",style="solid",shape="box"];593 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 598[label="",style="solid", color="burlywood", weight=3]; 386[label="FiniteMap.splitLT FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];386 -> 599[label="",style="solid", color="black", weight=3]; 387[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Right yvy400)",fontsize=16,color="black",shape="box"];387 -> 600[label="",style="solid", color="black", weight=3]; 2893 -> 2877[label="",style="dashed", color="red", weight=0]; 2893[label="yvy400 == yvy300",fontsize=16,color="magenta"];2893 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2893 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2894 -> 2878[label="",style="dashed", color="red", weight=0]; 2894[label="yvy400 == yvy300",fontsize=16,color="magenta"];2894 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2894 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2895 -> 2879[label="",style="dashed", color="red", weight=0]; 2895[label="yvy400 == yvy300",fontsize=16,color="magenta"];2895 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2895 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2896 -> 2880[label="",style="dashed", color="red", weight=0]; 2896[label="yvy400 == yvy300",fontsize=16,color="magenta"];2896 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2897 -> 2881[label="",style="dashed", color="red", weight=0]; 2897[label="yvy400 == yvy300",fontsize=16,color="magenta"];2897 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2897 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2898 -> 127[label="",style="dashed", color="red", weight=0]; 2898[label="yvy400 == yvy300",fontsize=16,color="magenta"];2898 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2898 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2899 -> 2883[label="",style="dashed", color="red", weight=0]; 2899[label="yvy400 == yvy300",fontsize=16,color="magenta"];2899 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2899 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2900 -> 2884[label="",style="dashed", color="red", weight=0]; 2900[label="yvy400 == yvy300",fontsize=16,color="magenta"];2900 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2901 -> 2885[label="",style="dashed", color="red", weight=0]; 2901[label="yvy400 == yvy300",fontsize=16,color="magenta"];2901 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2886[label="",style="dashed", color="red", weight=0]; 2902[label="yvy400 == yvy300",fontsize=16,color="magenta"];2902 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2902 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2903 -> 2887[label="",style="dashed", color="red", weight=0]; 2903[label="yvy400 == yvy300",fontsize=16,color="magenta"];2903 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2903 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2904 -> 2888[label="",style="dashed", color="red", weight=0]; 2904[label="yvy400 == yvy300",fontsize=16,color="magenta"];2904 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2905 -> 2889[label="",style="dashed", color="red", weight=0]; 2905[label="yvy400 == yvy300",fontsize=16,color="magenta"];2905 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2905 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2906 -> 2890[label="",style="dashed", color="red", weight=0]; 2906[label="yvy400 == yvy300",fontsize=16,color="magenta"];2906 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3024[label="",style="dashed", color="magenta", weight=3]; 632[label="Right yvy35 > Right yvy30",fontsize=16,color="black",shape="triangle"];632 -> 634[label="",style="solid", color="black", weight=3]; 631[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) yvy102",fontsize=16,color="burlywood",shape="triangle"];5261[label="yvy102/False",fontsize=10,color="white",style="solid",shape="box"];631 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 635[label="",style="solid", color="burlywood", weight=3]; 5262[label="yvy102/True",fontsize=10,color="white",style="solid",shape="box"];631 -> 5262[label="",style="solid", color="burlywood", weight=9]; 5262 -> 636[label="",style="solid", color="burlywood", weight=3]; 466[label="yvy33",fontsize=16,color="green",shape="box"];467[label="yvy35",fontsize=16,color="green",shape="box"];2907 -> 2877[label="",style="dashed", color="red", weight=0]; 2907[label="yvy400 == yvy300",fontsize=16,color="magenta"];2908 -> 2878[label="",style="dashed", color="red", weight=0]; 2908[label="yvy400 == yvy300",fontsize=16,color="magenta"];2909 -> 2879[label="",style="dashed", color="red", weight=0]; 2909[label="yvy400 == yvy300",fontsize=16,color="magenta"];2910 -> 2880[label="",style="dashed", color="red", weight=0]; 2910[label="yvy400 == yvy300",fontsize=16,color="magenta"];2911 -> 2881[label="",style="dashed", color="red", weight=0]; 2911[label="yvy400 == yvy300",fontsize=16,color="magenta"];2912 -> 127[label="",style="dashed", color="red", weight=0]; 2912[label="yvy400 == yvy300",fontsize=16,color="magenta"];2913 -> 2883[label="",style="dashed", color="red", weight=0]; 2913[label="yvy400 == yvy300",fontsize=16,color="magenta"];2914 -> 2884[label="",style="dashed", color="red", weight=0]; 2914[label="yvy400 == yvy300",fontsize=16,color="magenta"];2915 -> 2885[label="",style="dashed", color="red", weight=0]; 2915[label="yvy400 == yvy300",fontsize=16,color="magenta"];2916 -> 2886[label="",style="dashed", color="red", weight=0]; 2916[label="yvy400 == yvy300",fontsize=16,color="magenta"];2917 -> 2887[label="",style="dashed", color="red", weight=0]; 2917[label="yvy400 == yvy300",fontsize=16,color="magenta"];2918 -> 2888[label="",style="dashed", color="red", weight=0]; 2918[label="yvy400 == yvy300",fontsize=16,color="magenta"];2919 -> 2889[label="",style="dashed", color="red", weight=0]; 2919[label="yvy400 == yvy300",fontsize=16,color="magenta"];2920 -> 2890[label="",style="dashed", color="red", weight=0]; 2920[label="yvy400 == yvy300",fontsize=16,color="magenta"];638[label="Left yvy50 < Left yvy45",fontsize=16,color="black",shape="box"];638 -> 640[label="",style="solid", color="black", weight=3]; 637[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) yvy103",fontsize=16,color="burlywood",shape="triangle"];5263[label="yvy103/False",fontsize=10,color="white",style="solid",shape="box"];637 -> 5263[label="",style="solid", color="burlywood", weight=9]; 5263 -> 641[label="",style="solid", color="burlywood", weight=3]; 5264[label="yvy103/True",fontsize=10,color="white",style="solid",shape="box"];637 -> 5264[label="",style="solid", color="burlywood", weight=9]; 5264 -> 642[label="",style="solid", color="burlywood", weight=3]; 516[label="yvy49",fontsize=16,color="green",shape="box"];517[label="yvy50",fontsize=16,color="green",shape="box"];644[label="Left yvy400 < Right yvy300",fontsize=16,color="black",shape="box"];644 -> 646[label="",style="solid", color="black", weight=3]; 643[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy104",fontsize=16,color="burlywood",shape="triangle"];5265[label="yvy104/False",fontsize=10,color="white",style="solid",shape="box"];643 -> 5265[label="",style="solid", color="burlywood", weight=9]; 5265 -> 647[label="",style="solid", color="burlywood", weight=3]; 5266[label="yvy104/True",fontsize=10,color="white",style="solid",shape="box"];643 -> 5266[label="",style="solid", color="burlywood", weight=9]; 5266 -> 648[label="",style="solid", color="burlywood", weight=3]; 469[label="FiniteMap.splitGT FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];469 -> 649[label="",style="solid", color="black", weight=3]; 470[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Left yvy400)",fontsize=16,color="black",shape="box"];470 -> 650[label="",style="solid", color="black", weight=3]; 652[label="Right yvy400 < Left yvy300",fontsize=16,color="black",shape="box"];652 -> 654[label="",style="solid", color="black", weight=3]; 651[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy105",fontsize=16,color="burlywood",shape="triangle"];5267[label="yvy105/False",fontsize=10,color="white",style="solid",shape="box"];651 -> 5267[label="",style="solid", color="burlywood", weight=9]; 5267 -> 655[label="",style="solid", color="burlywood", weight=3]; 5268[label="yvy105/True",fontsize=10,color="white",style="solid",shape="box"];651 -> 5268[label="",style="solid", color="burlywood", weight=9]; 5268 -> 656[label="",style="solid", color="burlywood", weight=3]; 472[label="FiniteMap.splitGT FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];472 -> 657[label="",style="solid", color="black", weight=3]; 473[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Right yvy400)",fontsize=16,color="black",shape="box"];473 -> 658[label="",style="solid", color="black", weight=3]; 2921 -> 2877[label="",style="dashed", color="red", weight=0]; 2921[label="yvy400 == yvy300",fontsize=16,color="magenta"];2921 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2878[label="",style="dashed", color="red", weight=0]; 2922[label="yvy400 == yvy300",fontsize=16,color="magenta"];2922 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2879[label="",style="dashed", color="red", weight=0]; 2923[label="yvy400 == yvy300",fontsize=16,color="magenta"];2923 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2924 -> 2880[label="",style="dashed", color="red", weight=0]; 2924[label="yvy400 == yvy300",fontsize=16,color="magenta"];2924 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2881[label="",style="dashed", color="red", weight=0]; 2925[label="yvy400 == yvy300",fontsize=16,color="magenta"];2925 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2926 -> 127[label="",style="dashed", color="red", weight=0]; 2926[label="yvy400 == yvy300",fontsize=16,color="magenta"];2926 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2883[label="",style="dashed", color="red", weight=0]; 2927[label="yvy400 == yvy300",fontsize=16,color="magenta"];2927 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2884[label="",style="dashed", color="red", weight=0]; 2928[label="yvy400 == yvy300",fontsize=16,color="magenta"];2928 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2885[label="",style="dashed", color="red", weight=0]; 2929[label="yvy400 == yvy300",fontsize=16,color="magenta"];2929 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2886[label="",style="dashed", color="red", weight=0]; 2930[label="yvy400 == yvy300",fontsize=16,color="magenta"];2930 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2887[label="",style="dashed", color="red", weight=0]; 2931[label="yvy400 == yvy300",fontsize=16,color="magenta"];2931 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2888[label="",style="dashed", color="red", weight=0]; 2932[label="yvy400 == yvy300",fontsize=16,color="magenta"];2932 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2889[label="",style="dashed", color="red", weight=0]; 2933[label="yvy400 == yvy300",fontsize=16,color="magenta"];2933 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2890[label="",style="dashed", color="red", weight=0]; 2934[label="yvy400 == yvy300",fontsize=16,color="magenta"];2934 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3052[label="",style="dashed", color="magenta", weight=3]; 688[label="Right yvy65 < Right yvy60",fontsize=16,color="black",shape="box"];688 -> 690[label="",style="solid", color="black", weight=3]; 687[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) yvy106",fontsize=16,color="burlywood",shape="triangle"];5269[label="yvy106/False",fontsize=10,color="white",style="solid",shape="box"];687 -> 5269[label="",style="solid", color="burlywood", weight=9]; 5269 -> 691[label="",style="solid", color="burlywood", weight=3]; 5270[label="yvy106/True",fontsize=10,color="white",style="solid",shape="box"];687 -> 5270[label="",style="solid", color="burlywood", weight=9]; 5270 -> 692[label="",style="solid", color="burlywood", weight=3]; 535[label="yvy64",fontsize=16,color="green",shape="box"];536[label="yvy65",fontsize=16,color="green",shape="box"];495 -> 127[label="",style="dashed", color="red", weight=0]; 495[label="compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];495 -> 693[label="",style="dashed", color="magenta", weight=3]; 495 -> 694[label="",style="dashed", color="magenta", weight=3]; 494[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy91",fontsize=16,color="burlywood",shape="triangle"];5271[label="yvy91/False",fontsize=10,color="white",style="solid",shape="box"];494 -> 5271[label="",style="solid", color="burlywood", weight=9]; 5271 -> 695[label="",style="solid", color="burlywood", weight=3]; 5272[label="yvy91/True",fontsize=10,color="white",style="solid",shape="box"];494 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 696[label="",style="solid", color="burlywood", weight=3]; 519 -> 127[label="",style="dashed", color="red", weight=0]; 519[label="compare2 (Left yvy400) (Right yvy500) False == LT",fontsize=16,color="magenta"];519 -> 697[label="",style="dashed", color="magenta", weight=3]; 519 -> 698[label="",style="dashed", color="magenta", weight=3]; 518[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy93",fontsize=16,color="burlywood",shape="triangle"];5273[label="yvy93/False",fontsize=10,color="white",style="solid",shape="box"];518 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 699[label="",style="solid", color="burlywood", weight=3]; 5274[label="yvy93/True",fontsize=10,color="white",style="solid",shape="box"];518 -> 5274[label="",style="solid", color="burlywood", weight=9]; 5274 -> 700[label="",style="solid", color="burlywood", weight=3]; 538 -> 127[label="",style="dashed", color="red", weight=0]; 538[label="compare2 (Right yvy400) (Left yvy500) False == LT",fontsize=16,color="magenta"];538 -> 701[label="",style="dashed", color="magenta", weight=3]; 538 -> 702[label="",style="dashed", color="magenta", weight=3]; 537[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy95",fontsize=16,color="burlywood",shape="triangle"];5275[label="yvy95/False",fontsize=10,color="white",style="solid",shape="box"];537 -> 5275[label="",style="solid", color="burlywood", weight=9]; 5275 -> 703[label="",style="solid", color="burlywood", weight=3]; 5276[label="yvy95/True",fontsize=10,color="white",style="solid",shape="box"];537 -> 5276[label="",style="solid", color="burlywood", weight=9]; 5276 -> 704[label="",style="solid", color="burlywood", weight=3]; 540 -> 127[label="",style="dashed", color="red", weight=0]; 540[label="compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];540 -> 705[label="",style="dashed", color="magenta", weight=3]; 540 -> 706[label="",style="dashed", color="magenta", weight=3]; 539[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy97",fontsize=16,color="burlywood",shape="triangle"];5277[label="yvy97/False",fontsize=10,color="white",style="solid",shape="box"];539 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 707[label="",style="solid", color="burlywood", weight=3]; 5278[label="yvy97/True",fontsize=10,color="white",style="solid",shape="box"];539 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 708[label="",style="solid", color="burlywood", weight=3]; 541[label="LT",fontsize=16,color="green",shape="box"];542[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"];5279[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];542 -> 5279[label="",style="solid", color="burlywood", weight=9]; 5279 -> 709[label="",style="solid", color="burlywood", weight=3]; 5280[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];542 -> 5280[label="",style="solid", color="burlywood", weight=9]; 5280 -> 710[label="",style="solid", color="burlywood", weight=3]; 543[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"];543 -> 711[label="",style="solid", color="black", weight=3]; 544[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"];544 -> 712[label="",style="solid", color="black", weight=3]; 545[label="LT",fontsize=16,color="green",shape="box"];546[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"];5281[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];546 -> 5281[label="",style="solid", color="burlywood", weight=9]; 5281 -> 713[label="",style="solid", color="burlywood", weight=3]; 5282[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];546 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 714[label="",style="solid", color="burlywood", weight=3]; 547[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"];547 -> 715[label="",style="solid", color="black", weight=3]; 548[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"];548 -> 716[label="",style="solid", color="black", weight=3]; 2978[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];5283[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2978 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 3149[label="",style="solid", color="burlywood", weight=3]; 2979[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];5284[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2979 -> 5284[label="",style="solid", color="burlywood", weight=9]; 5284 -> 3150[label="",style="solid", color="burlywood", weight=3]; 5285[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2979 -> 5285[label="",style="solid", color="burlywood", weight=9]; 5285 -> 3151[label="",style="solid", color="burlywood", weight=3]; 2980[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5286[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2980 -> 5286[label="",style="solid", color="burlywood", weight=9]; 5286 -> 3152[label="",style="solid", color="burlywood", weight=3]; 5287[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2980 -> 5287[label="",style="solid", color="burlywood", weight=9]; 5287 -> 3153[label="",style="solid", color="burlywood", weight=3]; 2981[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];5288[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2981 -> 5288[label="",style="solid", color="burlywood", weight=9]; 5288 -> 3154[label="",style="solid", color="burlywood", weight=3]; 2982[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];5289[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2982 -> 5289[label="",style="solid", color="burlywood", weight=9]; 5289 -> 3155[label="",style="solid", color="burlywood", weight=3]; 2983[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];5290[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2983 -> 5290[label="",style="solid", color="burlywood", weight=9]; 5290 -> 3156[label="",style="solid", color="burlywood", weight=3]; 5291[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2983 -> 5291[label="",style="solid", color="burlywood", weight=9]; 5291 -> 3157[label="",style="solid", color="burlywood", weight=3]; 2984[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];5292[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2984 -> 5292[label="",style="solid", color="burlywood", weight=9]; 5292 -> 3158[label="",style="solid", color="burlywood", weight=3]; 5293[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2984 -> 5293[label="",style="solid", color="burlywood", weight=9]; 5293 -> 3159[label="",style="solid", color="burlywood", weight=3]; 2985[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];5294[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2985 -> 5294[label="",style="solid", color="burlywood", weight=9]; 5294 -> 3160[label="",style="solid", color="burlywood", weight=3]; 2986[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5295[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2986 -> 5295[label="",style="solid", color="burlywood", weight=9]; 5295 -> 3161[label="",style="solid", color="burlywood", weight=3]; 2987[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];5296[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2987 -> 5296[label="",style="solid", color="burlywood", weight=9]; 5296 -> 3162[label="",style="solid", color="burlywood", weight=3]; 5297[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2987 -> 5297[label="",style="solid", color="burlywood", weight=9]; 5297 -> 3163[label="",style="solid", color="burlywood", weight=3]; 2988[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5298[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2988 -> 5298[label="",style="solid", color="burlywood", weight=9]; 5298 -> 3164[label="",style="solid", color="burlywood", weight=3]; 2989[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5299[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2989 -> 5299[label="",style="solid", color="burlywood", weight=9]; 5299 -> 3165[label="",style="solid", color="burlywood", weight=3]; 2990[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];5300[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5300[label="",style="solid", color="burlywood", weight=9]; 5300 -> 3166[label="",style="solid", color="burlywood", weight=3]; 5301[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5301[label="",style="solid", color="burlywood", weight=9]; 5301 -> 3167[label="",style="solid", color="burlywood", weight=3]; 2991[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];5302[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5302[label="",style="solid", color="burlywood", weight=9]; 5302 -> 3168[label="",style="solid", color="burlywood", weight=3]; 5303[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5303[label="",style="solid", color="burlywood", weight=9]; 5303 -> 3169[label="",style="solid", color="burlywood", weight=3]; 2992[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5304[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2992 -> 5304[label="",style="solid", color="burlywood", weight=9]; 5304 -> 3170[label="",style="solid", color="burlywood", weight=3]; 5305[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2992 -> 5305[label="",style="solid", color="burlywood", weight=9]; 5305 -> 3171[label="",style="solid", color="burlywood", weight=3]; 2993[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5306[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2993 -> 5306[label="",style="solid", color="burlywood", weight=9]; 5306 -> 3172[label="",style="solid", color="burlywood", weight=3]; 5307[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2993 -> 5307[label="",style="solid", color="burlywood", weight=9]; 5307 -> 3173[label="",style="solid", color="burlywood", weight=3]; 2994[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5308[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2994 -> 5308[label="",style="solid", color="burlywood", weight=9]; 5308 -> 3174[label="",style="solid", color="burlywood", weight=3]; 2995[label="compare1 yvy790 yvy800 (yvy790 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5309[label="yvy790/Left yvy7900",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5309[label="",style="solid", color="burlywood", weight=9]; 5309 -> 3175[label="",style="solid", color="burlywood", weight=3]; 5310[label="yvy790/Right yvy7900",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5310[label="",style="solid", color="burlywood", weight=9]; 5310 -> 3176[label="",style="solid", color="burlywood", weight=3]; 2996[label="EQ",fontsize=16,color="green",shape="box"];568[label="True",fontsize=16,color="green",shape="box"];569[label="False",fontsize=16,color="green",shape="box"];570[label="False",fontsize=16,color="green",shape="box"];571[label="False",fontsize=16,color="green",shape="box"];572[label="True",fontsize=16,color="green",shape="box"];573[label="False",fontsize=16,color="green",shape="box"];574[label="False",fontsize=16,color="green",shape="box"];575[label="False",fontsize=16,color="green",shape="box"];576[label="True",fontsize=16,color="green",shape="box"];580 -> 127[label="",style="dashed", color="red", weight=0]; 580[label="compare (Left yvy20) (Left yvy15) == GT",fontsize=16,color="magenta"];580 -> 744[label="",style="dashed", color="magenta", weight=3]; 580 -> 745[label="",style="dashed", color="magenta", weight=3]; 581[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) False",fontsize=16,color="black",shape="box"];581 -> 746[label="",style="solid", color="black", weight=3]; 582[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];582 -> 747[label="",style="solid", color="black", weight=3]; 587 -> 127[label="",style="dashed", color="red", weight=0]; 587[label="compare (Left yvy400) (Right yvy300) == GT",fontsize=16,color="magenta"];587 -> 748[label="",style="dashed", color="magenta", weight=3]; 587 -> 749[label="",style="dashed", color="magenta", weight=3]; 588[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];588 -> 750[label="",style="solid", color="black", weight=3]; 589[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];589 -> 751[label="",style="solid", color="black", weight=3]; 590[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];590 -> 752[label="",style="solid", color="black", weight=3]; 591 -> 26[label="",style="dashed", color="red", weight=0]; 591[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Left yvy400)",fontsize=16,color="magenta"];591 -> 753[label="",style="dashed", color="magenta", weight=3]; 591 -> 754[label="",style="dashed", color="magenta", weight=3]; 591 -> 755[label="",style="dashed", color="magenta", weight=3]; 591 -> 756[label="",style="dashed", color="magenta", weight=3]; 591 -> 757[label="",style="dashed", color="magenta", weight=3]; 591 -> 758[label="",style="dashed", color="magenta", weight=3]; 596 -> 127[label="",style="dashed", color="red", weight=0]; 596[label="compare (Right yvy400) (Left yvy300) == GT",fontsize=16,color="magenta"];596 -> 760[label="",style="dashed", color="magenta", weight=3]; 596 -> 761[label="",style="dashed", color="magenta", weight=3]; 597[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];597 -> 762[label="",style="solid", color="black", weight=3]; 598[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];598 -> 763[label="",style="solid", color="black", weight=3]; 599[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];599 -> 764[label="",style="solid", color="black", weight=3]; 600 -> 26[label="",style="dashed", color="red", weight=0]; 600[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Right yvy400)",fontsize=16,color="magenta"];600 -> 765[label="",style="dashed", color="magenta", weight=3]; 600 -> 766[label="",style="dashed", color="magenta", weight=3]; 600 -> 767[label="",style="dashed", color="magenta", weight=3]; 600 -> 768[label="",style="dashed", color="magenta", weight=3]; 600 -> 769[label="",style="dashed", color="magenta", weight=3]; 600 -> 770[label="",style="dashed", color="magenta", weight=3]; 2997[label="yvy300",fontsize=16,color="green",shape="box"];2998[label="yvy400",fontsize=16,color="green",shape="box"];2999[label="yvy300",fontsize=16,color="green",shape="box"];3000[label="yvy400",fontsize=16,color="green",shape="box"];3001[label="yvy300",fontsize=16,color="green",shape="box"];3002[label="yvy400",fontsize=16,color="green",shape="box"];3003[label="yvy300",fontsize=16,color="green",shape="box"];3004[label="yvy400",fontsize=16,color="green",shape="box"];3005[label="yvy300",fontsize=16,color="green",shape="box"];3006[label="yvy400",fontsize=16,color="green",shape="box"];3007[label="yvy300",fontsize=16,color="green",shape="box"];3008[label="yvy400",fontsize=16,color="green",shape="box"];3009[label="yvy300",fontsize=16,color="green",shape="box"];3010[label="yvy400",fontsize=16,color="green",shape="box"];3011[label="yvy300",fontsize=16,color="green",shape="box"];3012[label="yvy400",fontsize=16,color="green",shape="box"];3013[label="yvy300",fontsize=16,color="green",shape="box"];3014[label="yvy400",fontsize=16,color="green",shape="box"];3015[label="yvy300",fontsize=16,color="green",shape="box"];3016[label="yvy400",fontsize=16,color="green",shape="box"];3017[label="yvy300",fontsize=16,color="green",shape="box"];3018[label="yvy400",fontsize=16,color="green",shape="box"];3019[label="yvy300",fontsize=16,color="green",shape="box"];3020[label="yvy400",fontsize=16,color="green",shape="box"];3021[label="yvy300",fontsize=16,color="green",shape="box"];3022[label="yvy400",fontsize=16,color="green",shape="box"];3023[label="yvy300",fontsize=16,color="green",shape="box"];3024[label="yvy400",fontsize=16,color="green",shape="box"];634 -> 127[label="",style="dashed", color="red", weight=0]; 634[label="compare (Right yvy35) (Right yvy30) == GT",fontsize=16,color="magenta"];634 -> 772[label="",style="dashed", color="magenta", weight=3]; 634 -> 773[label="",style="dashed", color="magenta", weight=3]; 635[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) False",fontsize=16,color="black",shape="box"];635 -> 774[label="",style="solid", color="black", weight=3]; 636[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];636 -> 775[label="",style="solid", color="black", weight=3]; 640 -> 127[label="",style="dashed", color="red", weight=0]; 640[label="compare (Left yvy50) (Left yvy45) == LT",fontsize=16,color="magenta"];640 -> 776[label="",style="dashed", color="magenta", weight=3]; 640 -> 777[label="",style="dashed", color="magenta", weight=3]; 641[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) False",fontsize=16,color="black",shape="box"];641 -> 778[label="",style="solid", color="black", weight=3]; 642[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];642 -> 779[label="",style="solid", color="black", weight=3]; 646 -> 127[label="",style="dashed", color="red", weight=0]; 646[label="compare (Left yvy400) (Right yvy300) == LT",fontsize=16,color="magenta"];646 -> 780[label="",style="dashed", color="magenta", weight=3]; 646 -> 781[label="",style="dashed", color="magenta", weight=3]; 647[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];647 -> 782[label="",style="solid", color="black", weight=3]; 648[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];648 -> 783[label="",style="solid", color="black", weight=3]; 649[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];649 -> 784[label="",style="solid", color="black", weight=3]; 650 -> 27[label="",style="dashed", color="red", weight=0]; 650[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Left yvy400)",fontsize=16,color="magenta"];650 -> 785[label="",style="dashed", color="magenta", weight=3]; 650 -> 786[label="",style="dashed", color="magenta", weight=3]; 650 -> 787[label="",style="dashed", color="magenta", weight=3]; 650 -> 788[label="",style="dashed", color="magenta", weight=3]; 650 -> 789[label="",style="dashed", color="magenta", weight=3]; 650 -> 790[label="",style="dashed", color="magenta", weight=3]; 654 -> 127[label="",style="dashed", color="red", weight=0]; 654[label="compare (Right yvy400) (Left yvy300) == LT",fontsize=16,color="magenta"];654 -> 791[label="",style="dashed", color="magenta", weight=3]; 654 -> 792[label="",style="dashed", color="magenta", weight=3]; 655[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];655 -> 793[label="",style="solid", color="black", weight=3]; 656[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];656 -> 794[label="",style="solid", color="black", weight=3]; 657[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];657 -> 795[label="",style="solid", color="black", weight=3]; 658 -> 27[label="",style="dashed", color="red", weight=0]; 658[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Right yvy400)",fontsize=16,color="magenta"];658 -> 796[label="",style="dashed", color="magenta", weight=3]; 658 -> 797[label="",style="dashed", color="magenta", weight=3]; 658 -> 798[label="",style="dashed", color="magenta", weight=3]; 658 -> 799[label="",style="dashed", color="magenta", weight=3]; 658 -> 800[label="",style="dashed", color="magenta", weight=3]; 658 -> 801[label="",style="dashed", color="magenta", weight=3]; 3025[label="yvy300",fontsize=16,color="green",shape="box"];3026[label="yvy400",fontsize=16,color="green",shape="box"];3027[label="yvy300",fontsize=16,color="green",shape="box"];3028[label="yvy400",fontsize=16,color="green",shape="box"];3029[label="yvy300",fontsize=16,color="green",shape="box"];3030[label="yvy400",fontsize=16,color="green",shape="box"];3031[label="yvy300",fontsize=16,color="green",shape="box"];3032[label="yvy400",fontsize=16,color="green",shape="box"];3033[label="yvy300",fontsize=16,color="green",shape="box"];3034[label="yvy400",fontsize=16,color="green",shape="box"];3035[label="yvy300",fontsize=16,color="green",shape="box"];3036[label="yvy400",fontsize=16,color="green",shape="box"];3037[label="yvy300",fontsize=16,color="green",shape="box"];3038[label="yvy400",fontsize=16,color="green",shape="box"];3039[label="yvy300",fontsize=16,color="green",shape="box"];3040[label="yvy400",fontsize=16,color="green",shape="box"];3041[label="yvy300",fontsize=16,color="green",shape="box"];3042[label="yvy400",fontsize=16,color="green",shape="box"];3043[label="yvy300",fontsize=16,color="green",shape="box"];3044[label="yvy400",fontsize=16,color="green",shape="box"];3045[label="yvy300",fontsize=16,color="green",shape="box"];3046[label="yvy400",fontsize=16,color="green",shape="box"];3047[label="yvy300",fontsize=16,color="green",shape="box"];3048[label="yvy400",fontsize=16,color="green",shape="box"];3049[label="yvy300",fontsize=16,color="green",shape="box"];3050[label="yvy400",fontsize=16,color="green",shape="box"];3051[label="yvy300",fontsize=16,color="green",shape="box"];3052[label="yvy400",fontsize=16,color="green",shape="box"];690 -> 127[label="",style="dashed", color="red", weight=0]; 690[label="compare (Right yvy65) (Right yvy60) == LT",fontsize=16,color="magenta"];690 -> 802[label="",style="dashed", color="magenta", weight=3]; 690 -> 803[label="",style="dashed", color="magenta", weight=3]; 691[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) False",fontsize=16,color="black",shape="box"];691 -> 804[label="",style="solid", color="black", weight=3]; 692[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];692 -> 805[label="",style="solid", color="black", weight=3]; 693[label="LT",fontsize=16,color="green",shape="box"];694 -> 2815[label="",style="dashed", color="red", weight=0]; 694[label="compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];694 -> 2852[label="",style="dashed", color="magenta", weight=3]; 694 -> 2853[label="",style="dashed", color="magenta", weight=3]; 694 -> 2854[label="",style="dashed", color="magenta", weight=3]; 695[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];695 -> 809[label="",style="solid", color="black", weight=3]; 696[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];696 -> 810[label="",style="solid", color="black", weight=3]; 697[label="LT",fontsize=16,color="green",shape="box"];698 -> 2815[label="",style="dashed", color="red", weight=0]; 698[label="compare2 (Left yvy400) (Right yvy500) False",fontsize=16,color="magenta"];698 -> 2855[label="",style="dashed", color="magenta", weight=3]; 698 -> 2856[label="",style="dashed", color="magenta", weight=3]; 698 -> 2857[label="",style="dashed", color="magenta", weight=3]; 699[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];699 -> 812[label="",style="solid", color="black", weight=3]; 700[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];700 -> 813[label="",style="solid", color="black", weight=3]; 701[label="LT",fontsize=16,color="green",shape="box"];702 -> 2815[label="",style="dashed", color="red", weight=0]; 702[label="compare2 (Right yvy400) (Left yvy500) False",fontsize=16,color="magenta"];702 -> 2858[label="",style="dashed", color="magenta", weight=3]; 702 -> 2859[label="",style="dashed", color="magenta", weight=3]; 702 -> 2860[label="",style="dashed", color="magenta", weight=3]; 703[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];703 -> 815[label="",style="solid", color="black", weight=3]; 704[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];704 -> 816[label="",style="solid", color="black", weight=3]; 705[label="LT",fontsize=16,color="green",shape="box"];706 -> 2815[label="",style="dashed", color="red", weight=0]; 706[label="compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];706 -> 2861[label="",style="dashed", color="magenta", weight=3]; 706 -> 2862[label="",style="dashed", color="magenta", weight=3]; 706 -> 2863[label="",style="dashed", color="magenta", weight=3]; 707[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];707 -> 820[label="",style="solid", color="black", weight=3]; 708[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];708 -> 821[label="",style="solid", color="black", weight=3]; 709[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"];709 -> 822[label="",style="solid", color="black", weight=3]; 710[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"];710 -> 823[label="",style="solid", color="black", weight=3]; 711 -> 974[label="",style="dashed", color="red", weight=0]; 711[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"];711 -> 975[label="",style="dashed", color="magenta", weight=3]; 712 -> 825[label="",style="dashed", color="red", weight=0]; 712[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];712 -> 826[label="",style="dashed", color="magenta", weight=3]; 713[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"];713 -> 836[label="",style="solid", color="black", weight=3]; 714[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"];714 -> 837[label="",style="solid", color="black", weight=3]; 715 -> 985[label="",style="dashed", color="red", weight=0]; 715[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"];715 -> 986[label="",style="dashed", color="magenta", weight=3]; 716 -> 825[label="",style="dashed", color="red", weight=0]; 716[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];716 -> 827[label="",style="dashed", color="magenta", weight=3]; 3149[label="() == ()",fontsize=16,color="black",shape="box"];3149 -> 3243[label="",style="solid", color="black", weight=3]; 3150[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];3150 -> 3244[label="",style="solid", color="black", weight=3]; 3151[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];3151 -> 3245[label="",style="solid", color="black", weight=3]; 3152[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];3152 -> 3246[label="",style="solid", color="black", weight=3]; 3153[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];3153 -> 3247[label="",style="solid", color="black", weight=3]; 3154[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];3154 -> 3248[label="",style="solid", color="black", weight=3]; 3155[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];3155 -> 3249[label="",style="solid", color="black", weight=3]; 3156[label="False == False",fontsize=16,color="black",shape="box"];3156 -> 3250[label="",style="solid", color="black", weight=3]; 3157[label="False == True",fontsize=16,color="black",shape="box"];3157 -> 3251[label="",style="solid", color="black", weight=3]; 3158[label="True == False",fontsize=16,color="black",shape="box"];3158 -> 3252[label="",style="solid", color="black", weight=3]; 3159[label="True == True",fontsize=16,color="black",shape="box"];3159 -> 3253[label="",style="solid", color="black", weight=3]; 3160[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];3160 -> 3254[label="",style="solid", color="black", weight=3]; 3161[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];3161 -> 3255[label="",style="solid", color="black", weight=3]; 3162[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5311[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3162 -> 5311[label="",style="solid", color="burlywood", weight=9]; 5311 -> 3256[label="",style="solid", color="burlywood", weight=3]; 5312[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3162 -> 5312[label="",style="solid", color="burlywood", weight=9]; 5312 -> 3257[label="",style="solid", color="burlywood", weight=3]; 3163[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5313[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3163 -> 5313[label="",style="solid", color="burlywood", weight=9]; 5313 -> 3258[label="",style="solid", color="burlywood", weight=3]; 5314[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3163 -> 5314[label="",style="solid", color="burlywood", weight=9]; 5314 -> 3259[label="",style="solid", color="burlywood", weight=3]; 3164[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];5315[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];3164 -> 5315[label="",style="solid", color="burlywood", weight=9]; 5315 -> 3260[label="",style="solid", color="burlywood", weight=3]; 3165[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];5316[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];3165 -> 5316[label="",style="solid", color="burlywood", weight=9]; 5316 -> 3261[label="",style="solid", color="burlywood", weight=3]; 3166[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];3166 -> 3262[label="",style="solid", color="black", weight=3]; 3167[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];3167 -> 3263[label="",style="solid", color="black", weight=3]; 3168[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];3168 -> 3264[label="",style="solid", color="black", weight=3]; 3169[label="[] == []",fontsize=16,color="black",shape="box"];3169 -> 3265[label="",style="solid", color="black", weight=3]; 3170[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];3170 -> 3266[label="",style="solid", color="black", weight=3]; 3171[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];3171 -> 3267[label="",style="solid", color="black", weight=3]; 3172[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];3172 -> 3268[label="",style="solid", color="black", weight=3]; 3173[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];3173 -> 3269[label="",style="solid", color="black", weight=3]; 3174[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5317[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];3174 -> 5317[label="",style="solid", color="burlywood", weight=9]; 5317 -> 3270[label="",style="solid", color="burlywood", weight=3]; 3175[label="compare1 (Left yvy7900) yvy800 (Left yvy7900 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5318[label="yvy800/Left yvy8000",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5318[label="",style="solid", color="burlywood", weight=9]; 5318 -> 3271[label="",style="solid", color="burlywood", weight=3]; 5319[label="yvy800/Right yvy8000",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5319[label="",style="solid", color="burlywood", weight=9]; 5319 -> 3272[label="",style="solid", color="burlywood", weight=3]; 3176[label="compare1 (Right yvy7900) yvy800 (Right yvy7900 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5320[label="yvy800/Left yvy8000",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5320[label="",style="solid", color="burlywood", weight=9]; 5320 -> 3273[label="",style="solid", color="burlywood", weight=3]; 5321[label="yvy800/Right yvy8000",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5321[label="",style="solid", color="burlywood", weight=9]; 5321 -> 3274[label="",style="solid", color="burlywood", weight=3]; 744[label="GT",fontsize=16,color="green",shape="box"];745[label="compare (Left yvy20) (Left yvy15)",fontsize=16,color="black",shape="triangle"];745 -> 877[label="",style="solid", color="black", weight=3]; 746[label="FiniteMap.splitLT0 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) otherwise",fontsize=16,color="black",shape="box"];746 -> 878[label="",style="solid", color="black", weight=3]; 747 -> 12[label="",style="dashed", color="red", weight=0]; 747[label="FiniteMap.mkVBalBranch (Left yvy15) yvy16 yvy18 (FiniteMap.splitLT yvy19 (Left yvy20))",fontsize=16,color="magenta"];747 -> 879[label="",style="dashed", color="magenta", weight=3]; 747 -> 880[label="",style="dashed", color="magenta", weight=3]; 747 -> 881[label="",style="dashed", color="magenta", weight=3]; 747 -> 882[label="",style="dashed", color="magenta", weight=3]; 748[label="GT",fontsize=16,color="green",shape="box"];749[label="compare (Left yvy400) (Right yvy300)",fontsize=16,color="black",shape="triangle"];749 -> 883[label="",style="solid", color="black", weight=3]; 750[label="FiniteMap.splitLT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) otherwise",fontsize=16,color="black",shape="box"];750 -> 884[label="",style="solid", color="black", weight=3]; 751 -> 12[label="",style="dashed", color="red", weight=0]; 751[label="FiniteMap.mkVBalBranch (Right yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Left yvy400))",fontsize=16,color="magenta"];751 -> 885[label="",style="dashed", color="magenta", weight=3]; 751 -> 886[label="",style="dashed", color="magenta", weight=3]; 751 -> 887[label="",style="dashed", color="magenta", weight=3]; 751 -> 888[label="",style="dashed", color="magenta", weight=3]; 752 -> 67[label="",style="dashed", color="red", weight=0]; 752[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];753[label="yvy330",fontsize=16,color="green",shape="box"];754[label="yvy332",fontsize=16,color="green",shape="box"];755[label="Left yvy400",fontsize=16,color="green",shape="box"];756[label="yvy334",fontsize=16,color="green",shape="box"];757[label="yvy333",fontsize=16,color="green",shape="box"];758[label="yvy331",fontsize=16,color="green",shape="box"];760[label="GT",fontsize=16,color="green",shape="box"];761[label="compare (Right yvy400) (Left yvy300)",fontsize=16,color="black",shape="triangle"];761 -> 890[label="",style="solid", color="black", weight=3]; 762[label="FiniteMap.splitLT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) otherwise",fontsize=16,color="black",shape="box"];762 -> 891[label="",style="solid", color="black", weight=3]; 763 -> 12[label="",style="dashed", color="red", weight=0]; 763[label="FiniteMap.mkVBalBranch (Left yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Right yvy400))",fontsize=16,color="magenta"];763 -> 892[label="",style="dashed", color="magenta", weight=3]; 763 -> 893[label="",style="dashed", color="magenta", weight=3]; 763 -> 894[label="",style="dashed", color="magenta", weight=3]; 763 -> 895[label="",style="dashed", color="magenta", weight=3]; 764 -> 67[label="",style="dashed", color="red", weight=0]; 764[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];765[label="yvy330",fontsize=16,color="green",shape="box"];766[label="yvy332",fontsize=16,color="green",shape="box"];767[label="Right yvy400",fontsize=16,color="green",shape="box"];768[label="yvy334",fontsize=16,color="green",shape="box"];769[label="yvy333",fontsize=16,color="green",shape="box"];770[label="yvy331",fontsize=16,color="green",shape="box"];772[label="GT",fontsize=16,color="green",shape="box"];773[label="compare (Right yvy35) (Right yvy30)",fontsize=16,color="black",shape="triangle"];773 -> 906[label="",style="solid", color="black", weight=3]; 774[label="FiniteMap.splitLT0 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) otherwise",fontsize=16,color="black",shape="box"];774 -> 907[label="",style="solid", color="black", weight=3]; 775 -> 12[label="",style="dashed", color="red", weight=0]; 775[label="FiniteMap.mkVBalBranch (Right yvy30) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Right yvy35))",fontsize=16,color="magenta"];775 -> 908[label="",style="dashed", color="magenta", weight=3]; 775 -> 909[label="",style="dashed", color="magenta", weight=3]; 775 -> 910[label="",style="dashed", color="magenta", weight=3]; 775 -> 911[label="",style="dashed", color="magenta", weight=3]; 776[label="LT",fontsize=16,color="green",shape="box"];777 -> 745[label="",style="dashed", color="red", weight=0]; 777[label="compare (Left yvy50) (Left yvy45)",fontsize=16,color="magenta"];777 -> 912[label="",style="dashed", color="magenta", weight=3]; 777 -> 913[label="",style="dashed", color="magenta", weight=3]; 778[label="FiniteMap.splitGT0 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) otherwise",fontsize=16,color="black",shape="box"];778 -> 914[label="",style="solid", color="black", weight=3]; 779 -> 12[label="",style="dashed", color="red", weight=0]; 779[label="FiniteMap.mkVBalBranch (Left yvy45) yvy46 (FiniteMap.splitGT yvy48 (Left yvy50)) yvy49",fontsize=16,color="magenta"];779 -> 915[label="",style="dashed", color="magenta", weight=3]; 779 -> 916[label="",style="dashed", color="magenta", weight=3]; 779 -> 917[label="",style="dashed", color="magenta", weight=3]; 779 -> 918[label="",style="dashed", color="magenta", weight=3]; 780[label="LT",fontsize=16,color="green",shape="box"];781 -> 749[label="",style="dashed", color="red", weight=0]; 781[label="compare (Left yvy400) (Right yvy300)",fontsize=16,color="magenta"];782[label="FiniteMap.splitGT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) otherwise",fontsize=16,color="black",shape="box"];782 -> 919[label="",style="solid", color="black", weight=3]; 783 -> 12[label="",style="dashed", color="red", weight=0]; 783[label="FiniteMap.mkVBalBranch (Right yvy300) yvy31 (FiniteMap.splitGT yvy33 (Left yvy400)) yvy34",fontsize=16,color="magenta"];783 -> 920[label="",style="dashed", color="magenta", weight=3]; 783 -> 921[label="",style="dashed", color="magenta", weight=3]; 783 -> 922[label="",style="dashed", color="magenta", weight=3]; 783 -> 923[label="",style="dashed", color="magenta", weight=3]; 784 -> 67[label="",style="dashed", color="red", weight=0]; 784[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];785[label="yvy340",fontsize=16,color="green",shape="box"];786[label="yvy342",fontsize=16,color="green",shape="box"];787[label="Left yvy400",fontsize=16,color="green",shape="box"];788[label="yvy344",fontsize=16,color="green",shape="box"];789[label="yvy343",fontsize=16,color="green",shape="box"];790[label="yvy341",fontsize=16,color="green",shape="box"];791[label="LT",fontsize=16,color="green",shape="box"];792 -> 761[label="",style="dashed", color="red", weight=0]; 792[label="compare (Right yvy400) (Left yvy300)",fontsize=16,color="magenta"];793[label="FiniteMap.splitGT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) otherwise",fontsize=16,color="black",shape="box"];793 -> 924[label="",style="solid", color="black", weight=3]; 794 -> 12[label="",style="dashed", color="red", weight=0]; 794[label="FiniteMap.mkVBalBranch (Left yvy300) yvy31 (FiniteMap.splitGT yvy33 (Right yvy400)) yvy34",fontsize=16,color="magenta"];794 -> 925[label="",style="dashed", color="magenta", weight=3]; 794 -> 926[label="",style="dashed", color="magenta", weight=3]; 794 -> 927[label="",style="dashed", color="magenta", weight=3]; 794 -> 928[label="",style="dashed", color="magenta", weight=3]; 795 -> 67[label="",style="dashed", color="red", weight=0]; 795[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];796[label="yvy340",fontsize=16,color="green",shape="box"];797[label="yvy342",fontsize=16,color="green",shape="box"];798[label="Right yvy400",fontsize=16,color="green",shape="box"];799[label="yvy344",fontsize=16,color="green",shape="box"];800[label="yvy343",fontsize=16,color="green",shape="box"];801[label="yvy341",fontsize=16,color="green",shape="box"];802[label="LT",fontsize=16,color="green",shape="box"];803 -> 773[label="",style="dashed", color="red", weight=0]; 803[label="compare (Right yvy65) (Right yvy60)",fontsize=16,color="magenta"];803 -> 929[label="",style="dashed", color="magenta", weight=3]; 803 -> 930[label="",style="dashed", color="magenta", weight=3]; 804[label="FiniteMap.splitGT0 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) otherwise",fontsize=16,color="black",shape="box"];804 -> 931[label="",style="solid", color="black", weight=3]; 805 -> 12[label="",style="dashed", color="red", weight=0]; 805[label="FiniteMap.mkVBalBranch (Right yvy60) yvy61 (FiniteMap.splitGT yvy63 (Right yvy65)) yvy64",fontsize=16,color="magenta"];805 -> 932[label="",style="dashed", color="magenta", weight=3]; 805 -> 933[label="",style="dashed", color="magenta", weight=3]; 805 -> 934[label="",style="dashed", color="magenta", weight=3]; 805 -> 935[label="",style="dashed", color="magenta", weight=3]; 2852[label="Left yvy400",fontsize=16,color="green",shape="box"];2853[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];5322[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 2935[label="",style="solid", color="blue", weight=3]; 5323[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 2936[label="",style="solid", color="blue", weight=3]; 5324[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 2937[label="",style="solid", color="blue", weight=3]; 5325[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 2938[label="",style="solid", color="blue", weight=3]; 5326[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5326[label="",style="solid", color="blue", weight=9]; 5326 -> 2939[label="",style="solid", color="blue", weight=3]; 5327[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5327[label="",style="solid", color="blue", weight=9]; 5327 -> 2940[label="",style="solid", color="blue", weight=3]; 5328[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5328[label="",style="solid", color="blue", weight=9]; 5328 -> 2941[label="",style="solid", color="blue", weight=3]; 5329[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5329[label="",style="solid", color="blue", weight=9]; 5329 -> 2942[label="",style="solid", color="blue", weight=3]; 5330[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5330[label="",style="solid", color="blue", weight=9]; 5330 -> 2943[label="",style="solid", color="blue", weight=3]; 5331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5331[label="",style="solid", color="blue", weight=9]; 5331 -> 2944[label="",style="solid", color="blue", weight=3]; 5332[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5332[label="",style="solid", color="blue", weight=9]; 5332 -> 2945[label="",style="solid", color="blue", weight=3]; 5333[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5333[label="",style="solid", color="blue", weight=9]; 5333 -> 2946[label="",style="solid", color="blue", weight=3]; 5334[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5334[label="",style="solid", color="blue", weight=9]; 5334 -> 2947[label="",style="solid", color="blue", weight=3]; 5335[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5335[label="",style="solid", color="blue", weight=9]; 5335 -> 2948[label="",style="solid", color="blue", weight=3]; 2854[label="Left yvy500",fontsize=16,color="green",shape="box"];809 -> 950[label="",style="dashed", color="red", weight=0]; 809[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (Left yvy400 > Left yvy500)",fontsize=16,color="magenta"];809 -> 951[label="",style="dashed", color="magenta", weight=3]; 810 -> 825[label="",style="dashed", color="red", weight=0]; 810[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41) yvy54",fontsize=16,color="magenta"];810 -> 828[label="",style="dashed", color="magenta", weight=3]; 810 -> 829[label="",style="dashed", color="magenta", weight=3]; 2855[label="Left yvy400",fontsize=16,color="green",shape="box"];2856[label="False",fontsize=16,color="green",shape="box"];2857[label="Right yvy500",fontsize=16,color="green",shape="box"];812 -> 952[label="",style="dashed", color="red", weight=0]; 812[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (Left yvy400 > Right yvy500)",fontsize=16,color="magenta"];812 -> 953[label="",style="dashed", color="magenta", weight=3]; 813 -> 825[label="",style="dashed", color="red", weight=0]; 813[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41) yvy54",fontsize=16,color="magenta"];813 -> 830[label="",style="dashed", color="magenta", weight=3]; 813 -> 831[label="",style="dashed", color="magenta", weight=3]; 2858[label="Right yvy400",fontsize=16,color="green",shape="box"];2859[label="False",fontsize=16,color="green",shape="box"];2860[label="Left yvy500",fontsize=16,color="green",shape="box"];815 -> 954[label="",style="dashed", color="red", weight=0]; 815[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (Right yvy400 > Left yvy500)",fontsize=16,color="magenta"];815 -> 955[label="",style="dashed", color="magenta", weight=3]; 816 -> 825[label="",style="dashed", color="red", weight=0]; 816[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41) yvy54",fontsize=16,color="magenta"];816 -> 832[label="",style="dashed", color="magenta", weight=3]; 816 -> 833[label="",style="dashed", color="magenta", weight=3]; 2861[label="Right yvy400",fontsize=16,color="green",shape="box"];2862[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];5336[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5336[label="",style="solid", color="blue", weight=9]; 5336 -> 2949[label="",style="solid", color="blue", weight=3]; 5337[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5337[label="",style="solid", color="blue", weight=9]; 5337 -> 2950[label="",style="solid", color="blue", weight=3]; 5338[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5338[label="",style="solid", color="blue", weight=9]; 5338 -> 2951[label="",style="solid", color="blue", weight=3]; 5339[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5339[label="",style="solid", color="blue", weight=9]; 5339 -> 2952[label="",style="solid", color="blue", weight=3]; 5340[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5340[label="",style="solid", color="blue", weight=9]; 5340 -> 2953[label="",style="solid", color="blue", weight=3]; 5341[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5341[label="",style="solid", color="blue", weight=9]; 5341 -> 2954[label="",style="solid", color="blue", weight=3]; 5342[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5342[label="",style="solid", color="blue", weight=9]; 5342 -> 2955[label="",style="solid", color="blue", weight=3]; 5343[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5343[label="",style="solid", color="blue", weight=9]; 5343 -> 2956[label="",style="solid", color="blue", weight=3]; 5344[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5344[label="",style="solid", color="blue", weight=9]; 5344 -> 2957[label="",style="solid", color="blue", weight=3]; 5345[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5345[label="",style="solid", color="blue", weight=9]; 5345 -> 2958[label="",style="solid", color="blue", weight=3]; 5346[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5346[label="",style="solid", color="blue", weight=9]; 5346 -> 2959[label="",style="solid", color="blue", weight=3]; 5347[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5347[label="",style="solid", color="blue", weight=9]; 5347 -> 2960[label="",style="solid", color="blue", weight=3]; 5348[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5348[label="",style="solid", color="blue", weight=9]; 5348 -> 2961[label="",style="solid", color="blue", weight=3]; 5349[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5349[label="",style="solid", color="blue", weight=9]; 5349 -> 2962[label="",style="solid", color="blue", weight=3]; 2863[label="Right yvy500",fontsize=16,color="green",shape="box"];820 -> 970[label="",style="dashed", color="red", weight=0]; 820[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (Right yvy400 > Right yvy500)",fontsize=16,color="magenta"];820 -> 971[label="",style="dashed", color="magenta", weight=3]; 821 -> 825[label="",style="dashed", color="red", weight=0]; 821[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41) yvy54",fontsize=16,color="magenta"];821 -> 834[label="",style="dashed", color="magenta", weight=3]; 821 -> 835[label="",style="dashed", color="magenta", weight=3]; 822[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"];822 -> 972[label="",style="solid", color="black", weight=3]; 823[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];823 -> 973[label="",style="solid", color="black", weight=3]; 975 -> 3959[label="",style="dashed", color="red", weight=0]; 975[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"];975 -> 3960[label="",style="dashed", color="magenta", weight=3]; 975 -> 3961[label="",style="dashed", color="magenta", weight=3]; 974[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 yvy126",fontsize=16,color="burlywood",shape="triangle"];5350[label="yvy126/False",fontsize=10,color="white",style="solid",shape="box"];974 -> 5350[label="",style="solid", color="burlywood", weight=9]; 5350 -> 978[label="",style="solid", color="burlywood", weight=3]; 5351[label="yvy126/True",fontsize=10,color="white",style="solid",shape="box"];974 -> 5351[label="",style="solid", color="burlywood", weight=9]; 5351 -> 979[label="",style="solid", color="burlywood", weight=3]; 826 -> 12[label="",style="dashed", color="red", weight=0]; 826[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];826 -> 980[label="",style="dashed", color="magenta", weight=3]; 826 -> 981[label="",style="dashed", color="magenta", weight=3]; 825[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy107 yvy54",fontsize=16,color="black",shape="triangle"];825 -> 982[label="",style="solid", color="black", weight=3]; 836[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"];836 -> 983[label="",style="solid", color="black", weight=3]; 837[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];837 -> 984[label="",style="solid", color="black", weight=3]; 986 -> 3959[label="",style="dashed", color="red", weight=0]; 986[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"];986 -> 3962[label="",style="dashed", color="magenta", weight=3]; 986 -> 3963[label="",style="dashed", color="magenta", weight=3]; 985[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 yvy127",fontsize=16,color="burlywood",shape="triangle"];5352[label="yvy127/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 5352[label="",style="solid", color="burlywood", weight=9]; 5352 -> 989[label="",style="solid", color="burlywood", weight=3]; 5353[label="yvy127/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 5353[label="",style="solid", color="burlywood", weight=9]; 5353 -> 990[label="",style="solid", color="burlywood", weight=3]; 827 -> 12[label="",style="dashed", color="red", weight=0]; 827[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];827 -> 991[label="",style="dashed", color="magenta", weight=3]; 827 -> 992[label="",style="dashed", color="magenta", weight=3]; 3243[label="True",fontsize=16,color="green",shape="box"];3244[label="True",fontsize=16,color="green",shape="box"];3245[label="False",fontsize=16,color="green",shape="box"];3246[label="False",fontsize=16,color="green",shape="box"];3247[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5354[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 3312[label="",style="solid", color="blue", weight=3]; 5355[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 3313[label="",style="solid", color="blue", weight=3]; 5356[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 3314[label="",style="solid", color="blue", weight=3]; 5357[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 3315[label="",style="solid", color="blue", weight=3]; 5358[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 3316[label="",style="solid", color="blue", weight=3]; 5359[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 3317[label="",style="solid", color="blue", weight=3]; 5360[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 3318[label="",style="solid", color="blue", weight=3]; 5361[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5361[label="",style="solid", color="blue", weight=9]; 5361 -> 3319[label="",style="solid", color="blue", weight=3]; 5362[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5362[label="",style="solid", color="blue", weight=9]; 5362 -> 3320[label="",style="solid", color="blue", weight=3]; 5363[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5363[label="",style="solid", color="blue", weight=9]; 5363 -> 3321[label="",style="solid", color="blue", weight=3]; 5364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5364[label="",style="solid", color="blue", weight=9]; 5364 -> 3322[label="",style="solid", color="blue", weight=3]; 5365[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5365[label="",style="solid", color="blue", weight=9]; 5365 -> 3323[label="",style="solid", color="blue", weight=3]; 5366[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5366[label="",style="solid", color="blue", weight=9]; 5366 -> 3324[label="",style="solid", color="blue", weight=3]; 5367[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5367[label="",style="solid", color="blue", weight=9]; 5367 -> 3325[label="",style="solid", color="blue", weight=3]; 3248 -> 3434[label="",style="dashed", color="red", weight=0]; 3248[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3248 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3248 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3249 -> 3434[label="",style="dashed", color="red", weight=0]; 3249[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3249 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3249 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3250[label="True",fontsize=16,color="green",shape="box"];3251[label="False",fontsize=16,color="green",shape="box"];3252[label="False",fontsize=16,color="green",shape="box"];3253[label="True",fontsize=16,color="green",shape="box"];3254 -> 3434[label="",style="dashed", color="red", weight=0]; 3254[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];3254 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3254 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3255 -> 2987[label="",style="dashed", color="red", weight=0]; 3255[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];3255 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3255 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3256[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];5368[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3256 -> 5368[label="",style="solid", color="burlywood", weight=9]; 5368 -> 3349[label="",style="solid", color="burlywood", weight=3]; 5369[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3256 -> 5369[label="",style="solid", color="burlywood", weight=9]; 5369 -> 3350[label="",style="solid", color="burlywood", weight=3]; 3257[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];5370[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3257 -> 5370[label="",style="solid", color="burlywood", weight=9]; 5370 -> 3351[label="",style="solid", color="burlywood", weight=3]; 5371[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3257 -> 5371[label="",style="solid", color="burlywood", weight=9]; 5371 -> 3352[label="",style="solid", color="burlywood", weight=3]; 3258[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];5372[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3258 -> 5372[label="",style="solid", color="burlywood", weight=9]; 5372 -> 3353[label="",style="solid", color="burlywood", weight=3]; 5373[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3258 -> 5373[label="",style="solid", color="burlywood", weight=9]; 5373 -> 3354[label="",style="solid", color="burlywood", weight=3]; 3259[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];5374[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3259 -> 5374[label="",style="solid", color="burlywood", weight=9]; 5374 -> 3355[label="",style="solid", color="burlywood", weight=3]; 5375[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3259 -> 5375[label="",style="solid", color="burlywood", weight=9]; 5375 -> 3356[label="",style="solid", color="burlywood", weight=3]; 3260[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];3260 -> 3357[label="",style="solid", color="black", weight=3]; 3261[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];3261 -> 3358[label="",style="solid", color="black", weight=3]; 3262 -> 3434[label="",style="dashed", color="red", weight=0]; 3262[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3262 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3262 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3263[label="False",fontsize=16,color="green",shape="box"];3264[label="False",fontsize=16,color="green",shape="box"];3265[label="True",fontsize=16,color="green",shape="box"];3266[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5376[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5376[label="",style="solid", color="blue", weight=9]; 5376 -> 3359[label="",style="solid", color="blue", weight=3]; 5377[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 3360[label="",style="solid", color="blue", weight=3]; 5378[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 3361[label="",style="solid", color="blue", weight=3]; 5379[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 3362[label="",style="solid", color="blue", weight=3]; 5380[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 3363[label="",style="solid", color="blue", weight=3]; 5381[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 3364[label="",style="solid", color="blue", weight=3]; 5382[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5382[label="",style="solid", color="blue", weight=9]; 5382 -> 3365[label="",style="solid", color="blue", weight=3]; 5383[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5383[label="",style="solid", color="blue", weight=9]; 5383 -> 3366[label="",style="solid", color="blue", weight=3]; 5384[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5384[label="",style="solid", color="blue", weight=9]; 5384 -> 3367[label="",style="solid", color="blue", weight=3]; 5385[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5385[label="",style="solid", color="blue", weight=9]; 5385 -> 3368[label="",style="solid", color="blue", weight=3]; 5386[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5386[label="",style="solid", color="blue", weight=9]; 5386 -> 3369[label="",style="solid", color="blue", weight=3]; 5387[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5387[label="",style="solid", color="blue", weight=9]; 5387 -> 3370[label="",style="solid", color="blue", weight=3]; 5388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5388[label="",style="solid", color="blue", weight=9]; 5388 -> 3371[label="",style="solid", color="blue", weight=3]; 5389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3266 -> 5389[label="",style="solid", color="blue", weight=9]; 5389 -> 3372[label="",style="solid", color="blue", weight=3]; 3267[label="False",fontsize=16,color="green",shape="box"];3268[label="False",fontsize=16,color="green",shape="box"];3269[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5390[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5390[label="",style="solid", color="blue", weight=9]; 5390 -> 3373[label="",style="solid", color="blue", weight=3]; 5391[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5391[label="",style="solid", color="blue", weight=9]; 5391 -> 3374[label="",style="solid", color="blue", weight=3]; 5392[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5392[label="",style="solid", color="blue", weight=9]; 5392 -> 3375[label="",style="solid", color="blue", weight=3]; 5393[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5393[label="",style="solid", color="blue", weight=9]; 5393 -> 3376[label="",style="solid", color="blue", weight=3]; 5394[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5394[label="",style="solid", color="blue", weight=9]; 5394 -> 3377[label="",style="solid", color="blue", weight=3]; 5395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5395[label="",style="solid", color="blue", weight=9]; 5395 -> 3378[label="",style="solid", color="blue", weight=3]; 5396[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5396[label="",style="solid", color="blue", weight=9]; 5396 -> 3379[label="",style="solid", color="blue", weight=3]; 5397[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5397[label="",style="solid", color="blue", weight=9]; 5397 -> 3380[label="",style="solid", color="blue", weight=3]; 5398[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5398[label="",style="solid", color="blue", weight=9]; 5398 -> 3381[label="",style="solid", color="blue", weight=3]; 5399[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5399[label="",style="solid", color="blue", weight=9]; 5399 -> 3382[label="",style="solid", color="blue", weight=3]; 5400[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5400[label="",style="solid", color="blue", weight=9]; 5400 -> 3383[label="",style="solid", color="blue", weight=3]; 5401[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5401[label="",style="solid", color="blue", weight=9]; 5401 -> 3384[label="",style="solid", color="blue", weight=3]; 5402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5402[label="",style="solid", color="blue", weight=9]; 5402 -> 3385[label="",style="solid", color="blue", weight=3]; 5403[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3269 -> 5403[label="",style="solid", color="blue", weight=9]; 5403 -> 3386[label="",style="solid", color="blue", weight=3]; 3270[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];3270 -> 3387[label="",style="solid", color="black", weight=3]; 3271[label="compare1 (Left yvy7900) (Left yvy8000) (Left yvy7900 <= Left yvy8000)",fontsize=16,color="black",shape="box"];3271 -> 3388[label="",style="solid", color="black", weight=3]; 3272[label="compare1 (Left yvy7900) (Right yvy8000) (Left yvy7900 <= Right yvy8000)",fontsize=16,color="black",shape="box"];3272 -> 3389[label="",style="solid", color="black", weight=3]; 3273[label="compare1 (Right yvy7900) (Left yvy8000) (Right yvy7900 <= Left yvy8000)",fontsize=16,color="black",shape="box"];3273 -> 3390[label="",style="solid", color="black", weight=3]; 3274[label="compare1 (Right yvy7900) (Right yvy8000) (Right yvy7900 <= Right yvy8000)",fontsize=16,color="black",shape="box"];3274 -> 3391[label="",style="solid", color="black", weight=3]; 877[label="compare3 (Left yvy20) (Left yvy15)",fontsize=16,color="black",shape="box"];877 -> 1085[label="",style="solid", color="black", weight=3]; 878[label="FiniteMap.splitLT0 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];878 -> 1086[label="",style="solid", color="black", weight=3]; 879[label="yvy18",fontsize=16,color="green",shape="box"];880[label="Left yvy15",fontsize=16,color="green",shape="box"];881[label="yvy16",fontsize=16,color="green",shape="box"];882 -> 236[label="",style="dashed", color="red", weight=0]; 882[label="FiniteMap.splitLT yvy19 (Left yvy20)",fontsize=16,color="magenta"];882 -> 1087[label="",style="dashed", color="magenta", weight=3]; 882 -> 1088[label="",style="dashed", color="magenta", weight=3]; 883[label="compare3 (Left yvy400) (Right yvy300)",fontsize=16,color="black",shape="box"];883 -> 1089[label="",style="solid", color="black", weight=3]; 884[label="FiniteMap.splitLT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];884 -> 1090[label="",style="solid", color="black", weight=3]; 885[label="yvy33",fontsize=16,color="green",shape="box"];886[label="Right yvy300",fontsize=16,color="green",shape="box"];887[label="yvy31",fontsize=16,color="green",shape="box"];888 -> 236[label="",style="dashed", color="red", weight=0]; 888[label="FiniteMap.splitLT yvy34 (Left yvy400)",fontsize=16,color="magenta"];888 -> 1091[label="",style="dashed", color="magenta", weight=3]; 890[label="compare3 (Right yvy400) (Left yvy300)",fontsize=16,color="black",shape="box"];890 -> 1092[label="",style="solid", color="black", weight=3]; 891[label="FiniteMap.splitLT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];891 -> 1093[label="",style="solid", color="black", weight=3]; 892[label="yvy33",fontsize=16,color="green",shape="box"];893[label="Left yvy300",fontsize=16,color="green",shape="box"];894[label="yvy31",fontsize=16,color="green",shape="box"];895 -> 279[label="",style="dashed", color="red", weight=0]; 895[label="FiniteMap.splitLT yvy34 (Right yvy400)",fontsize=16,color="magenta"];895 -> 1094[label="",style="dashed", color="magenta", weight=3]; 906[label="compare3 (Right yvy35) (Right yvy30)",fontsize=16,color="black",shape="box"];906 -> 1111[label="",style="solid", color="black", weight=3]; 907[label="FiniteMap.splitLT0 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];907 -> 1112[label="",style="solid", color="black", weight=3]; 908[label="yvy33",fontsize=16,color="green",shape="box"];909[label="Right yvy30",fontsize=16,color="green",shape="box"];910[label="yvy31",fontsize=16,color="green",shape="box"];911 -> 279[label="",style="dashed", color="red", weight=0]; 911[label="FiniteMap.splitLT yvy34 (Right yvy35)",fontsize=16,color="magenta"];911 -> 1113[label="",style="dashed", color="magenta", weight=3]; 911 -> 1114[label="",style="dashed", color="magenta", weight=3]; 912[label="yvy45",fontsize=16,color="green",shape="box"];913[label="yvy50",fontsize=16,color="green",shape="box"];914[label="FiniteMap.splitGT0 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];914 -> 1115[label="",style="solid", color="black", weight=3]; 915 -> 289[label="",style="dashed", color="red", weight=0]; 915[label="FiniteMap.splitGT yvy48 (Left yvy50)",fontsize=16,color="magenta"];915 -> 1116[label="",style="dashed", color="magenta", weight=3]; 915 -> 1117[label="",style="dashed", color="magenta", weight=3]; 916[label="Left yvy45",fontsize=16,color="green",shape="box"];917[label="yvy46",fontsize=16,color="green",shape="box"];918[label="yvy49",fontsize=16,color="green",shape="box"];919[label="FiniteMap.splitGT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];919 -> 1118[label="",style="solid", color="black", weight=3]; 920 -> 289[label="",style="dashed", color="red", weight=0]; 920[label="FiniteMap.splitGT yvy33 (Left yvy400)",fontsize=16,color="magenta"];920 -> 1119[label="",style="dashed", color="magenta", weight=3]; 921[label="Right yvy300",fontsize=16,color="green",shape="box"];922[label="yvy31",fontsize=16,color="green",shape="box"];923[label="yvy34",fontsize=16,color="green",shape="box"];924[label="FiniteMap.splitGT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];924 -> 1120[label="",style="solid", color="black", weight=3]; 925 -> 327[label="",style="dashed", color="red", weight=0]; 925[label="FiniteMap.splitGT yvy33 (Right yvy400)",fontsize=16,color="magenta"];925 -> 1121[label="",style="dashed", color="magenta", weight=3]; 926[label="Left yvy300",fontsize=16,color="green",shape="box"];927[label="yvy31",fontsize=16,color="green",shape="box"];928[label="yvy34",fontsize=16,color="green",shape="box"];929[label="yvy60",fontsize=16,color="green",shape="box"];930[label="yvy65",fontsize=16,color="green",shape="box"];931[label="FiniteMap.splitGT0 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];931 -> 1122[label="",style="solid", color="black", weight=3]; 932 -> 327[label="",style="dashed", color="red", weight=0]; 932[label="FiniteMap.splitGT yvy63 (Right yvy65)",fontsize=16,color="magenta"];932 -> 1123[label="",style="dashed", color="magenta", weight=3]; 932 -> 1124[label="",style="dashed", color="magenta", weight=3]; 933[label="Right yvy60",fontsize=16,color="green",shape="box"];934[label="yvy61",fontsize=16,color="green",shape="box"];935[label="yvy64",fontsize=16,color="green",shape="box"];2935 -> 2877[label="",style="dashed", color="red", weight=0]; 2935[label="yvy400 == yvy500",fontsize=16,color="magenta"];2935 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2936 -> 2878[label="",style="dashed", color="red", weight=0]; 2936[label="yvy400 == yvy500",fontsize=16,color="magenta"];2936 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2937 -> 2879[label="",style="dashed", color="red", weight=0]; 2937[label="yvy400 == yvy500",fontsize=16,color="magenta"];2937 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2938 -> 2880[label="",style="dashed", color="red", weight=0]; 2938[label="yvy400 == yvy500",fontsize=16,color="magenta"];2938 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2939 -> 2881[label="",style="dashed", color="red", weight=0]; 2939[label="yvy400 == yvy500",fontsize=16,color="magenta"];2939 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2940 -> 127[label="",style="dashed", color="red", weight=0]; 2940[label="yvy400 == yvy500",fontsize=16,color="magenta"];2940 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2941 -> 2883[label="",style="dashed", color="red", weight=0]; 2941[label="yvy400 == yvy500",fontsize=16,color="magenta"];2941 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2942 -> 2884[label="",style="dashed", color="red", weight=0]; 2942[label="yvy400 == yvy500",fontsize=16,color="magenta"];2942 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2943 -> 2885[label="",style="dashed", color="red", weight=0]; 2943[label="yvy400 == yvy500",fontsize=16,color="magenta"];2943 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2944 -> 2886[label="",style="dashed", color="red", weight=0]; 2944[label="yvy400 == yvy500",fontsize=16,color="magenta"];2944 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2945 -> 2887[label="",style="dashed", color="red", weight=0]; 2945[label="yvy400 == yvy500",fontsize=16,color="magenta"];2945 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2946 -> 2888[label="",style="dashed", color="red", weight=0]; 2946[label="yvy400 == yvy500",fontsize=16,color="magenta"];2946 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2947 -> 2889[label="",style="dashed", color="red", weight=0]; 2947[label="yvy400 == yvy500",fontsize=16,color="magenta"];2947 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2948 -> 2890[label="",style="dashed", color="red", weight=0]; 2948[label="yvy400 == yvy500",fontsize=16,color="magenta"];2948 -> 3066[label="",style="dashed", color="magenta", weight=3]; 951 -> 578[label="",style="dashed", color="red", weight=0]; 951[label="Left yvy400 > Left yvy500",fontsize=16,color="magenta"];951 -> 1139[label="",style="dashed", color="magenta", weight=3]; 951 -> 1140[label="",style="dashed", color="magenta", weight=3]; 950[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy122",fontsize=16,color="burlywood",shape="triangle"];5404[label="yvy122/False",fontsize=10,color="white",style="solid",shape="box"];950 -> 5404[label="",style="solid", color="burlywood", weight=9]; 5404 -> 1141[label="",style="solid", color="burlywood", weight=3]; 5405[label="yvy122/True",fontsize=10,color="white",style="solid",shape="box"];950 -> 5405[label="",style="solid", color="burlywood", weight=9]; 5405 -> 1142[label="",style="solid", color="burlywood", weight=3]; 828[label="Left yvy500",fontsize=16,color="green",shape="box"];829 -> 33[label="",style="dashed", color="red", weight=0]; 829[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41",fontsize=16,color="magenta"];829 -> 1143[label="",style="dashed", color="magenta", weight=3]; 829 -> 1144[label="",style="dashed", color="magenta", weight=3]; 953 -> 585[label="",style="dashed", color="red", weight=0]; 953[label="Left yvy400 > Right yvy500",fontsize=16,color="magenta"];953 -> 1145[label="",style="dashed", color="magenta", weight=3]; 952[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy123",fontsize=16,color="burlywood",shape="triangle"];5406[label="yvy123/False",fontsize=10,color="white",style="solid",shape="box"];952 -> 5406[label="",style="solid", color="burlywood", weight=9]; 5406 -> 1146[label="",style="solid", color="burlywood", weight=3]; 5407[label="yvy123/True",fontsize=10,color="white",style="solid",shape="box"];952 -> 5407[label="",style="solid", color="burlywood", weight=9]; 5407 -> 1147[label="",style="solid", color="burlywood", weight=3]; 830[label="Right yvy500",fontsize=16,color="green",shape="box"];831 -> 33[label="",style="dashed", color="red", weight=0]; 831[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41",fontsize=16,color="magenta"];831 -> 1148[label="",style="dashed", color="magenta", weight=3]; 831 -> 1149[label="",style="dashed", color="magenta", weight=3]; 955 -> 594[label="",style="dashed", color="red", weight=0]; 955[label="Right yvy400 > Left yvy500",fontsize=16,color="magenta"];955 -> 1150[label="",style="dashed", color="magenta", weight=3]; 954[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy124",fontsize=16,color="burlywood",shape="triangle"];5408[label="yvy124/False",fontsize=10,color="white",style="solid",shape="box"];954 -> 5408[label="",style="solid", color="burlywood", weight=9]; 5408 -> 1151[label="",style="solid", color="burlywood", weight=3]; 5409[label="yvy124/True",fontsize=10,color="white",style="solid",shape="box"];954 -> 5409[label="",style="solid", color="burlywood", weight=9]; 5409 -> 1152[label="",style="solid", color="burlywood", weight=3]; 832[label="Left yvy500",fontsize=16,color="green",shape="box"];833 -> 33[label="",style="dashed", color="red", weight=0]; 833[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41",fontsize=16,color="magenta"];833 -> 1153[label="",style="dashed", color="magenta", weight=3]; 833 -> 1154[label="",style="dashed", color="magenta", weight=3]; 2949 -> 2877[label="",style="dashed", color="red", weight=0]; 2949[label="yvy400 == yvy500",fontsize=16,color="magenta"];2949 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2949 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2950 -> 2878[label="",style="dashed", color="red", weight=0]; 2950[label="yvy400 == yvy500",fontsize=16,color="magenta"];2950 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2950 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2951 -> 2879[label="",style="dashed", color="red", weight=0]; 2951[label="yvy400 == yvy500",fontsize=16,color="magenta"];2951 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2952 -> 2880[label="",style="dashed", color="red", weight=0]; 2952[label="yvy400 == yvy500",fontsize=16,color="magenta"];2952 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2881[label="",style="dashed", color="red", weight=0]; 2953[label="yvy400 == yvy500",fontsize=16,color="magenta"];2953 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2954 -> 127[label="",style="dashed", color="red", weight=0]; 2954[label="yvy400 == yvy500",fontsize=16,color="magenta"];2954 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2955 -> 2883[label="",style="dashed", color="red", weight=0]; 2955[label="yvy400 == yvy500",fontsize=16,color="magenta"];2955 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2956 -> 2884[label="",style="dashed", color="red", weight=0]; 2956[label="yvy400 == yvy500",fontsize=16,color="magenta"];2956 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2956 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2957 -> 2885[label="",style="dashed", color="red", weight=0]; 2957[label="yvy400 == yvy500",fontsize=16,color="magenta"];2957 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2957 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2958 -> 2886[label="",style="dashed", color="red", weight=0]; 2958[label="yvy400 == yvy500",fontsize=16,color="magenta"];2958 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2958 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2959 -> 2887[label="",style="dashed", color="red", weight=0]; 2959[label="yvy400 == yvy500",fontsize=16,color="magenta"];2959 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2959 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2960 -> 2888[label="",style="dashed", color="red", weight=0]; 2960[label="yvy400 == yvy500",fontsize=16,color="magenta"];2960 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2960 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2961 -> 2889[label="",style="dashed", color="red", weight=0]; 2961[label="yvy400 == yvy500",fontsize=16,color="magenta"];2961 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2961 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2962 -> 2890[label="",style="dashed", color="red", weight=0]; 2962[label="yvy400 == yvy500",fontsize=16,color="magenta"];2962 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2962 -> 3094[label="",style="dashed", color="magenta", weight=3]; 971 -> 632[label="",style="dashed", color="red", weight=0]; 971[label="Right yvy400 > Right yvy500",fontsize=16,color="magenta"];971 -> 1183[label="",style="dashed", color="magenta", weight=3]; 971 -> 1184[label="",style="dashed", color="magenta", weight=3]; 970[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy125",fontsize=16,color="burlywood",shape="triangle"];5410[label="yvy125/False",fontsize=10,color="white",style="solid",shape="box"];970 -> 5410[label="",style="solid", color="burlywood", weight=9]; 5410 -> 1185[label="",style="solid", color="burlywood", weight=3]; 5411[label="yvy125/True",fontsize=10,color="white",style="solid",shape="box"];970 -> 5411[label="",style="solid", color="burlywood", weight=9]; 5411 -> 1186[label="",style="solid", color="burlywood", weight=3]; 834[label="Right yvy500",fontsize=16,color="green",shape="box"];835 -> 33[label="",style="dashed", color="red", weight=0]; 835[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41",fontsize=16,color="magenta"];835 -> 1187[label="",style="dashed", color="magenta", weight=3]; 835 -> 1188[label="",style="dashed", color="magenta", weight=3]; 972[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"];972 -> 1189[label="",style="solid", color="black", weight=3]; 973[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];973 -> 1190[label="",style="solid", color="black", weight=3]; 3960[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3960 -> 3968[label="",style="solid", color="black", weight=3]; 3961 -> 1321[label="",style="dashed", color="red", weight=0]; 3961[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3961 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3961 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3959[label="yvy239 < yvy238",fontsize=16,color="black",shape="triangle"];3959 -> 3971[label="",style="solid", color="black", weight=3]; 978[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"];978 -> 1193[label="",style="solid", color="black", weight=3]; 979[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"];979 -> 1194[label="",style="solid", color="black", weight=3]; 980[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];981[label="yvy53",fontsize=16,color="green",shape="box"];982[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy107 yvy54",fontsize=16,color="black",shape="box"];982 -> 1195[label="",style="solid", color="black", weight=3]; 983[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"];983 -> 1196[label="",style="solid", color="black", weight=3]; 984[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];984 -> 1197[label="",style="solid", color="black", weight=3]; 3962[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3962 -> 3972[label="",style="solid", color="black", weight=3]; 3963 -> 1321[label="",style="dashed", color="red", weight=0]; 3963[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3963 -> 3973[label="",style="dashed", color="magenta", weight=3]; 3963 -> 3974[label="",style="dashed", color="magenta", weight=3]; 989[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"];989 -> 1200[label="",style="solid", color="black", weight=3]; 990[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"];990 -> 1201[label="",style="solid", color="black", weight=3]; 991[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];992[label="yvy53",fontsize=16,color="green",shape="box"];3312 -> 2877[label="",style="dashed", color="red", weight=0]; 3312[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3312 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2878[label="",style="dashed", color="red", weight=0]; 3313[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3313 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2879[label="",style="dashed", color="red", weight=0]; 3314[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3314 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3315 -> 2880[label="",style="dashed", color="red", weight=0]; 3315[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3315 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2881[label="",style="dashed", color="red", weight=0]; 3316[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3316 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3317 -> 127[label="",style="dashed", color="red", weight=0]; 3317[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3317 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2883[label="",style="dashed", color="red", weight=0]; 3318[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3318 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2884[label="",style="dashed", color="red", weight=0]; 3319[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3319 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2885[label="",style="dashed", color="red", weight=0]; 3320[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3320 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2886[label="",style="dashed", color="red", weight=0]; 3321[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3321 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3322 -> 2887[label="",style="dashed", color="red", weight=0]; 3322[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3322 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2888[label="",style="dashed", color="red", weight=0]; 3323[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3323 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3324 -> 2889[label="",style="dashed", color="red", weight=0]; 3324[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3324 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3325 -> 2890[label="",style="dashed", color="red", weight=0]; 3325[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3325 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3435[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5412[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5412[label="",style="solid", color="blue", weight=9]; 5412 -> 3447[label="",style="solid", color="blue", weight=3]; 5413[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5413[label="",style="solid", color="blue", weight=9]; 5413 -> 3448[label="",style="solid", color="blue", weight=3]; 5414[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5414[label="",style="solid", color="blue", weight=9]; 5414 -> 3449[label="",style="solid", color="blue", weight=3]; 5415[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5415[label="",style="solid", color="blue", weight=9]; 5415 -> 3450[label="",style="solid", color="blue", weight=3]; 5416[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5416[label="",style="solid", color="blue", weight=9]; 5416 -> 3451[label="",style="solid", color="blue", weight=3]; 5417[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5417[label="",style="solid", color="blue", weight=9]; 5417 -> 3452[label="",style="solid", color="blue", weight=3]; 5418[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5418[label="",style="solid", color="blue", weight=9]; 5418 -> 3453[label="",style="solid", color="blue", weight=3]; 5419[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5419[label="",style="solid", color="blue", weight=9]; 5419 -> 3454[label="",style="solid", color="blue", weight=3]; 5420[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5420[label="",style="solid", color="blue", weight=9]; 5420 -> 3455[label="",style="solid", color="blue", weight=3]; 5421[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5421[label="",style="solid", color="blue", weight=9]; 5421 -> 3456[label="",style="solid", color="blue", weight=3]; 5422[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5422[label="",style="solid", color="blue", weight=9]; 5422 -> 3457[label="",style="solid", color="blue", weight=3]; 5423[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 3458[label="",style="solid", color="blue", weight=3]; 5424[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 3459[label="",style="solid", color="blue", weight=3]; 5425[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3435 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 3460[label="",style="solid", color="blue", weight=3]; 3436[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 3461[label="",style="solid", color="blue", weight=3]; 5427[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 3462[label="",style="solid", color="blue", weight=3]; 5428[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 3463[label="",style="solid", color="blue", weight=3]; 5429[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 3464[label="",style="solid", color="blue", weight=3]; 5430[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 3465[label="",style="solid", color="blue", weight=3]; 5431[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 3466[label="",style="solid", color="blue", weight=3]; 5432[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 3467[label="",style="solid", color="blue", weight=3]; 5433[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 3468[label="",style="solid", color="blue", weight=3]; 5434[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 3469[label="",style="solid", color="blue", weight=3]; 5435[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 3470[label="",style="solid", color="blue", weight=3]; 5436[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 3471[label="",style="solid", color="blue", weight=3]; 5437[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 3472[label="",style="solid", color="blue", weight=3]; 5438[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 3473[label="",style="solid", color="blue", weight=3]; 5439[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 3474[label="",style="solid", color="blue", weight=3]; 3434[label="yvy220 && yvy221",fontsize=16,color="burlywood",shape="triangle"];5440[label="yvy220/False",fontsize=10,color="white",style="solid",shape="box"];3434 -> 5440[label="",style="solid", color="burlywood", weight=9]; 5440 -> 3475[label="",style="solid", color="burlywood", weight=3]; 5441[label="yvy220/True",fontsize=10,color="white",style="solid",shape="box"];3434 -> 5441[label="",style="solid", color="burlywood", weight=9]; 5441 -> 3476[label="",style="solid", color="burlywood", weight=3]; 3437[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5442[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3437 -> 5442[label="",style="solid", color="blue", weight=9]; 5442 -> 3477[label="",style="solid", color="blue", weight=3]; 5443[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3437 -> 5443[label="",style="solid", color="blue", weight=9]; 5443 -> 3478[label="",style="solid", color="blue", weight=3]; 3438[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5444[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3438 -> 5444[label="",style="solid", color="blue", weight=9]; 5444 -> 3479[label="",style="solid", color="blue", weight=3]; 5445[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3438 -> 5445[label="",style="solid", color="blue", weight=9]; 5445 -> 3480[label="",style="solid", color="blue", weight=3]; 3439 -> 3434[label="",style="dashed", color="red", weight=0]; 3439[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];3439 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3440[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5446[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5446[label="",style="solid", color="blue", weight=9]; 5446 -> 3483[label="",style="solid", color="blue", weight=3]; 5447[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5447[label="",style="solid", color="blue", weight=9]; 5447 -> 3484[label="",style="solid", color="blue", weight=3]; 5448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5448[label="",style="solid", color="blue", weight=9]; 5448 -> 3485[label="",style="solid", color="blue", weight=3]; 5449[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5449[label="",style="solid", color="blue", weight=9]; 5449 -> 3486[label="",style="solid", color="blue", weight=3]; 5450[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5450[label="",style="solid", color="blue", weight=9]; 5450 -> 3487[label="",style="solid", color="blue", weight=3]; 5451[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5451[label="",style="solid", color="blue", weight=9]; 5451 -> 3488[label="",style="solid", color="blue", weight=3]; 5452[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5452[label="",style="solid", color="blue", weight=9]; 5452 -> 3489[label="",style="solid", color="blue", weight=3]; 5453[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5453[label="",style="solid", color="blue", weight=9]; 5453 -> 3490[label="",style="solid", color="blue", weight=3]; 5454[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5454[label="",style="solid", color="blue", weight=9]; 5454 -> 3491[label="",style="solid", color="blue", weight=3]; 5455[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5455[label="",style="solid", color="blue", weight=9]; 5455 -> 3492[label="",style="solid", color="blue", weight=3]; 5456[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5456[label="",style="solid", color="blue", weight=9]; 5456 -> 3493[label="",style="solid", color="blue", weight=3]; 5457[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5457[label="",style="solid", color="blue", weight=9]; 5457 -> 3494[label="",style="solid", color="blue", weight=3]; 5458[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5458[label="",style="solid", color="blue", weight=9]; 5458 -> 3495[label="",style="solid", color="blue", weight=3]; 5459[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5459[label="",style="solid", color="blue", weight=9]; 5459 -> 3496[label="",style="solid", color="blue", weight=3]; 3347[label="yvy3000",fontsize=16,color="green",shape="box"];3348[label="yvy4000",fontsize=16,color="green",shape="box"];3349[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5460[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3349 -> 5460[label="",style="solid", color="burlywood", weight=9]; 5460 -> 3497[label="",style="solid", color="burlywood", weight=3]; 5461[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3349 -> 5461[label="",style="solid", color="burlywood", weight=9]; 5461 -> 3498[label="",style="solid", color="burlywood", weight=3]; 3350[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];3350 -> 3499[label="",style="solid", color="black", weight=3]; 3351[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5462[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3351 -> 5462[label="",style="solid", color="burlywood", weight=9]; 5462 -> 3500[label="",style="solid", color="burlywood", weight=3]; 5463[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3351 -> 5463[label="",style="solid", color="burlywood", weight=9]; 5463 -> 3501[label="",style="solid", color="burlywood", weight=3]; 3352[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5464[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3352 -> 5464[label="",style="solid", color="burlywood", weight=9]; 5464 -> 3502[label="",style="solid", color="burlywood", weight=3]; 5465[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3352 -> 5465[label="",style="solid", color="burlywood", weight=9]; 5465 -> 3503[label="",style="solid", color="burlywood", weight=3]; 3353[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];3353 -> 3504[label="",style="solid", color="black", weight=3]; 3354[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5466[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3354 -> 5466[label="",style="solid", color="burlywood", weight=9]; 5466 -> 3505[label="",style="solid", color="burlywood", weight=3]; 5467[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3354 -> 5467[label="",style="solid", color="burlywood", weight=9]; 5467 -> 3506[label="",style="solid", color="burlywood", weight=3]; 3355[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5468[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3355 -> 5468[label="",style="solid", color="burlywood", weight=9]; 5468 -> 3507[label="",style="solid", color="burlywood", weight=3]; 5469[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3355 -> 5469[label="",style="solid", color="burlywood", weight=9]; 5469 -> 3508[label="",style="solid", color="burlywood", weight=3]; 3356[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5470[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3356 -> 5470[label="",style="solid", color="burlywood", weight=9]; 5470 -> 3509[label="",style="solid", color="burlywood", weight=3]; 5471[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3356 -> 5471[label="",style="solid", color="burlywood", weight=9]; 5471 -> 3510[label="",style="solid", color="burlywood", weight=3]; 3357 -> 2885[label="",style="dashed", color="red", weight=0]; 3357[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];3357 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3357 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3358 -> 2885[label="",style="dashed", color="red", weight=0]; 3358[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];3358 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3358 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3441 -> 2888[label="",style="dashed", color="red", weight=0]; 3441[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3441 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3441 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3442[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5472[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 3517[label="",style="solid", color="blue", weight=3]; 5473[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 3518[label="",style="solid", color="blue", weight=3]; 5474[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 3519[label="",style="solid", color="blue", weight=3]; 5475[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 3520[label="",style="solid", color="blue", weight=3]; 5476[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 3521[label="",style="solid", color="blue", weight=3]; 5477[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 3522[label="",style="solid", color="blue", weight=3]; 5478[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5478[label="",style="solid", color="blue", weight=9]; 5478 -> 3523[label="",style="solid", color="blue", weight=3]; 5479[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5479[label="",style="solid", color="blue", weight=9]; 5479 -> 3524[label="",style="solid", color="blue", weight=3]; 5480[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5480[label="",style="solid", color="blue", weight=9]; 5480 -> 3525[label="",style="solid", color="blue", weight=3]; 5481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5481[label="",style="solid", color="blue", weight=9]; 5481 -> 3526[label="",style="solid", color="blue", weight=3]; 5482[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5482[label="",style="solid", color="blue", weight=9]; 5482 -> 3527[label="",style="solid", color="blue", weight=3]; 5483[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5483[label="",style="solid", color="blue", weight=9]; 5483 -> 3528[label="",style="solid", color="blue", weight=3]; 5484[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5484[label="",style="solid", color="blue", weight=9]; 5484 -> 3529[label="",style="solid", color="blue", weight=3]; 5485[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3442 -> 5485[label="",style="solid", color="blue", weight=9]; 5485 -> 3530[label="",style="solid", color="blue", weight=3]; 3359 -> 2877[label="",style="dashed", color="red", weight=0]; 3359[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3359 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3360 -> 2878[label="",style="dashed", color="red", weight=0]; 3360[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3360 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3360 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3361 -> 2879[label="",style="dashed", color="red", weight=0]; 3361[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3361 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3361 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3362 -> 2880[label="",style="dashed", color="red", weight=0]; 3362[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3362 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3362 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3363 -> 2881[label="",style="dashed", color="red", weight=0]; 3363[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3363 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3363 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3364 -> 127[label="",style="dashed", color="red", weight=0]; 3364[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3364 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3364 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3365 -> 2883[label="",style="dashed", color="red", weight=0]; 3365[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3365 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3365 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3366 -> 2884[label="",style="dashed", color="red", weight=0]; 3366[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3366 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3366 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3367 -> 2885[label="",style="dashed", color="red", weight=0]; 3367[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3367 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3367 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3368 -> 2886[label="",style="dashed", color="red", weight=0]; 3368[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3368 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3368 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3369 -> 2887[label="",style="dashed", color="red", weight=0]; 3369[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3369 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3369 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3370 -> 2888[label="",style="dashed", color="red", weight=0]; 3370[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3370 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3370 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3371 -> 2889[label="",style="dashed", color="red", weight=0]; 3371[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3371 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3371 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3372 -> 2890[label="",style="dashed", color="red", weight=0]; 3372[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3372 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3372 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3373 -> 2877[label="",style="dashed", color="red", weight=0]; 3373[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3373 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3373 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3374 -> 2878[label="",style="dashed", color="red", weight=0]; 3374[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3374 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3374 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3375 -> 2879[label="",style="dashed", color="red", weight=0]; 3375[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3375 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3376 -> 2880[label="",style="dashed", color="red", weight=0]; 3376[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3376 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3376 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3377 -> 2881[label="",style="dashed", color="red", weight=0]; 3377[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3377 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3378 -> 127[label="",style="dashed", color="red", weight=0]; 3378[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3378 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3378 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3379 -> 2883[label="",style="dashed", color="red", weight=0]; 3379[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3379 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3379 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3380 -> 2884[label="",style="dashed", color="red", weight=0]; 3380[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3380 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3380 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3381 -> 2885[label="",style="dashed", color="red", weight=0]; 3381[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3381 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3382 -> 2886[label="",style="dashed", color="red", weight=0]; 3382[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3382 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3382 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3383 -> 2887[label="",style="dashed", color="red", weight=0]; 3383[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3383 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3383 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3384 -> 2888[label="",style="dashed", color="red", weight=0]; 3384[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3384 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3384 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3385 -> 2889[label="",style="dashed", color="red", weight=0]; 3385[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3385 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3386 -> 2890[label="",style="dashed", color="red", weight=0]; 3386[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3386 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3387[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];5486[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3387 -> 5486[label="",style="solid", color="burlywood", weight=9]; 5486 -> 3587[label="",style="solid", color="burlywood", weight=3]; 5487[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3387 -> 5487[label="",style="solid", color="burlywood", weight=9]; 5487 -> 3588[label="",style="solid", color="burlywood", weight=3]; 3388 -> 3589[label="",style="dashed", color="red", weight=0]; 3388[label="compare1 (Left yvy7900) (Left yvy8000) (yvy7900 <= yvy8000)",fontsize=16,color="magenta"];3388 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3389[label="compare1 (Left yvy7900) (Right yvy8000) True",fontsize=16,color="black",shape="box"];3389 -> 3593[label="",style="solid", color="black", weight=3]; 3390[label="compare1 (Right yvy7900) (Left yvy8000) False",fontsize=16,color="black",shape="box"];3390 -> 3594[label="",style="solid", color="black", weight=3]; 3391 -> 3595[label="",style="dashed", color="red", weight=0]; 3391[label="compare1 (Right yvy7900) (Right yvy8000) (yvy7900 <= yvy8000)",fontsize=16,color="magenta"];3391 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3598[label="",style="dashed", color="magenta", weight=3]; 1085 -> 2815[label="",style="dashed", color="red", weight=0]; 1085[label="compare2 (Left yvy20) (Left yvy15) (Left yvy20 == Left yvy15)",fontsize=16,color="magenta"];1085 -> 2864[label="",style="dashed", color="magenta", weight=3]; 1085 -> 2865[label="",style="dashed", color="magenta", weight=3]; 1085 -> 2866[label="",style="dashed", color="magenta", weight=3]; 1086[label="yvy18",fontsize=16,color="green",shape="box"];1087[label="yvy19",fontsize=16,color="green",shape="box"];1088[label="yvy20",fontsize=16,color="green",shape="box"];1089 -> 2815[label="",style="dashed", color="red", weight=0]; 1089[label="compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300)",fontsize=16,color="magenta"];1089 -> 2867[label="",style="dashed", color="magenta", weight=3]; 1089 -> 2868[label="",style="dashed", color="magenta", weight=3]; 1089 -> 2869[label="",style="dashed", color="magenta", weight=3]; 1090[label="yvy33",fontsize=16,color="green",shape="box"];1091[label="yvy34",fontsize=16,color="green",shape="box"];1092 -> 2815[label="",style="dashed", color="red", weight=0]; 1092[label="compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300)",fontsize=16,color="magenta"];1092 -> 2870[label="",style="dashed", color="magenta", weight=3]; 1092 -> 2871[label="",style="dashed", color="magenta", weight=3]; 1092 -> 2872[label="",style="dashed", color="magenta", weight=3]; 1093[label="yvy33",fontsize=16,color="green",shape="box"];1094[label="yvy34",fontsize=16,color="green",shape="box"];1111 -> 2815[label="",style="dashed", color="red", weight=0]; 1111[label="compare2 (Right yvy35) (Right yvy30) (Right yvy35 == Right yvy30)",fontsize=16,color="magenta"];1111 -> 2873[label="",style="dashed", color="magenta", weight=3]; 1111 -> 2874[label="",style="dashed", color="magenta", weight=3]; 1111 -> 2875[label="",style="dashed", color="magenta", weight=3]; 1112[label="yvy33",fontsize=16,color="green",shape="box"];1113[label="yvy34",fontsize=16,color="green",shape="box"];1114[label="yvy35",fontsize=16,color="green",shape="box"];1115[label="yvy49",fontsize=16,color="green",shape="box"];1116[label="yvy48",fontsize=16,color="green",shape="box"];1117[label="yvy50",fontsize=16,color="green",shape="box"];1118[label="yvy34",fontsize=16,color="green",shape="box"];1119[label="yvy33",fontsize=16,color="green",shape="box"];1120[label="yvy34",fontsize=16,color="green",shape="box"];1121[label="yvy33",fontsize=16,color="green",shape="box"];1122[label="yvy64",fontsize=16,color="green",shape="box"];1123[label="yvy63",fontsize=16,color="green",shape="box"];1124[label="yvy65",fontsize=16,color="green",shape="box"];3053[label="yvy500",fontsize=16,color="green",shape="box"];3054[label="yvy500",fontsize=16,color="green",shape="box"];3055[label="yvy500",fontsize=16,color="green",shape="box"];3056[label="yvy500",fontsize=16,color="green",shape="box"];3057[label="yvy500",fontsize=16,color="green",shape="box"];3058[label="yvy500",fontsize=16,color="green",shape="box"];3059[label="yvy500",fontsize=16,color="green",shape="box"];3060[label="yvy500",fontsize=16,color="green",shape="box"];3061[label="yvy500",fontsize=16,color="green",shape="box"];3062[label="yvy500",fontsize=16,color="green",shape="box"];3063[label="yvy500",fontsize=16,color="green",shape="box"];3064[label="yvy500",fontsize=16,color="green",shape="box"];3065[label="yvy500",fontsize=16,color="green",shape="box"];3066[label="yvy500",fontsize=16,color="green",shape="box"];1139[label="yvy500",fontsize=16,color="green",shape="box"];1140[label="yvy400",fontsize=16,color="green",shape="box"];1141[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1141 -> 1472[label="",style="solid", color="black", weight=3]; 1142[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1142 -> 1473[label="",style="solid", color="black", weight=3]; 1143[label="Left yvy400",fontsize=16,color="green",shape="box"];1144[label="yvy53",fontsize=16,color="green",shape="box"];1145[label="yvy500",fontsize=16,color="green",shape="box"];1146[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1146 -> 1474[label="",style="solid", color="black", weight=3]; 1147[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1147 -> 1475[label="",style="solid", color="black", weight=3]; 1148[label="Left yvy400",fontsize=16,color="green",shape="box"];1149[label="yvy53",fontsize=16,color="green",shape="box"];1150[label="yvy500",fontsize=16,color="green",shape="box"];1151[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1151 -> 1476[label="",style="solid", color="black", weight=3]; 1152[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1152 -> 1477[label="",style="solid", color="black", weight=3]; 1153[label="Right yvy400",fontsize=16,color="green",shape="box"];1154[label="yvy53",fontsize=16,color="green",shape="box"];3067[label="yvy500",fontsize=16,color="green",shape="box"];3068[label="yvy400",fontsize=16,color="green",shape="box"];3069[label="yvy500",fontsize=16,color="green",shape="box"];3070[label="yvy400",fontsize=16,color="green",shape="box"];3071[label="yvy500",fontsize=16,color="green",shape="box"];3072[label="yvy400",fontsize=16,color="green",shape="box"];3073[label="yvy500",fontsize=16,color="green",shape="box"];3074[label="yvy400",fontsize=16,color="green",shape="box"];3075[label="yvy500",fontsize=16,color="green",shape="box"];3076[label="yvy400",fontsize=16,color="green",shape="box"];3077[label="yvy500",fontsize=16,color="green",shape="box"];3078[label="yvy400",fontsize=16,color="green",shape="box"];3079[label="yvy500",fontsize=16,color="green",shape="box"];3080[label="yvy400",fontsize=16,color="green",shape="box"];3081[label="yvy500",fontsize=16,color="green",shape="box"];3082[label="yvy400",fontsize=16,color="green",shape="box"];3083[label="yvy500",fontsize=16,color="green",shape="box"];3084[label="yvy400",fontsize=16,color="green",shape="box"];3085[label="yvy500",fontsize=16,color="green",shape="box"];3086[label="yvy400",fontsize=16,color="green",shape="box"];3087[label="yvy500",fontsize=16,color="green",shape="box"];3088[label="yvy400",fontsize=16,color="green",shape="box"];3089[label="yvy500",fontsize=16,color="green",shape="box"];3090[label="yvy400",fontsize=16,color="green",shape="box"];3091[label="yvy500",fontsize=16,color="green",shape="box"];3092[label="yvy400",fontsize=16,color="green",shape="box"];3093[label="yvy500",fontsize=16,color="green",shape="box"];3094[label="yvy400",fontsize=16,color="green",shape="box"];1183[label="yvy500",fontsize=16,color="green",shape="box"];1184[label="yvy400",fontsize=16,color="green",shape="box"];1185[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1185 -> 1478[label="",style="solid", color="black", weight=3]; 1186[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1186 -> 1479[label="",style="solid", color="black", weight=3]; 1187[label="Right yvy400",fontsize=16,color="green",shape="box"];1188[label="yvy53",fontsize=16,color="green",shape="box"];1189[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"];1189 -> 1480[label="",style="solid", color="black", weight=3]; 1190[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5488[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];1190 -> 5488[label="",style="solid", color="burlywood", weight=9]; 5488 -> 1481[label="",style="solid", color="burlywood", weight=3]; 5489[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];1190 -> 5489[label="",style="solid", color="burlywood", weight=9]; 5489 -> 1482[label="",style="solid", color="burlywood", weight=3]; 3968 -> 2777[label="",style="dashed", color="red", weight=0]; 3968[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3968 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3969 -> 1920[label="",style="dashed", color="red", weight=0]; 3969[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3970 -> 1921[label="",style="dashed", color="red", weight=0]; 3970[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1321[label="yvy4001 * yvy3000",fontsize=16,color="black",shape="triangle"];1321 -> 1633[label="",style="solid", color="black", weight=3]; 3971 -> 127[label="",style="dashed", color="red", weight=0]; 3971[label="compare yvy239 yvy238 == LT",fontsize=16,color="magenta"];3971 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3971 -> 3992[label="",style="dashed", color="magenta", weight=3]; 1193[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"];1193 -> 1484[label="",style="solid", color="black", weight=3]; 1194 -> 825[label="",style="dashed", color="red", weight=0]; 1194[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1194 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1761[label="",style="dashed", color="red", weight=0]; 1195[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1195 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1196[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"];1196 -> 1490[label="",style="solid", color="black", weight=3]; 1197[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5490[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];1197 -> 5490[label="",style="solid", color="burlywood", weight=9]; 5490 -> 1491[label="",style="solid", color="burlywood", weight=3]; 5491[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];1197 -> 5491[label="",style="solid", color="burlywood", weight=9]; 5491 -> 1492[label="",style="solid", color="burlywood", weight=3]; 3972 -> 2777[label="",style="dashed", color="red", weight=0]; 3972[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3972 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3973 -> 1947[label="",style="dashed", color="red", weight=0]; 3973[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3974 -> 1921[label="",style="dashed", color="red", weight=0]; 3974[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1200[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"];1200 -> 1494[label="",style="solid", color="black", weight=3]; 1201 -> 825[label="",style="dashed", color="red", weight=0]; 1201[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1201 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1498[label="",style="dashed", color="magenta", weight=3]; 3392[label="yvy3000",fontsize=16,color="green",shape="box"];3393[label="yvy4000",fontsize=16,color="green",shape="box"];3394[label="yvy3000",fontsize=16,color="green",shape="box"];3395[label="yvy4000",fontsize=16,color="green",shape="box"];3396[label="yvy3000",fontsize=16,color="green",shape="box"];3397[label="yvy4000",fontsize=16,color="green",shape="box"];3398[label="yvy3000",fontsize=16,color="green",shape="box"];3399[label="yvy4000",fontsize=16,color="green",shape="box"];3400[label="yvy3000",fontsize=16,color="green",shape="box"];3401[label="yvy4000",fontsize=16,color="green",shape="box"];3402[label="yvy3000",fontsize=16,color="green",shape="box"];3403[label="yvy4000",fontsize=16,color="green",shape="box"];3404[label="yvy3000",fontsize=16,color="green",shape="box"];3405[label="yvy4000",fontsize=16,color="green",shape="box"];3406[label="yvy3000",fontsize=16,color="green",shape="box"];3407[label="yvy4000",fontsize=16,color="green",shape="box"];3408[label="yvy3000",fontsize=16,color="green",shape="box"];3409[label="yvy4000",fontsize=16,color="green",shape="box"];3410[label="yvy3000",fontsize=16,color="green",shape="box"];3411[label="yvy4000",fontsize=16,color="green",shape="box"];3412[label="yvy3000",fontsize=16,color="green",shape="box"];3413[label="yvy4000",fontsize=16,color="green",shape="box"];3414[label="yvy3000",fontsize=16,color="green",shape="box"];3415[label="yvy4000",fontsize=16,color="green",shape="box"];3416[label="yvy3000",fontsize=16,color="green",shape="box"];3417[label="yvy4000",fontsize=16,color="green",shape="box"];3418[label="yvy3000",fontsize=16,color="green",shape="box"];3419[label="yvy4000",fontsize=16,color="green",shape="box"];3447 -> 2877[label="",style="dashed", color="red", weight=0]; 3447[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3447 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3448 -> 2878[label="",style="dashed", color="red", weight=0]; 3448[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3448 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3448 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3449 -> 2879[label="",style="dashed", color="red", weight=0]; 3449[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3449 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3449 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3450 -> 2880[label="",style="dashed", color="red", weight=0]; 3450[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3450 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3451 -> 2881[label="",style="dashed", color="red", weight=0]; 3451[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3451 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3452 -> 127[label="",style="dashed", color="red", weight=0]; 3452[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3452 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3452 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3453 -> 2883[label="",style="dashed", color="red", weight=0]; 3453[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3453 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3454 -> 2884[label="",style="dashed", color="red", weight=0]; 3454[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3454 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3455 -> 2885[label="",style="dashed", color="red", weight=0]; 3455[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3455 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3455 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3456 -> 2886[label="",style="dashed", color="red", weight=0]; 3456[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3456 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3457 -> 2887[label="",style="dashed", color="red", weight=0]; 3457[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3457 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3458 -> 2888[label="",style="dashed", color="red", weight=0]; 3458[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3458 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2889[label="",style="dashed", color="red", weight=0]; 3459[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3459 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3460 -> 2890[label="",style="dashed", color="red", weight=0]; 3460[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3460 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2877[label="",style="dashed", color="red", weight=0]; 3461[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3461 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2878[label="",style="dashed", color="red", weight=0]; 3462[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3462 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2879[label="",style="dashed", color="red", weight=0]; 3463[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3463 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2880[label="",style="dashed", color="red", weight=0]; 3464[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3464 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3465 -> 2881[label="",style="dashed", color="red", weight=0]; 3465[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3465 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3466 -> 127[label="",style="dashed", color="red", weight=0]; 3466[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3466 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2883[label="",style="dashed", color="red", weight=0]; 3467[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3467 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2884[label="",style="dashed", color="red", weight=0]; 3468[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3468 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2885[label="",style="dashed", color="red", weight=0]; 3469[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3469 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2886[label="",style="dashed", color="red", weight=0]; 3470[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3470 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2887[label="",style="dashed", color="red", weight=0]; 3471[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3471 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2888[label="",style="dashed", color="red", weight=0]; 3472[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3472 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2889[label="",style="dashed", color="red", weight=0]; 3473[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3473 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3474 -> 2890[label="",style="dashed", color="red", weight=0]; 3474[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3474 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3475[label="False && yvy221",fontsize=16,color="black",shape="box"];3475 -> 3655[label="",style="solid", color="black", weight=3]; 3476[label="True && yvy221",fontsize=16,color="black",shape="box"];3476 -> 3656[label="",style="solid", color="black", weight=3]; 3477 -> 2884[label="",style="dashed", color="red", weight=0]; 3477[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3477 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3478 -> 2885[label="",style="dashed", color="red", weight=0]; 3478[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3478 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3479 -> 2884[label="",style="dashed", color="red", weight=0]; 3479[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3479 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3480 -> 2885[label="",style="dashed", color="red", weight=0]; 3480[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3480 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3481[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];5492[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5492[label="",style="solid", color="blue", weight=9]; 5492 -> 3665[label="",style="solid", color="blue", weight=3]; 5493[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5493[label="",style="solid", color="blue", weight=9]; 5493 -> 3666[label="",style="solid", color="blue", weight=3]; 5494[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5494[label="",style="solid", color="blue", weight=9]; 5494 -> 3667[label="",style="solid", color="blue", weight=3]; 5495[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5495[label="",style="solid", color="blue", weight=9]; 5495 -> 3668[label="",style="solid", color="blue", weight=3]; 5496[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5496[label="",style="solid", color="blue", weight=9]; 5496 -> 3669[label="",style="solid", color="blue", weight=3]; 5497[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5497[label="",style="solid", color="blue", weight=9]; 5497 -> 3670[label="",style="solid", color="blue", weight=3]; 5498[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5498[label="",style="solid", color="blue", weight=9]; 5498 -> 3671[label="",style="solid", color="blue", weight=3]; 5499[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5499[label="",style="solid", color="blue", weight=9]; 5499 -> 3672[label="",style="solid", color="blue", weight=3]; 5500[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 3673[label="",style="solid", color="blue", weight=3]; 5501[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 3674[label="",style="solid", color="blue", weight=3]; 5502[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 3675[label="",style="solid", color="blue", weight=3]; 5503[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 3676[label="",style="solid", color="blue", weight=3]; 5504[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 3677[label="",style="solid", color="blue", weight=3]; 5505[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3481 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 3678[label="",style="solid", color="blue", weight=3]; 3482[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5506[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 3679[label="",style="solid", color="blue", weight=3]; 5507[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 3680[label="",style="solid", color="blue", weight=3]; 5508[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 3681[label="",style="solid", color="blue", weight=3]; 5509[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5509[label="",style="solid", color="blue", weight=9]; 5509 -> 3682[label="",style="solid", color="blue", weight=3]; 5510[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5510[label="",style="solid", color="blue", weight=9]; 5510 -> 3683[label="",style="solid", color="blue", weight=3]; 5511[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5511[label="",style="solid", color="blue", weight=9]; 5511 -> 3684[label="",style="solid", color="blue", weight=3]; 5512[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5512[label="",style="solid", color="blue", weight=9]; 5512 -> 3685[label="",style="solid", color="blue", weight=3]; 5513[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 3686[label="",style="solid", color="blue", weight=3]; 5514[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5514[label="",style="solid", color="blue", weight=9]; 5514 -> 3687[label="",style="solid", color="blue", weight=3]; 5515[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5515[label="",style="solid", color="blue", weight=9]; 5515 -> 3688[label="",style="solid", color="blue", weight=3]; 5516[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5516[label="",style="solid", color="blue", weight=9]; 5516 -> 3689[label="",style="solid", color="blue", weight=3]; 5517[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 3690[label="",style="solid", color="blue", weight=3]; 5518[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 3691[label="",style="solid", color="blue", weight=3]; 5519[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3482 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 3692[label="",style="solid", color="blue", weight=3]; 3483 -> 2877[label="",style="dashed", color="red", weight=0]; 3483[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3483 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3484 -> 2878[label="",style="dashed", color="red", weight=0]; 3484[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3484 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3485 -> 2879[label="",style="dashed", color="red", weight=0]; 3485[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3485 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3486 -> 2880[label="",style="dashed", color="red", weight=0]; 3486[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3486 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3487 -> 2881[label="",style="dashed", color="red", weight=0]; 3487[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3487 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3488 -> 127[label="",style="dashed", color="red", weight=0]; 3488[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3488 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3489 -> 2883[label="",style="dashed", color="red", weight=0]; 3489[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3489 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3490 -> 2884[label="",style="dashed", color="red", weight=0]; 3490[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3490 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3490 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3491 -> 2885[label="",style="dashed", color="red", weight=0]; 3491[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3491 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3491 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3492 -> 2886[label="",style="dashed", color="red", weight=0]; 3492[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3492 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3492 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3493 -> 2887[label="",style="dashed", color="red", weight=0]; 3493[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3493 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3494 -> 2888[label="",style="dashed", color="red", weight=0]; 3494[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3494 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3494 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3495 -> 2889[label="",style="dashed", color="red", weight=0]; 3495[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3495 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3495 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3496 -> 2890[label="",style="dashed", color="red", weight=0]; 3496[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3496 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3496 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3497[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3497 -> 3721[label="",style="solid", color="black", weight=3]; 3498[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3498 -> 3722[label="",style="solid", color="black", weight=3]; 3499[label="False",fontsize=16,color="green",shape="box"];3500[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3500 -> 3723[label="",style="solid", color="black", weight=3]; 3501[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3501 -> 3724[label="",style="solid", color="black", weight=3]; 3502[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3502 -> 3725[label="",style="solid", color="black", weight=3]; 3503[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3503 -> 3726[label="",style="solid", color="black", weight=3]; 3504[label="False",fontsize=16,color="green",shape="box"];3505[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3505 -> 3727[label="",style="solid", color="black", weight=3]; 3506[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3506 -> 3728[label="",style="solid", color="black", weight=3]; 3507[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3507 -> 3729[label="",style="solid", color="black", weight=3]; 3508[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3508 -> 3730[label="",style="solid", color="black", weight=3]; 3509[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3509 -> 3731[label="",style="solid", color="black", weight=3]; 3510[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3510 -> 3732[label="",style="solid", color="black", weight=3]; 3511 -> 1321[label="",style="dashed", color="red", weight=0]; 3511[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3512 -> 1321[label="",style="dashed", color="red", weight=0]; 3512[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3512 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3513 -> 1321[label="",style="dashed", color="red", weight=0]; 3513[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3513 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3514 -> 1321[label="",style="dashed", color="red", weight=0]; 3514[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3514 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3515[label="yvy3001",fontsize=16,color="green",shape="box"];3516[label="yvy4001",fontsize=16,color="green",shape="box"];3517 -> 2877[label="",style="dashed", color="red", weight=0]; 3517[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3517 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3518 -> 2878[label="",style="dashed", color="red", weight=0]; 3518[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3518 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3519 -> 2879[label="",style="dashed", color="red", weight=0]; 3519[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3519 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3520 -> 2880[label="",style="dashed", color="red", weight=0]; 3520[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3520 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3521 -> 2881[label="",style="dashed", color="red", weight=0]; 3521[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3521 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3522 -> 127[label="",style="dashed", color="red", weight=0]; 3522[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3522 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3523 -> 2883[label="",style="dashed", color="red", weight=0]; 3523[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3523 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3524 -> 2884[label="",style="dashed", color="red", weight=0]; 3524[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3524 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3525 -> 2885[label="",style="dashed", color="red", weight=0]; 3525[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3525 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3525 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3526 -> 2886[label="",style="dashed", color="red", weight=0]; 3526[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3526 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3527 -> 2887[label="",style="dashed", color="red", weight=0]; 3527[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3527 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3528 -> 2888[label="",style="dashed", color="red", weight=0]; 3528[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3528 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3528 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3529 -> 2889[label="",style="dashed", color="red", weight=0]; 3529[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3529 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3530 -> 2890[label="",style="dashed", color="red", weight=0]; 3530[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3530 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3530 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3531[label="yvy3000",fontsize=16,color="green",shape="box"];3532[label="yvy4000",fontsize=16,color="green",shape="box"];3533[label="yvy3000",fontsize=16,color="green",shape="box"];3534[label="yvy4000",fontsize=16,color="green",shape="box"];3535[label="yvy3000",fontsize=16,color="green",shape="box"];3536[label="yvy4000",fontsize=16,color="green",shape="box"];3537[label="yvy3000",fontsize=16,color="green",shape="box"];3538[label="yvy4000",fontsize=16,color="green",shape="box"];3539[label="yvy3000",fontsize=16,color="green",shape="box"];3540[label="yvy4000",fontsize=16,color="green",shape="box"];3541[label="yvy3000",fontsize=16,color="green",shape="box"];3542[label="yvy4000",fontsize=16,color="green",shape="box"];3543[label="yvy3000",fontsize=16,color="green",shape="box"];3544[label="yvy4000",fontsize=16,color="green",shape="box"];3545[label="yvy3000",fontsize=16,color="green",shape="box"];3546[label="yvy4000",fontsize=16,color="green",shape="box"];3547[label="yvy3000",fontsize=16,color="green",shape="box"];3548[label="yvy4000",fontsize=16,color="green",shape="box"];3549[label="yvy3000",fontsize=16,color="green",shape="box"];3550[label="yvy4000",fontsize=16,color="green",shape="box"];3551[label="yvy3000",fontsize=16,color="green",shape="box"];3552[label="yvy4000",fontsize=16,color="green",shape="box"];3553[label="yvy3000",fontsize=16,color="green",shape="box"];3554[label="yvy4000",fontsize=16,color="green",shape="box"];3555[label="yvy3000",fontsize=16,color="green",shape="box"];3556[label="yvy4000",fontsize=16,color="green",shape="box"];3557[label="yvy3000",fontsize=16,color="green",shape="box"];3558[label="yvy4000",fontsize=16,color="green",shape="box"];3559[label="yvy3000",fontsize=16,color="green",shape="box"];3560[label="yvy4000",fontsize=16,color="green",shape="box"];3561[label="yvy3000",fontsize=16,color="green",shape="box"];3562[label="yvy4000",fontsize=16,color="green",shape="box"];3563[label="yvy3000",fontsize=16,color="green",shape="box"];3564[label="yvy4000",fontsize=16,color="green",shape="box"];3565[label="yvy3000",fontsize=16,color="green",shape="box"];3566[label="yvy4000",fontsize=16,color="green",shape="box"];3567[label="yvy3000",fontsize=16,color="green",shape="box"];3568[label="yvy4000",fontsize=16,color="green",shape="box"];3569[label="yvy3000",fontsize=16,color="green",shape="box"];3570[label="yvy4000",fontsize=16,color="green",shape="box"];3571[label="yvy3000",fontsize=16,color="green",shape="box"];3572[label="yvy4000",fontsize=16,color="green",shape="box"];3573[label="yvy3000",fontsize=16,color="green",shape="box"];3574[label="yvy4000",fontsize=16,color="green",shape="box"];3575[label="yvy3000",fontsize=16,color="green",shape="box"];3576[label="yvy4000",fontsize=16,color="green",shape="box"];3577[label="yvy3000",fontsize=16,color="green",shape="box"];3578[label="yvy4000",fontsize=16,color="green",shape="box"];3579[label="yvy3000",fontsize=16,color="green",shape="box"];3580[label="yvy4000",fontsize=16,color="green",shape="box"];3581[label="yvy3000",fontsize=16,color="green",shape="box"];3582[label="yvy4000",fontsize=16,color="green",shape="box"];3583[label="yvy3000",fontsize=16,color="green",shape="box"];3584[label="yvy4000",fontsize=16,color="green",shape="box"];3585[label="yvy3000",fontsize=16,color="green",shape="box"];3586[label="yvy4000",fontsize=16,color="green",shape="box"];3587[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];5520[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3587 -> 5520[label="",style="solid", color="burlywood", weight=9]; 5520 -> 3767[label="",style="solid", color="burlywood", weight=3]; 5521[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3587 -> 5521[label="",style="solid", color="burlywood", weight=9]; 5521 -> 3768[label="",style="solid", color="burlywood", weight=3]; 3588[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];5522[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5522[label="",style="solid", color="burlywood", weight=9]; 5522 -> 3769[label="",style="solid", color="burlywood", weight=3]; 5523[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3588 -> 5523[label="",style="solid", color="burlywood", weight=9]; 5523 -> 3770[label="",style="solid", color="burlywood", weight=3]; 3590[label="yvy7900",fontsize=16,color="green",shape="box"];3591[label="yvy7900 <= yvy8000",fontsize=16,color="blue",shape="box"];5524[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 3771[label="",style="solid", color="blue", weight=3]; 5525[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 3772[label="",style="solid", color="blue", weight=3]; 5526[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5526[label="",style="solid", color="blue", weight=9]; 5526 -> 3773[label="",style="solid", color="blue", weight=3]; 5527[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5527[label="",style="solid", color="blue", weight=9]; 5527 -> 3774[label="",style="solid", color="blue", weight=3]; 5528[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5528[label="",style="solid", color="blue", weight=9]; 5528 -> 3775[label="",style="solid", color="blue", weight=3]; 5529[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5529[label="",style="solid", color="blue", weight=9]; 5529 -> 3776[label="",style="solid", color="blue", weight=3]; 5530[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5530[label="",style="solid", color="blue", weight=9]; 5530 -> 3777[label="",style="solid", color="blue", weight=3]; 5531[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5531[label="",style="solid", color="blue", weight=9]; 5531 -> 3778[label="",style="solid", color="blue", weight=3]; 5532[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5532[label="",style="solid", color="blue", weight=9]; 5532 -> 3779[label="",style="solid", color="blue", weight=3]; 5533[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5533[label="",style="solid", color="blue", weight=9]; 5533 -> 3780[label="",style="solid", color="blue", weight=3]; 5534[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 3781[label="",style="solid", color="blue", weight=3]; 5535[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 3782[label="",style="solid", color="blue", weight=3]; 5536[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 3783[label="",style="solid", color="blue", weight=3]; 5537[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 3784[label="",style="solid", color="blue", weight=3]; 3592[label="yvy8000",fontsize=16,color="green",shape="box"];3589[label="compare1 (Left yvy226) (Left yvy227) yvy228",fontsize=16,color="burlywood",shape="triangle"];5538[label="yvy228/False",fontsize=10,color="white",style="solid",shape="box"];3589 -> 5538[label="",style="solid", color="burlywood", weight=9]; 5538 -> 3785[label="",style="solid", color="burlywood", weight=3]; 5539[label="yvy228/True",fontsize=10,color="white",style="solid",shape="box"];3589 -> 5539[label="",style="solid", color="burlywood", weight=9]; 5539 -> 3786[label="",style="solid", color="burlywood", weight=3]; 3593[label="LT",fontsize=16,color="green",shape="box"];3594[label="compare0 (Right yvy7900) (Left yvy8000) otherwise",fontsize=16,color="black",shape="box"];3594 -> 3787[label="",style="solid", color="black", weight=3]; 3596[label="yvy7900",fontsize=16,color="green",shape="box"];3597[label="yvy7900 <= yvy8000",fontsize=16,color="blue",shape="box"];5540[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 3788[label="",style="solid", color="blue", weight=3]; 5541[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 3789[label="",style="solid", color="blue", weight=3]; 5542[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5542[label="",style="solid", color="blue", weight=9]; 5542 -> 3790[label="",style="solid", color="blue", weight=3]; 5543[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5543[label="",style="solid", color="blue", weight=9]; 5543 -> 3791[label="",style="solid", color="blue", weight=3]; 5544[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 3792[label="",style="solid", color="blue", weight=3]; 5545[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5545[label="",style="solid", color="blue", weight=9]; 5545 -> 3793[label="",style="solid", color="blue", weight=3]; 5546[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5546[label="",style="solid", color="blue", weight=9]; 5546 -> 3794[label="",style="solid", color="blue", weight=3]; 5547[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5547[label="",style="solid", color="blue", weight=9]; 5547 -> 3795[label="",style="solid", color="blue", weight=3]; 5548[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5548[label="",style="solid", color="blue", weight=9]; 5548 -> 3796[label="",style="solid", color="blue", weight=3]; 5549[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5549[label="",style="solid", color="blue", weight=9]; 5549 -> 3797[label="",style="solid", color="blue", weight=3]; 5550[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5550[label="",style="solid", color="blue", weight=9]; 5550 -> 3798[label="",style="solid", color="blue", weight=3]; 5551[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5551[label="",style="solid", color="blue", weight=9]; 5551 -> 3799[label="",style="solid", color="blue", weight=3]; 5552[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5552[label="",style="solid", color="blue", weight=9]; 5552 -> 3800[label="",style="solid", color="blue", weight=3]; 5553[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5553[label="",style="solid", color="blue", weight=9]; 5553 -> 3801[label="",style="solid", color="blue", weight=3]; 3598[label="yvy8000",fontsize=16,color="green",shape="box"];3595[label="compare1 (Right yvy233) (Right yvy234) yvy235",fontsize=16,color="burlywood",shape="triangle"];5554[label="yvy235/False",fontsize=10,color="white",style="solid",shape="box"];3595 -> 5554[label="",style="solid", color="burlywood", weight=9]; 5554 -> 3802[label="",style="solid", color="burlywood", weight=3]; 5555[label="yvy235/True",fontsize=10,color="white",style="solid",shape="box"];3595 -> 5555[label="",style="solid", color="burlywood", weight=9]; 5555 -> 3803[label="",style="solid", color="burlywood", weight=3]; 2864[label="Left yvy20",fontsize=16,color="green",shape="box"];2865[label="Left yvy20 == Left yvy15",fontsize=16,color="black",shape="box"];2865 -> 2963[label="",style="solid", color="black", weight=3]; 2866[label="Left yvy15",fontsize=16,color="green",shape="box"];2867[label="Left yvy400",fontsize=16,color="green",shape="box"];2868[label="Left yvy400 == Right yvy300",fontsize=16,color="black",shape="box"];2868 -> 2964[label="",style="solid", color="black", weight=3]; 2869[label="Right yvy300",fontsize=16,color="green",shape="box"];2870[label="Right yvy400",fontsize=16,color="green",shape="box"];2871[label="Right yvy400 == Left yvy300",fontsize=16,color="black",shape="box"];2871 -> 2965[label="",style="solid", color="black", weight=3]; 2872[label="Left yvy300",fontsize=16,color="green",shape="box"];2873[label="Right yvy35",fontsize=16,color="green",shape="box"];2874[label="Right yvy35 == Right yvy30",fontsize=16,color="black",shape="box"];2874 -> 2966[label="",style="solid", color="black", weight=3]; 2875[label="Right yvy30",fontsize=16,color="green",shape="box"];1472[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1472 -> 1727[label="",style="solid", color="black", weight=3]; 1473 -> 825[label="",style="dashed", color="red", weight=0]; 1473[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41)",fontsize=16,color="magenta"];1473 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1474[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1474 -> 1731[label="",style="solid", color="black", weight=3]; 1475 -> 825[label="",style="dashed", color="red", weight=0]; 1475[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41)",fontsize=16,color="magenta"];1475 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1476[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1476 -> 1735[label="",style="solid", color="black", weight=3]; 1477 -> 825[label="",style="dashed", color="red", weight=0]; 1477[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41)",fontsize=16,color="magenta"];1477 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1478[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1478 -> 1739[label="",style="solid", color="black", weight=3]; 1479 -> 825[label="",style="dashed", color="red", weight=0]; 1479[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41)",fontsize=16,color="magenta"];1479 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1480[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"];1480 -> 1743[label="",style="solid", color="black", weight=3]; 1481[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5556[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1481 -> 5556[label="",style="solid", color="burlywood", weight=9]; 5556 -> 1744[label="",style="solid", color="burlywood", weight=3]; 5557[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1481 -> 5557[label="",style="solid", color="burlywood", weight=9]; 5557 -> 1745[label="",style="solid", color="burlywood", weight=3]; 1482[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5558[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1482 -> 5558[label="",style="solid", color="burlywood", weight=9]; 5558 -> 1746[label="",style="solid", color="burlywood", weight=3]; 5559[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1482 -> 5559[label="",style="solid", color="burlywood", weight=9]; 5559 -> 1747[label="",style="solid", color="burlywood", weight=3]; 3990[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];2777[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];5560[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2777 -> 5560[label="",style="solid", color="burlywood", weight=9]; 5560 -> 2799[label="",style="solid", color="burlywood", weight=3]; 5561[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2777 -> 5561[label="",style="solid", color="burlywood", weight=9]; 5561 -> 2800[label="",style="solid", color="burlywood", weight=3]; 1920[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1920 -> 2070[label="",style="solid", color="black", weight=3]; 1921[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1921 -> 2071[label="",style="solid", color="black", weight=3]; 1633[label="primMulInt yvy4001 yvy3000",fontsize=16,color="burlywood",shape="triangle"];5562[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];1633 -> 5562[label="",style="solid", color="burlywood", weight=9]; 5562 -> 1841[label="",style="solid", color="burlywood", weight=3]; 5563[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];1633 -> 5563[label="",style="solid", color="burlywood", weight=9]; 5563 -> 1842[label="",style="solid", color="burlywood", weight=3]; 3991[label="LT",fontsize=16,color="green",shape="box"];3992 -> 2802[label="",style="dashed", color="red", weight=0]; 3992[label="compare yvy239 yvy238",fontsize=16,color="magenta"];3992 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3992 -> 4029[label="",style="dashed", color="magenta", weight=3]; 1484[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"];1484 -> 1758[label="",style="solid", color="black", weight=3]; 1485[label="yvy61",fontsize=16,color="green",shape="box"];1486 -> 12[label="",style="dashed", color="red", weight=0]; 1486[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1486 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1487[label="yvy60",fontsize=16,color="green",shape="box"];1488[label="yvy63",fontsize=16,color="green",shape="box"];1762 -> 3959[label="",style="dashed", color="red", weight=0]; 1762[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];1762 -> 3964[label="",style="dashed", color="magenta", weight=3]; 1762 -> 3965[label="",style="dashed", color="magenta", weight=3]; 1761[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy146",fontsize=16,color="burlywood",shape="triangle"];5564[label="yvy146/False",fontsize=10,color="white",style="solid",shape="box"];1761 -> 5564[label="",style="solid", color="burlywood", weight=9]; 5564 -> 1767[label="",style="solid", color="burlywood", weight=3]; 5565[label="yvy146/True",fontsize=10,color="white",style="solid",shape="box"];1761 -> 5565[label="",style="solid", color="burlywood", weight=9]; 5565 -> 1768[label="",style="solid", color="burlywood", weight=3]; 1490[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"];1490 -> 1769[label="",style="solid", color="black", weight=3]; 1491[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5566[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1491 -> 5566[label="",style="solid", color="burlywood", weight=9]; 5566 -> 1770[label="",style="solid", color="burlywood", weight=3]; 5567[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1491 -> 5567[label="",style="solid", color="burlywood", weight=9]; 5567 -> 1771[label="",style="solid", color="burlywood", weight=3]; 1492[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5568[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1492 -> 5568[label="",style="solid", color="burlywood", weight=9]; 5568 -> 1772[label="",style="solid", color="burlywood", weight=3]; 5569[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1492 -> 5569[label="",style="solid", color="burlywood", weight=9]; 5569 -> 1773[label="",style="solid", color="burlywood", weight=3]; 3993[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];1947[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1947 -> 2083[label="",style="solid", color="black", weight=3]; 1494[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"];1494 -> 1778[label="",style="solid", color="black", weight=3]; 1495[label="yvy61",fontsize=16,color="green",shape="box"];1496 -> 12[label="",style="dashed", color="red", weight=0]; 1496[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1496 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1497[label="yvy60",fontsize=16,color="green",shape="box"];1498[label="yvy63",fontsize=16,color="green",shape="box"];3599[label="yvy3001",fontsize=16,color="green",shape="box"];3600[label="yvy4001",fontsize=16,color="green",shape="box"];3601[label="yvy3001",fontsize=16,color="green",shape="box"];3602[label="yvy4001",fontsize=16,color="green",shape="box"];3603[label="yvy3001",fontsize=16,color="green",shape="box"];3604[label="yvy4001",fontsize=16,color="green",shape="box"];3605[label="yvy3001",fontsize=16,color="green",shape="box"];3606[label="yvy4001",fontsize=16,color="green",shape="box"];3607[label="yvy3001",fontsize=16,color="green",shape="box"];3608[label="yvy4001",fontsize=16,color="green",shape="box"];3609[label="yvy3001",fontsize=16,color="green",shape="box"];3610[label="yvy4001",fontsize=16,color="green",shape="box"];3611[label="yvy3001",fontsize=16,color="green",shape="box"];3612[label="yvy4001",fontsize=16,color="green",shape="box"];3613[label="yvy3001",fontsize=16,color="green",shape="box"];3614[label="yvy4001",fontsize=16,color="green",shape="box"];3615[label="yvy3001",fontsize=16,color="green",shape="box"];3616[label="yvy4001",fontsize=16,color="green",shape="box"];3617[label="yvy3001",fontsize=16,color="green",shape="box"];3618[label="yvy4001",fontsize=16,color="green",shape="box"];3619[label="yvy3001",fontsize=16,color="green",shape="box"];3620[label="yvy4001",fontsize=16,color="green",shape="box"];3621[label="yvy3001",fontsize=16,color="green",shape="box"];3622[label="yvy4001",fontsize=16,color="green",shape="box"];3623[label="yvy3001",fontsize=16,color="green",shape="box"];3624[label="yvy4001",fontsize=16,color="green",shape="box"];3625[label="yvy3001",fontsize=16,color="green",shape="box"];3626[label="yvy4001",fontsize=16,color="green",shape="box"];3627[label="yvy3000",fontsize=16,color="green",shape="box"];3628[label="yvy4000",fontsize=16,color="green",shape="box"];3629[label="yvy3000",fontsize=16,color="green",shape="box"];3630[label="yvy4000",fontsize=16,color="green",shape="box"];3631[label="yvy3000",fontsize=16,color="green",shape="box"];3632[label="yvy4000",fontsize=16,color="green",shape="box"];3633[label="yvy3000",fontsize=16,color="green",shape="box"];3634[label="yvy4000",fontsize=16,color="green",shape="box"];3635[label="yvy3000",fontsize=16,color="green",shape="box"];3636[label="yvy4000",fontsize=16,color="green",shape="box"];3637[label="yvy3000",fontsize=16,color="green",shape="box"];3638[label="yvy4000",fontsize=16,color="green",shape="box"];3639[label="yvy3000",fontsize=16,color="green",shape="box"];3640[label="yvy4000",fontsize=16,color="green",shape="box"];3641[label="yvy3000",fontsize=16,color="green",shape="box"];3642[label="yvy4000",fontsize=16,color="green",shape="box"];3643[label="yvy3000",fontsize=16,color="green",shape="box"];3644[label="yvy4000",fontsize=16,color="green",shape="box"];3645[label="yvy3000",fontsize=16,color="green",shape="box"];3646[label="yvy4000",fontsize=16,color="green",shape="box"];3647[label="yvy3000",fontsize=16,color="green",shape="box"];3648[label="yvy4000",fontsize=16,color="green",shape="box"];3649[label="yvy3000",fontsize=16,color="green",shape="box"];3650[label="yvy4000",fontsize=16,color="green",shape="box"];3651[label="yvy3000",fontsize=16,color="green",shape="box"];3652[label="yvy4000",fontsize=16,color="green",shape="box"];3653[label="yvy3000",fontsize=16,color="green",shape="box"];3654[label="yvy4000",fontsize=16,color="green",shape="box"];3655[label="False",fontsize=16,color="green",shape="box"];3656[label="yvy221",fontsize=16,color="green",shape="box"];3657[label="yvy3001",fontsize=16,color="green",shape="box"];3658[label="yvy4001",fontsize=16,color="green",shape="box"];3659[label="yvy3001",fontsize=16,color="green",shape="box"];3660[label="yvy4001",fontsize=16,color="green",shape="box"];3661[label="yvy3000",fontsize=16,color="green",shape="box"];3662[label="yvy4000",fontsize=16,color="green",shape="box"];3663[label="yvy3000",fontsize=16,color="green",shape="box"];3664[label="yvy4000",fontsize=16,color="green",shape="box"];3665 -> 2877[label="",style="dashed", color="red", weight=0]; 3665[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3665 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3666 -> 2878[label="",style="dashed", color="red", weight=0]; 3666[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3666 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3666 -> 3840[label="",style="dashed", color="magenta", weight=3]; 3667 -> 2879[label="",style="dashed", color="red", weight=0]; 3667[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3667 -> 3841[label="",style="dashed", color="magenta", weight=3]; 3667 -> 3842[label="",style="dashed", color="magenta", weight=3]; 3668 -> 2880[label="",style="dashed", color="red", weight=0]; 3668[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3668 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3669 -> 2881[label="",style="dashed", color="red", weight=0]; 3669[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3669 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3669 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3670 -> 127[label="",style="dashed", color="red", weight=0]; 3670[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3670 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3671 -> 2883[label="",style="dashed", color="red", weight=0]; 3671[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3671 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3671 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3672 -> 2884[label="",style="dashed", color="red", weight=0]; 3672[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3672 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3672 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3673 -> 2885[label="",style="dashed", color="red", weight=0]; 3673[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3673 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3673 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3674 -> 2886[label="",style="dashed", color="red", weight=0]; 3674[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3674 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3674 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3675 -> 2887[label="",style="dashed", color="red", weight=0]; 3675[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3675 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3675 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3676 -> 2888[label="",style="dashed", color="red", weight=0]; 3676[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3676 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3676 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3677 -> 2889[label="",style="dashed", color="red", weight=0]; 3677[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3677 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3677 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3678 -> 2890[label="",style="dashed", color="red", weight=0]; 3678[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3678 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3678 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3679 -> 2877[label="",style="dashed", color="red", weight=0]; 3679[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3679 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3679 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3680 -> 2878[label="",style="dashed", color="red", weight=0]; 3680[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3680 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3680 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3681 -> 2879[label="",style="dashed", color="red", weight=0]; 3681[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3681 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3681 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3682 -> 2880[label="",style="dashed", color="red", weight=0]; 3682[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3682 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3682 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3683 -> 2881[label="",style="dashed", color="red", weight=0]; 3683[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3683 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3683 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3684 -> 127[label="",style="dashed", color="red", weight=0]; 3684[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3684 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3684 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3685 -> 2883[label="",style="dashed", color="red", weight=0]; 3685[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3685 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3685 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3686 -> 2884[label="",style="dashed", color="red", weight=0]; 3686[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3686 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3686 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3687 -> 2885[label="",style="dashed", color="red", weight=0]; 3687[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3687 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3687 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3688 -> 2886[label="",style="dashed", color="red", weight=0]; 3688[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3688 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3688 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3689 -> 2887[label="",style="dashed", color="red", weight=0]; 3689[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3689 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3689 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3690 -> 2888[label="",style="dashed", color="red", weight=0]; 3690[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3690 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3690 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3691 -> 2889[label="",style="dashed", color="red", weight=0]; 3691[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3691 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3691 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3692 -> 2890[label="",style="dashed", color="red", weight=0]; 3692[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3692 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3692 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3693[label="yvy3000",fontsize=16,color="green",shape="box"];3694[label="yvy4000",fontsize=16,color="green",shape="box"];3695[label="yvy3000",fontsize=16,color="green",shape="box"];3696[label="yvy4000",fontsize=16,color="green",shape="box"];3697[label="yvy3000",fontsize=16,color="green",shape="box"];3698[label="yvy4000",fontsize=16,color="green",shape="box"];3699[label="yvy3000",fontsize=16,color="green",shape="box"];3700[label="yvy4000",fontsize=16,color="green",shape="box"];3701[label="yvy3000",fontsize=16,color="green",shape="box"];3702[label="yvy4000",fontsize=16,color="green",shape="box"];3703[label="yvy3000",fontsize=16,color="green",shape="box"];3704[label="yvy4000",fontsize=16,color="green",shape="box"];3705[label="yvy3000",fontsize=16,color="green",shape="box"];3706[label="yvy4000",fontsize=16,color="green",shape="box"];3707[label="yvy3000",fontsize=16,color="green",shape="box"];3708[label="yvy4000",fontsize=16,color="green",shape="box"];3709[label="yvy3000",fontsize=16,color="green",shape="box"];3710[label="yvy4000",fontsize=16,color="green",shape="box"];3711[label="yvy3000",fontsize=16,color="green",shape="box"];3712[label="yvy4000",fontsize=16,color="green",shape="box"];3713[label="yvy3000",fontsize=16,color="green",shape="box"];3714[label="yvy4000",fontsize=16,color="green",shape="box"];3715[label="yvy3000",fontsize=16,color="green",shape="box"];3716[label="yvy4000",fontsize=16,color="green",shape="box"];3717[label="yvy3000",fontsize=16,color="green",shape="box"];3718[label="yvy4000",fontsize=16,color="green",shape="box"];3719[label="yvy3000",fontsize=16,color="green",shape="box"];3720[label="yvy4000",fontsize=16,color="green",shape="box"];3721 -> 3387[label="",style="dashed", color="red", weight=0]; 3721[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3721 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3721 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3722[label="False",fontsize=16,color="green",shape="box"];3723[label="False",fontsize=16,color="green",shape="box"];3724[label="True",fontsize=16,color="green",shape="box"];3725[label="False",fontsize=16,color="green",shape="box"];3726[label="True",fontsize=16,color="green",shape="box"];3727 -> 3387[label="",style="dashed", color="red", weight=0]; 3727[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3727 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3727 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3728[label="False",fontsize=16,color="green",shape="box"];3729[label="False",fontsize=16,color="green",shape="box"];3730[label="True",fontsize=16,color="green",shape="box"];3731[label="False",fontsize=16,color="green",shape="box"];3732[label="True",fontsize=16,color="green",shape="box"];3733[label="yvy3001",fontsize=16,color="green",shape="box"];3734[label="yvy4000",fontsize=16,color="green",shape="box"];3735[label="yvy3000",fontsize=16,color="green",shape="box"];3736[label="yvy4001",fontsize=16,color="green",shape="box"];3737[label="yvy3001",fontsize=16,color="green",shape="box"];3738[label="yvy4000",fontsize=16,color="green",shape="box"];3739[label="yvy3000",fontsize=16,color="green",shape="box"];3740[label="yvy4000",fontsize=16,color="green",shape="box"];3741[label="yvy3000",fontsize=16,color="green",shape="box"];3742[label="yvy4000",fontsize=16,color="green",shape="box"];3743[label="yvy3000",fontsize=16,color="green",shape="box"];3744[label="yvy4000",fontsize=16,color="green",shape="box"];3745[label="yvy3000",fontsize=16,color="green",shape="box"];3746[label="yvy4000",fontsize=16,color="green",shape="box"];3747[label="yvy3000",fontsize=16,color="green",shape="box"];3748[label="yvy4000",fontsize=16,color="green",shape="box"];3749[label="yvy3000",fontsize=16,color="green",shape="box"];3750[label="yvy4000",fontsize=16,color="green",shape="box"];3751[label="yvy3000",fontsize=16,color="green",shape="box"];3752[label="yvy4000",fontsize=16,color="green",shape="box"];3753[label="yvy3000",fontsize=16,color="green",shape="box"];3754[label="yvy4000",fontsize=16,color="green",shape="box"];3755[label="yvy3000",fontsize=16,color="green",shape="box"];3756[label="yvy4000",fontsize=16,color="green",shape="box"];3757[label="yvy3000",fontsize=16,color="green",shape="box"];3758[label="yvy4000",fontsize=16,color="green",shape="box"];3759[label="yvy3000",fontsize=16,color="green",shape="box"];3760[label="yvy4000",fontsize=16,color="green",shape="box"];3761[label="yvy3000",fontsize=16,color="green",shape="box"];3762[label="yvy4000",fontsize=16,color="green",shape="box"];3763[label="yvy3000",fontsize=16,color="green",shape="box"];3764[label="yvy4000",fontsize=16,color="green",shape="box"];3765[label="yvy3000",fontsize=16,color="green",shape="box"];3766[label="yvy4000",fontsize=16,color="green",shape="box"];3767[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3767 -> 3897[label="",style="solid", color="black", weight=3]; 3768[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3768 -> 3898[label="",style="solid", color="black", weight=3]; 3769[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3769 -> 3899[label="",style="solid", color="black", weight=3]; 3770[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3770 -> 3900[label="",style="solid", color="black", weight=3]; 3771[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5570[label="yvy7900/Left yvy79000",fontsize=10,color="white",style="solid",shape="box"];3771 -> 5570[label="",style="solid", color="burlywood", weight=9]; 5570 -> 3901[label="",style="solid", color="burlywood", weight=3]; 5571[label="yvy7900/Right yvy79000",fontsize=10,color="white",style="solid",shape="box"];3771 -> 5571[label="",style="solid", color="burlywood", weight=9]; 5571 -> 3902[label="",style="solid", color="burlywood", weight=3]; 3772[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3772 -> 3903[label="",style="solid", color="black", weight=3]; 3773[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5572[label="yvy7900/(yvy79000,yvy79001,yvy79002)",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5572[label="",style="solid", color="burlywood", weight=9]; 5572 -> 3904[label="",style="solid", color="burlywood", weight=3]; 3774[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3774 -> 3905[label="",style="solid", color="black", weight=3]; 3775[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5573[label="yvy7900/(yvy79000,yvy79001)",fontsize=10,color="white",style="solid",shape="box"];3775 -> 5573[label="",style="solid", color="burlywood", weight=9]; 5573 -> 3906[label="",style="solid", color="burlywood", weight=3]; 3776[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3776 -> 3907[label="",style="solid", color="black", weight=3]; 3777[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3777 -> 3908[label="",style="solid", color="black", weight=3]; 3778[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5574[label="yvy7900/False",fontsize=10,color="white",style="solid",shape="box"];3778 -> 5574[label="",style="solid", color="burlywood", weight=9]; 5574 -> 3909[label="",style="solid", color="burlywood", weight=3]; 5575[label="yvy7900/True",fontsize=10,color="white",style="solid",shape="box"];3778 -> 5575[label="",style="solid", color="burlywood", weight=9]; 5575 -> 3910[label="",style="solid", color="burlywood", weight=3]; 3779[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5576[label="yvy7900/LT",fontsize=10,color="white",style="solid",shape="box"];3779 -> 5576[label="",style="solid", color="burlywood", weight=9]; 5576 -> 3911[label="",style="solid", color="burlywood", weight=3]; 5577[label="yvy7900/EQ",fontsize=10,color="white",style="solid",shape="box"];3779 -> 5577[label="",style="solid", color="burlywood", weight=9]; 5577 -> 3912[label="",style="solid", color="burlywood", weight=3]; 5578[label="yvy7900/GT",fontsize=10,color="white",style="solid",shape="box"];3779 -> 5578[label="",style="solid", color="burlywood", weight=9]; 5578 -> 3913[label="",style="solid", color="burlywood", weight=3]; 3780[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3780 -> 3914[label="",style="solid", color="black", weight=3]; 3781[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3781 -> 3915[label="",style="solid", color="black", weight=3]; 3782[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5579[label="yvy7900/Nothing",fontsize=10,color="white",style="solid",shape="box"];3782 -> 5579[label="",style="solid", color="burlywood", weight=9]; 5579 -> 3916[label="",style="solid", color="burlywood", weight=3]; 5580[label="yvy7900/Just yvy79000",fontsize=10,color="white",style="solid",shape="box"];3782 -> 5580[label="",style="solid", color="burlywood", weight=9]; 5580 -> 3917[label="",style="solid", color="burlywood", weight=3]; 3783[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3783 -> 3918[label="",style="solid", color="black", weight=3]; 3784[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3784 -> 3919[label="",style="solid", color="black", weight=3]; 3785[label="compare1 (Left yvy226) (Left yvy227) False",fontsize=16,color="black",shape="box"];3785 -> 3920[label="",style="solid", color="black", weight=3]; 3786[label="compare1 (Left yvy226) (Left yvy227) True",fontsize=16,color="black",shape="box"];3786 -> 3921[label="",style="solid", color="black", weight=3]; 3787[label="compare0 (Right yvy7900) (Left yvy8000) True",fontsize=16,color="black",shape="box"];3787 -> 3922[label="",style="solid", color="black", weight=3]; 3788 -> 3771[label="",style="dashed", color="red", weight=0]; 3788[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3788 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3788 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3789 -> 3772[label="",style="dashed", color="red", weight=0]; 3789[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3789 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3789 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3790 -> 3773[label="",style="dashed", color="red", weight=0]; 3790[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3790 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3790 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3774[label="",style="dashed", color="red", weight=0]; 3791[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3791 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3791 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3775[label="",style="dashed", color="red", weight=0]; 3792[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3792 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3792 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3776[label="",style="dashed", color="red", weight=0]; 3793[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3793 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3793 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3777[label="",style="dashed", color="red", weight=0]; 3794[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3794 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3794 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3795 -> 3778[label="",style="dashed", color="red", weight=0]; 3795[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3795 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3795 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3796 -> 3779[label="",style="dashed", color="red", weight=0]; 3796[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3796 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3796 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3797 -> 3780[label="",style="dashed", color="red", weight=0]; 3797[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3797 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3797 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3798 -> 3781[label="",style="dashed", color="red", weight=0]; 3798[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3798 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3798 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3799 -> 3782[label="",style="dashed", color="red", weight=0]; 3799[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3799 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3799 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3800 -> 3783[label="",style="dashed", color="red", weight=0]; 3800[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3800 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3800 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3801 -> 3784[label="",style="dashed", color="red", weight=0]; 3801[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3801 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3801 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3802[label="compare1 (Right yvy233) (Right yvy234) False",fontsize=16,color="black",shape="box"];3802 -> 3951[label="",style="solid", color="black", weight=3]; 3803[label="compare1 (Right yvy233) (Right yvy234) True",fontsize=16,color="black",shape="box"];3803 -> 3952[label="",style="solid", color="black", weight=3]; 2963[label="yvy20 == yvy15",fontsize=16,color="blue",shape="box"];5581[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5581[label="",style="solid", color="blue", weight=9]; 5581 -> 3095[label="",style="solid", color="blue", weight=3]; 5582[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5582[label="",style="solid", color="blue", weight=9]; 5582 -> 3096[label="",style="solid", color="blue", weight=3]; 5583[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5583[label="",style="solid", color="blue", weight=9]; 5583 -> 3097[label="",style="solid", color="blue", weight=3]; 5584[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5584[label="",style="solid", color="blue", weight=9]; 5584 -> 3098[label="",style="solid", color="blue", weight=3]; 5585[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5585[label="",style="solid", color="blue", weight=9]; 5585 -> 3099[label="",style="solid", color="blue", weight=3]; 5586[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5586[label="",style="solid", color="blue", weight=9]; 5586 -> 3100[label="",style="solid", color="blue", weight=3]; 5587[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5587[label="",style="solid", color="blue", weight=9]; 5587 -> 3101[label="",style="solid", color="blue", weight=3]; 5588[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5588[label="",style="solid", color="blue", weight=9]; 5588 -> 3102[label="",style="solid", color="blue", weight=3]; 5589[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5589[label="",style="solid", color="blue", weight=9]; 5589 -> 3103[label="",style="solid", color="blue", weight=3]; 5590[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5590[label="",style="solid", color="blue", weight=9]; 5590 -> 3104[label="",style="solid", color="blue", weight=3]; 5591[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5591[label="",style="solid", color="blue", weight=9]; 5591 -> 3105[label="",style="solid", color="blue", weight=3]; 5592[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5592[label="",style="solid", color="blue", weight=9]; 5592 -> 3106[label="",style="solid", color="blue", weight=3]; 5593[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5593[label="",style="solid", color="blue", weight=9]; 5593 -> 3107[label="",style="solid", color="blue", weight=3]; 5594[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2963 -> 5594[label="",style="solid", color="blue", weight=9]; 5594 -> 3108[label="",style="solid", color="blue", weight=3]; 2964[label="False",fontsize=16,color="green",shape="box"];2965[label="False",fontsize=16,color="green",shape="box"];2966[label="yvy35 == yvy30",fontsize=16,color="blue",shape="box"];5595[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5595[label="",style="solid", color="blue", weight=9]; 5595 -> 3109[label="",style="solid", color="blue", weight=3]; 5596[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5596[label="",style="solid", color="blue", weight=9]; 5596 -> 3110[label="",style="solid", color="blue", weight=3]; 5597[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5597[label="",style="solid", color="blue", weight=9]; 5597 -> 3111[label="",style="solid", color="blue", weight=3]; 5598[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5598[label="",style="solid", color="blue", weight=9]; 5598 -> 3112[label="",style="solid", color="blue", weight=3]; 5599[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5599[label="",style="solid", color="blue", weight=9]; 5599 -> 3113[label="",style="solid", color="blue", weight=3]; 5600[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5600[label="",style="solid", color="blue", weight=9]; 5600 -> 3114[label="",style="solid", color="blue", weight=3]; 5601[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5601[label="",style="solid", color="blue", weight=9]; 5601 -> 3115[label="",style="solid", color="blue", weight=3]; 5602[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5602[label="",style="solid", color="blue", weight=9]; 5602 -> 3116[label="",style="solid", color="blue", weight=3]; 5603[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5603[label="",style="solid", color="blue", weight=9]; 5603 -> 3117[label="",style="solid", color="blue", weight=3]; 5604[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5604[label="",style="solid", color="blue", weight=9]; 5604 -> 3118[label="",style="solid", color="blue", weight=3]; 5605[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5605[label="",style="solid", color="blue", weight=9]; 5605 -> 3119[label="",style="solid", color="blue", weight=3]; 5606[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5606[label="",style="solid", color="blue", weight=9]; 5606 -> 3120[label="",style="solid", color="blue", weight=3]; 5607[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5607[label="",style="solid", color="blue", weight=9]; 5607 -> 3121[label="",style="solid", color="blue", weight=3]; 5608[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2966 -> 5608[label="",style="solid", color="blue", weight=9]; 5608 -> 3122[label="",style="solid", color="blue", weight=3]; 1727[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1727 -> 1903[label="",style="solid", color="black", weight=3]; 1728 -> 33[label="",style="dashed", color="red", weight=0]; 1728[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41",fontsize=16,color="magenta"];1728 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1729[label="Left yvy500",fontsize=16,color="green",shape="box"];1730[label="yvy53",fontsize=16,color="green",shape="box"];1731[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1731 -> 1906[label="",style="solid", color="black", weight=3]; 1732 -> 33[label="",style="dashed", color="red", weight=0]; 1732[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41",fontsize=16,color="magenta"];1732 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1733[label="Right yvy500",fontsize=16,color="green",shape="box"];1734[label="yvy53",fontsize=16,color="green",shape="box"];1735[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1735 -> 1909[label="",style="solid", color="black", weight=3]; 1736 -> 33[label="",style="dashed", color="red", weight=0]; 1736[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41",fontsize=16,color="magenta"];1736 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1736 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1737[label="Left yvy500",fontsize=16,color="green",shape="box"];1738[label="yvy53",fontsize=16,color="green",shape="box"];1739[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1739 -> 1912[label="",style="solid", color="black", weight=3]; 1740 -> 33[label="",style="dashed", color="red", weight=0]; 1740[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41",fontsize=16,color="magenta"];1740 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1741[label="Right yvy500",fontsize=16,color="green",shape="box"];1742[label="yvy53",fontsize=16,color="green",shape="box"];1743[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"];1743 -> 1915[label="",style="solid", color="black", weight=3]; 1744[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1744 -> 1916[label="",style="solid", color="black", weight=3]; 1745[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1745 -> 1917[label="",style="solid", color="black", weight=3]; 1746[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1746 -> 1918[label="",style="solid", color="black", weight=3]; 1747[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1747 -> 1919[label="",style="solid", color="black", weight=3]; 2799[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2799 -> 2967[label="",style="solid", color="black", weight=3]; 2800[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2800 -> 2968[label="",style="solid", color="black", weight=3]; 2070[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];2070 -> 2180[label="",style="solid", color="black", weight=3]; 2071[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1841[label="primMulInt (Pos yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];5609[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1841 -> 5609[label="",style="solid", color="burlywood", weight=9]; 5609 -> 1965[label="",style="solid", color="burlywood", weight=3]; 5610[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1841 -> 5610[label="",style="solid", color="burlywood", weight=9]; 5610 -> 1966[label="",style="solid", color="burlywood", weight=3]; 1842[label="primMulInt (Neg yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];5611[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1842 -> 5611[label="",style="solid", color="burlywood", weight=9]; 5611 -> 1967[label="",style="solid", color="burlywood", weight=3]; 5612[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1842 -> 5612[label="",style="solid", color="burlywood", weight=9]; 5612 -> 1968[label="",style="solid", color="burlywood", weight=3]; 4028[label="yvy239",fontsize=16,color="green",shape="box"];4029[label="yvy238",fontsize=16,color="green",shape="box"];2802[label="compare yvy199 yvy198",fontsize=16,color="black",shape="triangle"];2802 -> 2969[label="",style="solid", color="black", weight=3]; 1758 -> 4950[label="",style="dashed", color="red", weight=0]; 1758[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"];1758 -> 4951[label="",style="dashed", color="magenta", weight=3]; 1758 -> 4952[label="",style="dashed", color="magenta", weight=3]; 1758 -> 4953[label="",style="dashed", color="magenta", weight=3]; 1758 -> 4954[label="",style="dashed", color="magenta", weight=3]; 1758 -> 4955[label="",style="dashed", color="magenta", weight=3]; 1759[label="yvy64",fontsize=16,color="green",shape="box"];1760[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3964[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3965 -> 3975[label="",style="dashed", color="red", weight=0]; 3965[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3965 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3965 -> 3977[label="",style="dashed", color="magenta", weight=3]; 1767[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];1767 -> 1940[label="",style="solid", color="black", weight=3]; 1768[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];1768 -> 1941[label="",style="solid", color="black", weight=3]; 1769[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"];1769 -> 1942[label="",style="solid", color="black", weight=3]; 1770[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1770 -> 1943[label="",style="solid", color="black", weight=3]; 1771[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1771 -> 1944[label="",style="solid", color="black", weight=3]; 1772[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1772 -> 1945[label="",style="solid", color="black", weight=3]; 1773[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1773 -> 1946[label="",style="solid", color="black", weight=3]; 2083 -> 2070[label="",style="dashed", color="red", weight=0]; 2083[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1778 -> 4950[label="",style="dashed", color="red", weight=0]; 1778[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"];1778 -> 4956[label="",style="dashed", color="magenta", weight=3]; 1778 -> 4957[label="",style="dashed", color="magenta", weight=3]; 1778 -> 4958[label="",style="dashed", color="magenta", weight=3]; 1778 -> 4959[label="",style="dashed", color="magenta", weight=3]; 1778 -> 4960[label="",style="dashed", color="magenta", weight=3]; 1779[label="yvy64",fontsize=16,color="green",shape="box"];1780[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3837[label="yvy3002",fontsize=16,color="green",shape="box"];3838[label="yvy4002",fontsize=16,color="green",shape="box"];3839[label="yvy3002",fontsize=16,color="green",shape="box"];3840[label="yvy4002",fontsize=16,color="green",shape="box"];3841[label="yvy3002",fontsize=16,color="green",shape="box"];3842[label="yvy4002",fontsize=16,color="green",shape="box"];3843[label="yvy3002",fontsize=16,color="green",shape="box"];3844[label="yvy4002",fontsize=16,color="green",shape="box"];3845[label="yvy3002",fontsize=16,color="green",shape="box"];3846[label="yvy4002",fontsize=16,color="green",shape="box"];3847[label="yvy3002",fontsize=16,color="green",shape="box"];3848[label="yvy4002",fontsize=16,color="green",shape="box"];3849[label="yvy3002",fontsize=16,color="green",shape="box"];3850[label="yvy4002",fontsize=16,color="green",shape="box"];3851[label="yvy3002",fontsize=16,color="green",shape="box"];3852[label="yvy4002",fontsize=16,color="green",shape="box"];3853[label="yvy3002",fontsize=16,color="green",shape="box"];3854[label="yvy4002",fontsize=16,color="green",shape="box"];3855[label="yvy3002",fontsize=16,color="green",shape="box"];3856[label="yvy4002",fontsize=16,color="green",shape="box"];3857[label="yvy3002",fontsize=16,color="green",shape="box"];3858[label="yvy4002",fontsize=16,color="green",shape="box"];3859[label="yvy3002",fontsize=16,color="green",shape="box"];3860[label="yvy4002",fontsize=16,color="green",shape="box"];3861[label="yvy3002",fontsize=16,color="green",shape="box"];3862[label="yvy4002",fontsize=16,color="green",shape="box"];3863[label="yvy3002",fontsize=16,color="green",shape="box"];3864[label="yvy4002",fontsize=16,color="green",shape="box"];3865[label="yvy3001",fontsize=16,color="green",shape="box"];3866[label="yvy4001",fontsize=16,color="green",shape="box"];3867[label="yvy3001",fontsize=16,color="green",shape="box"];3868[label="yvy4001",fontsize=16,color="green",shape="box"];3869[label="yvy3001",fontsize=16,color="green",shape="box"];3870[label="yvy4001",fontsize=16,color="green",shape="box"];3871[label="yvy3001",fontsize=16,color="green",shape="box"];3872[label="yvy4001",fontsize=16,color="green",shape="box"];3873[label="yvy3001",fontsize=16,color="green",shape="box"];3874[label="yvy4001",fontsize=16,color="green",shape="box"];3875[label="yvy3001",fontsize=16,color="green",shape="box"];3876[label="yvy4001",fontsize=16,color="green",shape="box"];3877[label="yvy3001",fontsize=16,color="green",shape="box"];3878[label="yvy4001",fontsize=16,color="green",shape="box"];3879[label="yvy3001",fontsize=16,color="green",shape="box"];3880[label="yvy4001",fontsize=16,color="green",shape="box"];3881[label="yvy3001",fontsize=16,color="green",shape="box"];3882[label="yvy4001",fontsize=16,color="green",shape="box"];3883[label="yvy3001",fontsize=16,color="green",shape="box"];3884[label="yvy4001",fontsize=16,color="green",shape="box"];3885[label="yvy3001",fontsize=16,color="green",shape="box"];3886[label="yvy4001",fontsize=16,color="green",shape="box"];3887[label="yvy3001",fontsize=16,color="green",shape="box"];3888[label="yvy4001",fontsize=16,color="green",shape="box"];3889[label="yvy3001",fontsize=16,color="green",shape="box"];3890[label="yvy4001",fontsize=16,color="green",shape="box"];3891[label="yvy3001",fontsize=16,color="green",shape="box"];3892[label="yvy4001",fontsize=16,color="green",shape="box"];3893[label="yvy40000",fontsize=16,color="green",shape="box"];3894[label="yvy30000",fontsize=16,color="green",shape="box"];3895[label="yvy40000",fontsize=16,color="green",shape="box"];3896[label="yvy30000",fontsize=16,color="green",shape="box"];3897 -> 3387[label="",style="dashed", color="red", weight=0]; 3897[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3897 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3897 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3898[label="False",fontsize=16,color="green",shape="box"];3899[label="False",fontsize=16,color="green",shape="box"];3900[label="True",fontsize=16,color="green",shape="box"];3901[label="Left yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5613[label="yvy8000/Left yvy80000",fontsize=10,color="white",style="solid",shape="box"];3901 -> 5613[label="",style="solid", color="burlywood", weight=9]; 5613 -> 3996[label="",style="solid", color="burlywood", weight=3]; 5614[label="yvy8000/Right yvy80000",fontsize=10,color="white",style="solid",shape="box"];3901 -> 5614[label="",style="solid", color="burlywood", weight=9]; 5614 -> 3997[label="",style="solid", color="burlywood", weight=3]; 3902[label="Right yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5615[label="yvy8000/Left yvy80000",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5615[label="",style="solid", color="burlywood", weight=9]; 5615 -> 3998[label="",style="solid", color="burlywood", weight=3]; 5616[label="yvy8000/Right yvy80000",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5616[label="",style="solid", color="burlywood", weight=9]; 5616 -> 3999[label="",style="solid", color="burlywood", weight=3]; 3903 -> 4019[label="",style="dashed", color="red", weight=0]; 3903[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3903 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3904[label="(yvy79000,yvy79001,yvy79002) <= yvy8000",fontsize=16,color="burlywood",shape="box"];5617[label="yvy8000/(yvy80000,yvy80001,yvy80002)",fontsize=10,color="white",style="solid",shape="box"];3904 -> 5617[label="",style="solid", color="burlywood", weight=9]; 5617 -> 4001[label="",style="solid", color="burlywood", weight=3]; 3905 -> 4019[label="",style="dashed", color="red", weight=0]; 3905[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3905 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3906[label="(yvy79000,yvy79001) <= yvy8000",fontsize=16,color="burlywood",shape="box"];5618[label="yvy8000/(yvy80000,yvy80001)",fontsize=10,color="white",style="solid",shape="box"];3906 -> 5618[label="",style="solid", color="burlywood", weight=9]; 5618 -> 4003[label="",style="solid", color="burlywood", weight=3]; 3907 -> 4019[label="",style="dashed", color="red", weight=0]; 3907[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3907 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4019[label="",style="dashed", color="red", weight=0]; 3908[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3908 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3909[label="False <= yvy8000",fontsize=16,color="burlywood",shape="box"];5619[label="yvy8000/False",fontsize=10,color="white",style="solid",shape="box"];3909 -> 5619[label="",style="solid", color="burlywood", weight=9]; 5619 -> 4006[label="",style="solid", color="burlywood", weight=3]; 5620[label="yvy8000/True",fontsize=10,color="white",style="solid",shape="box"];3909 -> 5620[label="",style="solid", color="burlywood", weight=9]; 5620 -> 4007[label="",style="solid", color="burlywood", weight=3]; 3910[label="True <= yvy8000",fontsize=16,color="burlywood",shape="box"];5621[label="yvy8000/False",fontsize=10,color="white",style="solid",shape="box"];3910 -> 5621[label="",style="solid", color="burlywood", weight=9]; 5621 -> 4008[label="",style="solid", color="burlywood", weight=3]; 5622[label="yvy8000/True",fontsize=10,color="white",style="solid",shape="box"];3910 -> 5622[label="",style="solid", color="burlywood", weight=9]; 5622 -> 4009[label="",style="solid", color="burlywood", weight=3]; 3911[label="LT <= yvy8000",fontsize=16,color="burlywood",shape="box"];5623[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3911 -> 5623[label="",style="solid", color="burlywood", weight=9]; 5623 -> 4010[label="",style="solid", color="burlywood", weight=3]; 5624[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3911 -> 5624[label="",style="solid", color="burlywood", weight=9]; 5624 -> 4011[label="",style="solid", color="burlywood", weight=3]; 5625[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3911 -> 5625[label="",style="solid", color="burlywood", weight=9]; 5625 -> 4012[label="",style="solid", color="burlywood", weight=3]; 3912[label="EQ <= yvy8000",fontsize=16,color="burlywood",shape="box"];5626[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3912 -> 5626[label="",style="solid", color="burlywood", weight=9]; 5626 -> 4013[label="",style="solid", color="burlywood", weight=3]; 5627[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3912 -> 5627[label="",style="solid", color="burlywood", weight=9]; 5627 -> 4014[label="",style="solid", color="burlywood", weight=3]; 5628[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3912 -> 5628[label="",style="solid", color="burlywood", weight=9]; 5628 -> 4015[label="",style="solid", color="burlywood", weight=3]; 3913[label="GT <= yvy8000",fontsize=16,color="burlywood",shape="box"];5629[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3913 -> 5629[label="",style="solid", color="burlywood", weight=9]; 5629 -> 4016[label="",style="solid", color="burlywood", weight=3]; 5630[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3913 -> 5630[label="",style="solid", color="burlywood", weight=9]; 5630 -> 4017[label="",style="solid", color="burlywood", weight=3]; 5631[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3913 -> 5631[label="",style="solid", color="burlywood", weight=9]; 5631 -> 4018[label="",style="solid", color="burlywood", weight=3]; 3914 -> 4019[label="",style="dashed", color="red", weight=0]; 3914[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3914 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3915 -> 4019[label="",style="dashed", color="red", weight=0]; 3915[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3915 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3916[label="Nothing <= yvy8000",fontsize=16,color="burlywood",shape="box"];5632[label="yvy8000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3916 -> 5632[label="",style="solid", color="burlywood", weight=9]; 5632 -> 4030[label="",style="solid", color="burlywood", weight=3]; 5633[label="yvy8000/Just yvy80000",fontsize=10,color="white",style="solid",shape="box"];3916 -> 5633[label="",style="solid", color="burlywood", weight=9]; 5633 -> 4031[label="",style="solid", color="burlywood", weight=3]; 3917[label="Just yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5634[label="yvy8000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3917 -> 5634[label="",style="solid", color="burlywood", weight=9]; 5634 -> 4032[label="",style="solid", color="burlywood", weight=3]; 5635[label="yvy8000/Just yvy80000",fontsize=10,color="white",style="solid",shape="box"];3917 -> 5635[label="",style="solid", color="burlywood", weight=9]; 5635 -> 4033[label="",style="solid", color="burlywood", weight=3]; 3918 -> 4019[label="",style="dashed", color="red", weight=0]; 3918[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3918 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3919 -> 4019[label="",style="dashed", color="red", weight=0]; 3919[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3919 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3920[label="compare0 (Left yvy226) (Left yvy227) otherwise",fontsize=16,color="black",shape="box"];3920 -> 4034[label="",style="solid", color="black", weight=3]; 3921[label="LT",fontsize=16,color="green",shape="box"];3922[label="GT",fontsize=16,color="green",shape="box"];3923[label="yvy7900",fontsize=16,color="green",shape="box"];3924[label="yvy8000",fontsize=16,color="green",shape="box"];3925[label="yvy7900",fontsize=16,color="green",shape="box"];3926[label="yvy8000",fontsize=16,color="green",shape="box"];3927[label="yvy7900",fontsize=16,color="green",shape="box"];3928[label="yvy8000",fontsize=16,color="green",shape="box"];3929[label="yvy7900",fontsize=16,color="green",shape="box"];3930[label="yvy8000",fontsize=16,color="green",shape="box"];3931[label="yvy7900",fontsize=16,color="green",shape="box"];3932[label="yvy8000",fontsize=16,color="green",shape="box"];3933[label="yvy7900",fontsize=16,color="green",shape="box"];3934[label="yvy8000",fontsize=16,color="green",shape="box"];3935[label="yvy7900",fontsize=16,color="green",shape="box"];3936[label="yvy8000",fontsize=16,color="green",shape="box"];3937[label="yvy7900",fontsize=16,color="green",shape="box"];3938[label="yvy8000",fontsize=16,color="green",shape="box"];3939[label="yvy7900",fontsize=16,color="green",shape="box"];3940[label="yvy8000",fontsize=16,color="green",shape="box"];3941[label="yvy7900",fontsize=16,color="green",shape="box"];3942[label="yvy8000",fontsize=16,color="green",shape="box"];3943[label="yvy7900",fontsize=16,color="green",shape="box"];3944[label="yvy8000",fontsize=16,color="green",shape="box"];3945[label="yvy7900",fontsize=16,color="green",shape="box"];3946[label="yvy8000",fontsize=16,color="green",shape="box"];3947[label="yvy7900",fontsize=16,color="green",shape="box"];3948[label="yvy8000",fontsize=16,color="green",shape="box"];3949[label="yvy7900",fontsize=16,color="green",shape="box"];3950[label="yvy8000",fontsize=16,color="green",shape="box"];3951[label="compare0 (Right yvy233) (Right yvy234) otherwise",fontsize=16,color="black",shape="box"];3951 -> 4035[label="",style="solid", color="black", weight=3]; 3952[label="LT",fontsize=16,color="green",shape="box"];3095 -> 2877[label="",style="dashed", color="red", weight=0]; 3095[label="yvy20 == yvy15",fontsize=16,color="magenta"];3095 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3095 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3096 -> 2878[label="",style="dashed", color="red", weight=0]; 3096[label="yvy20 == yvy15",fontsize=16,color="magenta"];3096 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3096 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3097 -> 2879[label="",style="dashed", color="red", weight=0]; 3097[label="yvy20 == yvy15",fontsize=16,color="magenta"];3097 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3097 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3098 -> 2880[label="",style="dashed", color="red", weight=0]; 3098[label="yvy20 == yvy15",fontsize=16,color="magenta"];3098 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3098 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3099 -> 2881[label="",style="dashed", color="red", weight=0]; 3099[label="yvy20 == yvy15",fontsize=16,color="magenta"];3099 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3100 -> 127[label="",style="dashed", color="red", weight=0]; 3100[label="yvy20 == yvy15",fontsize=16,color="magenta"];3100 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3101 -> 2883[label="",style="dashed", color="red", weight=0]; 3101[label="yvy20 == yvy15",fontsize=16,color="magenta"];3101 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3102 -> 2884[label="",style="dashed", color="red", weight=0]; 3102[label="yvy20 == yvy15",fontsize=16,color="magenta"];3102 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3103 -> 2885[label="",style="dashed", color="red", weight=0]; 3103[label="yvy20 == yvy15",fontsize=16,color="magenta"];3103 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3104 -> 2886[label="",style="dashed", color="red", weight=0]; 3104[label="yvy20 == yvy15",fontsize=16,color="magenta"];3104 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3105 -> 2887[label="",style="dashed", color="red", weight=0]; 3105[label="yvy20 == yvy15",fontsize=16,color="magenta"];3105 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3106 -> 2888[label="",style="dashed", color="red", weight=0]; 3106[label="yvy20 == yvy15",fontsize=16,color="magenta"];3106 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3107 -> 2889[label="",style="dashed", color="red", weight=0]; 3107[label="yvy20 == yvy15",fontsize=16,color="magenta"];3107 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3108 -> 2890[label="",style="dashed", color="red", weight=0]; 3108[label="yvy20 == yvy15",fontsize=16,color="magenta"];3108 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3109 -> 2877[label="",style="dashed", color="red", weight=0]; 3109[label="yvy35 == yvy30",fontsize=16,color="magenta"];3109 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3110 -> 2878[label="",style="dashed", color="red", weight=0]; 3110[label="yvy35 == yvy30",fontsize=16,color="magenta"];3110 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3111 -> 2879[label="",style="dashed", color="red", weight=0]; 3111[label="yvy35 == yvy30",fontsize=16,color="magenta"];3111 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3112 -> 2880[label="",style="dashed", color="red", weight=0]; 3112[label="yvy35 == yvy30",fontsize=16,color="magenta"];3112 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3113 -> 2881[label="",style="dashed", color="red", weight=0]; 3113[label="yvy35 == yvy30",fontsize=16,color="magenta"];3113 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3114 -> 127[label="",style="dashed", color="red", weight=0]; 3114[label="yvy35 == yvy30",fontsize=16,color="magenta"];3114 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3115 -> 2883[label="",style="dashed", color="red", weight=0]; 3115[label="yvy35 == yvy30",fontsize=16,color="magenta"];3115 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3116 -> 2884[label="",style="dashed", color="red", weight=0]; 3116[label="yvy35 == yvy30",fontsize=16,color="magenta"];3116 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3117 -> 2885[label="",style="dashed", color="red", weight=0]; 3117[label="yvy35 == yvy30",fontsize=16,color="magenta"];3117 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3118 -> 2886[label="",style="dashed", color="red", weight=0]; 3118[label="yvy35 == yvy30",fontsize=16,color="magenta"];3118 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3119 -> 2887[label="",style="dashed", color="red", weight=0]; 3119[label="yvy35 == yvy30",fontsize=16,color="magenta"];3119 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3120 -> 2888[label="",style="dashed", color="red", weight=0]; 3120[label="yvy35 == yvy30",fontsize=16,color="magenta"];3120 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3121 -> 2889[label="",style="dashed", color="red", weight=0]; 3121[label="yvy35 == yvy30",fontsize=16,color="magenta"];3121 -> 3229[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3122 -> 2890[label="",style="dashed", color="red", weight=0]; 3122[label="yvy35 == yvy30",fontsize=16,color="magenta"];3122 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3232[label="",style="dashed", color="magenta", weight=3]; 1903[label="FiniteMap.Branch (Left yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1903 -> 2064[label="",style="dashed", color="green", weight=3]; 1904[label="Left yvy400",fontsize=16,color="green",shape="box"];1905[label="yvy54",fontsize=16,color="green",shape="box"];1906[label="FiniteMap.Branch (Left yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1906 -> 2065[label="",style="dashed", color="green", weight=3]; 1907[label="Left yvy400",fontsize=16,color="green",shape="box"];1908[label="yvy54",fontsize=16,color="green",shape="box"];1909[label="FiniteMap.Branch (Right yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1909 -> 2066[label="",style="dashed", color="green", weight=3]; 1910[label="Right yvy400",fontsize=16,color="green",shape="box"];1911[label="yvy54",fontsize=16,color="green",shape="box"];1912[label="FiniteMap.Branch (Right yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1912 -> 2067[label="",style="dashed", color="green", weight=3]; 1913[label="Right yvy400",fontsize=16,color="green",shape="box"];1914[label="yvy54",fontsize=16,color="green",shape="box"];1915[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"];1915 -> 2068[label="",style="solid", color="black", weight=3]; 1916[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1916 -> 2069[label="",style="solid", color="black", weight=3]; 1917[label="EQ",fontsize=16,color="green",shape="box"];1918[label="GT",fontsize=16,color="green",shape="box"];1919[label="EQ",fontsize=16,color="green",shape="box"];2967[label="Pos Zero",fontsize=16,color="green",shape="box"];2968[label="yvy542",fontsize=16,color="green",shape="box"];2180[label="yvy52",fontsize=16,color="green",shape="box"];1965[label="primMulInt (Pos yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1965 -> 2089[label="",style="solid", color="black", weight=3]; 1966[label="primMulInt (Pos yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1966 -> 2090[label="",style="solid", color="black", weight=3]; 1967[label="primMulInt (Neg yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1967 -> 2091[label="",style="solid", color="black", weight=3]; 1968[label="primMulInt (Neg yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1968 -> 2092[label="",style="solid", color="black", weight=3]; 2969 -> 2144[label="",style="dashed", color="red", weight=0]; 2969[label="primCmpInt yvy199 yvy198",fontsize=16,color="magenta"];2969 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2969 -> 3124[label="",style="dashed", color="magenta", weight=3]; 4951[label="yvy40",fontsize=16,color="green",shape="box"];4952[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4953[label="yvy41",fontsize=16,color="green",shape="box"];4954[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4955[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4950[label="FiniteMap.mkBranch (Pos (Succ yvy277)) yvy278 yvy279 yvy280 yvy281",fontsize=16,color="black",shape="triangle"];4950 -> 5006[label="",style="solid", color="black", weight=3]; 3976 -> 2775[label="",style="dashed", color="red", weight=0]; 3976[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3977 -> 2771[label="",style="dashed", color="red", weight=0]; 3977[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3975[label="yvy242 + yvy241",fontsize=16,color="black",shape="triangle"];3975 -> 4036[label="",style="solid", color="black", weight=3]; 1940 -> 2317[label="",style="dashed", color="red", weight=0]; 1940[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];1940 -> 2318[label="",style="dashed", color="magenta", weight=3]; 1941 -> 4950[label="",style="dashed", color="red", weight=0]; 1941[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy107 yvy54",fontsize=16,color="magenta"];1941 -> 4966[label="",style="dashed", color="magenta", weight=3]; 1941 -> 4967[label="",style="dashed", color="magenta", weight=3]; 1941 -> 4968[label="",style="dashed", color="magenta", weight=3]; 1941 -> 4969[label="",style="dashed", color="magenta", weight=3]; 1941 -> 4970[label="",style="dashed", color="magenta", weight=3]; 1942[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"];1942 -> 2081[label="",style="solid", color="black", weight=3]; 1943[label="LT",fontsize=16,color="green",shape="box"];1944[label="EQ",fontsize=16,color="green",shape="box"];1945[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1945 -> 2082[label="",style="solid", color="black", weight=3]; 1946[label="EQ",fontsize=16,color="green",shape="box"];4956[label="yvy40",fontsize=16,color="green",shape="box"];4957[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4958[label="yvy41",fontsize=16,color="green",shape="box"];4959[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4960[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];3994[label="yvy40000",fontsize=16,color="green",shape="box"];3995[label="yvy30000",fontsize=16,color="green",shape="box"];3996[label="Left yvy79000 <= Left yvy80000",fontsize=16,color="black",shape="box"];3996 -> 4037[label="",style="solid", color="black", weight=3]; 3997[label="Left yvy79000 <= Right yvy80000",fontsize=16,color="black",shape="box"];3997 -> 4038[label="",style="solid", color="black", weight=3]; 3998[label="Right yvy79000 <= Left yvy80000",fontsize=16,color="black",shape="box"];3998 -> 4039[label="",style="solid", color="black", weight=3]; 3999[label="Right yvy79000 <= Right yvy80000",fontsize=16,color="black",shape="box"];3999 -> 4040[label="",style="solid", color="black", weight=3]; 4020[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4020 -> 4041[label="",style="solid", color="black", weight=3]; 4019[label="yvy243 /= GT",fontsize=16,color="black",shape="triangle"];4019 -> 4042[label="",style="solid", color="black", weight=3]; 4001[label="(yvy79000,yvy79001,yvy79002) <= (yvy80000,yvy80001,yvy80002)",fontsize=16,color="black",shape="box"];4001 -> 4043[label="",style="solid", color="black", weight=3]; 4021[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5636[label="yvy7900/Integer yvy79000",fontsize=10,color="white",style="solid",shape="box"];4021 -> 5636[label="",style="solid", color="burlywood", weight=9]; 5636 -> 4044[label="",style="solid", color="burlywood", weight=3]; 4003[label="(yvy79000,yvy79001) <= (yvy80000,yvy80001)",fontsize=16,color="black",shape="box"];4003 -> 4045[label="",style="solid", color="black", weight=3]; 4022[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5637[label="yvy7900/()",fontsize=10,color="white",style="solid",shape="box"];4022 -> 5637[label="",style="solid", color="burlywood", weight=9]; 5637 -> 4046[label="",style="solid", color="burlywood", weight=3]; 4023[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5638[label="yvy7900/yvy79000 :% yvy79001",fontsize=10,color="white",style="solid",shape="box"];4023 -> 5638[label="",style="solid", color="burlywood", weight=9]; 5638 -> 4047[label="",style="solid", color="burlywood", weight=3]; 4006[label="False <= False",fontsize=16,color="black",shape="box"];4006 -> 4048[label="",style="solid", color="black", weight=3]; 4007[label="False <= True",fontsize=16,color="black",shape="box"];4007 -> 4049[label="",style="solid", color="black", weight=3]; 4008[label="True <= False",fontsize=16,color="black",shape="box"];4008 -> 4050[label="",style="solid", color="black", weight=3]; 4009[label="True <= True",fontsize=16,color="black",shape="box"];4009 -> 4051[label="",style="solid", color="black", weight=3]; 4010[label="LT <= LT",fontsize=16,color="black",shape="box"];4010 -> 4052[label="",style="solid", color="black", weight=3]; 4011[label="LT <= EQ",fontsize=16,color="black",shape="box"];4011 -> 4053[label="",style="solid", color="black", weight=3]; 4012[label="LT <= GT",fontsize=16,color="black",shape="box"];4012 -> 4054[label="",style="solid", color="black", weight=3]; 4013[label="EQ <= LT",fontsize=16,color="black",shape="box"];4013 -> 4055[label="",style="solid", color="black", weight=3]; 4014[label="EQ <= EQ",fontsize=16,color="black",shape="box"];4014 -> 4056[label="",style="solid", color="black", weight=3]; 4015[label="EQ <= GT",fontsize=16,color="black",shape="box"];4015 -> 4057[label="",style="solid", color="black", weight=3]; 4016[label="GT <= LT",fontsize=16,color="black",shape="box"];4016 -> 4058[label="",style="solid", color="black", weight=3]; 4017[label="GT <= EQ",fontsize=16,color="black",shape="box"];4017 -> 4059[label="",style="solid", color="black", weight=3]; 4018[label="GT <= GT",fontsize=16,color="black",shape="box"];4018 -> 4060[label="",style="solid", color="black", weight=3]; 4024 -> 2802[label="",style="dashed", color="red", weight=0]; 4024[label="compare yvy7900 yvy8000",fontsize=16,color="magenta"];4024 -> 4061[label="",style="dashed", color="magenta", weight=3]; 4024 -> 4062[label="",style="dashed", color="magenta", weight=3]; 4025[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4025 -> 4063[label="",style="solid", color="black", weight=3]; 4030[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];4030 -> 4091[label="",style="solid", color="black", weight=3]; 4031[label="Nothing <= Just yvy80000",fontsize=16,color="black",shape="box"];4031 -> 4092[label="",style="solid", color="black", weight=3]; 4032[label="Just yvy79000 <= Nothing",fontsize=16,color="black",shape="box"];4032 -> 4093[label="",style="solid", color="black", weight=3]; 4033[label="Just yvy79000 <= Just yvy80000",fontsize=16,color="black",shape="box"];4033 -> 4094[label="",style="solid", color="black", weight=3]; 4026[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5639[label="yvy7900/yvy79000 : yvy79001",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5639[label="",style="solid", color="burlywood", weight=9]; 5639 -> 4064[label="",style="solid", color="burlywood", weight=3]; 5640[label="yvy7900/[]",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5640[label="",style="solid", color="burlywood", weight=9]; 5640 -> 4065[label="",style="solid", color="burlywood", weight=3]; 4027[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4027 -> 4066[label="",style="solid", color="black", weight=3]; 4034[label="compare0 (Left yvy226) (Left yvy227) True",fontsize=16,color="black",shape="box"];4034 -> 4095[label="",style="solid", color="black", weight=3]; 4035[label="compare0 (Right yvy233) (Right yvy234) True",fontsize=16,color="black",shape="box"];4035 -> 4096[label="",style="solid", color="black", weight=3]; 3177[label="yvy15",fontsize=16,color="green",shape="box"];3178[label="yvy20",fontsize=16,color="green",shape="box"];3179[label="yvy15",fontsize=16,color="green",shape="box"];3180[label="yvy20",fontsize=16,color="green",shape="box"];3181[label="yvy15",fontsize=16,color="green",shape="box"];3182[label="yvy20",fontsize=16,color="green",shape="box"];3183[label="yvy15",fontsize=16,color="green",shape="box"];3184[label="yvy20",fontsize=16,color="green",shape="box"];3185[label="yvy15",fontsize=16,color="green",shape="box"];3186[label="yvy20",fontsize=16,color="green",shape="box"];3187[label="yvy15",fontsize=16,color="green",shape="box"];3188[label="yvy20",fontsize=16,color="green",shape="box"];3189[label="yvy15",fontsize=16,color="green",shape="box"];3190[label="yvy20",fontsize=16,color="green",shape="box"];3191[label="yvy15",fontsize=16,color="green",shape="box"];3192[label="yvy20",fontsize=16,color="green",shape="box"];3193[label="yvy15",fontsize=16,color="green",shape="box"];3194[label="yvy20",fontsize=16,color="green",shape="box"];3195[label="yvy15",fontsize=16,color="green",shape="box"];3196[label="yvy20",fontsize=16,color="green",shape="box"];3197[label="yvy15",fontsize=16,color="green",shape="box"];3198[label="yvy20",fontsize=16,color="green",shape="box"];3199[label="yvy15",fontsize=16,color="green",shape="box"];3200[label="yvy20",fontsize=16,color="green",shape="box"];3201[label="yvy15",fontsize=16,color="green",shape="box"];3202[label="yvy20",fontsize=16,color="green",shape="box"];3203[label="yvy15",fontsize=16,color="green",shape="box"];3204[label="yvy20",fontsize=16,color="green",shape="box"];3205[label="yvy30",fontsize=16,color="green",shape="box"];3206[label="yvy35",fontsize=16,color="green",shape="box"];3207[label="yvy30",fontsize=16,color="green",shape="box"];3208[label="yvy35",fontsize=16,color="green",shape="box"];3209[label="yvy30",fontsize=16,color="green",shape="box"];3210[label="yvy35",fontsize=16,color="green",shape="box"];3211[label="yvy30",fontsize=16,color="green",shape="box"];3212[label="yvy35",fontsize=16,color="green",shape="box"];3213[label="yvy30",fontsize=16,color="green",shape="box"];3214[label="yvy35",fontsize=16,color="green",shape="box"];3215[label="yvy30",fontsize=16,color="green",shape="box"];3216[label="yvy35",fontsize=16,color="green",shape="box"];3217[label="yvy30",fontsize=16,color="green",shape="box"];3218[label="yvy35",fontsize=16,color="green",shape="box"];3219[label="yvy30",fontsize=16,color="green",shape="box"];3220[label="yvy35",fontsize=16,color="green",shape="box"];3221[label="yvy30",fontsize=16,color="green",shape="box"];3222[label="yvy35",fontsize=16,color="green",shape="box"];3223[label="yvy30",fontsize=16,color="green",shape="box"];3224[label="yvy35",fontsize=16,color="green",shape="box"];3225[label="yvy30",fontsize=16,color="green",shape="box"];3226[label="yvy35",fontsize=16,color="green",shape="box"];3227[label="yvy30",fontsize=16,color="green",shape="box"];3228[label="yvy35",fontsize=16,color="green",shape="box"];3229[label="yvy30",fontsize=16,color="green",shape="box"];3230[label="yvy35",fontsize=16,color="green",shape="box"];3231[label="yvy30",fontsize=16,color="green",shape="box"];3232[label="yvy35",fontsize=16,color="green",shape="box"];2064[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];2064 -> 2177[label="",style="solid", color="black", weight=3]; 2065 -> 2064[label="",style="dashed", color="red", weight=0]; 2065[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2066 -> 2064[label="",style="dashed", color="red", weight=0]; 2066[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2067 -> 2064[label="",style="dashed", color="red", weight=0]; 2067[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2068 -> 2178[label="",style="dashed", color="red", weight=0]; 2068[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"];2068 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2069[label="LT",fontsize=16,color="green",shape="box"];2089[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2089 -> 2198[label="",style="dashed", color="green", weight=3]; 2090[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2090 -> 2199[label="",style="dashed", color="green", weight=3]; 2091[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2091 -> 2200[label="",style="dashed", color="green", weight=3]; 2092[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2092 -> 2201[label="",style="dashed", color="green", weight=3]; 3123[label="yvy198",fontsize=16,color="green",shape="box"];3124[label="yvy199",fontsize=16,color="green",shape="box"];2144[label="primCmpInt yvy79 yvy80",fontsize=16,color="burlywood",shape="triangle"];5641[label="yvy79/Pos yvy790",fontsize=10,color="white",style="solid",shape="box"];2144 -> 5641[label="",style="solid", color="burlywood", weight=9]; 5641 -> 2294[label="",style="solid", color="burlywood", weight=3]; 5642[label="yvy79/Neg yvy790",fontsize=10,color="white",style="solid",shape="box"];2144 -> 5642[label="",style="solid", color="burlywood", weight=9]; 5642 -> 2295[label="",style="solid", color="burlywood", weight=3]; 5006[label="FiniteMap.mkBranchResult yvy278 yvy279 yvy280 yvy281",fontsize=16,color="black",shape="box"];5006 -> 5011[label="",style="solid", color="black", weight=3]; 2775[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];2775 -> 2783[label="",style="solid", color="black", weight=3]; 2771[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];2771 -> 2777[label="",style="solid", color="black", weight=3]; 4036[label="primPlusInt yvy242 yvy241",fontsize=16,color="burlywood",shape="box"];5643[label="yvy242/Pos yvy2420",fontsize=10,color="white",style="solid",shape="box"];4036 -> 5643[label="",style="solid", color="burlywood", weight=9]; 5643 -> 4097[label="",style="solid", color="burlywood", weight=3]; 5644[label="yvy242/Neg yvy2420",fontsize=10,color="white",style="solid",shape="box"];4036 -> 5644[label="",style="solid", color="burlywood", weight=9]; 5644 -> 4098[label="",style="solid", color="burlywood", weight=3]; 2318 -> 2770[label="",style="dashed", color="red", weight=0]; 2318[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2318 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2317[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy188",fontsize=16,color="burlywood",shape="triangle"];5645[label="yvy188/False",fontsize=10,color="white",style="solid",shape="box"];2317 -> 5645[label="",style="solid", color="burlywood", weight=9]; 5645 -> 2323[label="",style="solid", color="burlywood", weight=3]; 5646[label="yvy188/True",fontsize=10,color="white",style="solid",shape="box"];2317 -> 5646[label="",style="solid", color="burlywood", weight=9]; 5646 -> 2324[label="",style="solid", color="burlywood", weight=3]; 4966[label="yvy50",fontsize=16,color="green",shape="box"];4967[label="yvy54",fontsize=16,color="green",shape="box"];4968[label="yvy51",fontsize=16,color="green",shape="box"];4969[label="yvy107",fontsize=16,color="green",shape="box"];4970[label="Zero",fontsize=16,color="green",shape="box"];2081 -> 2191[label="",style="dashed", color="red", weight=0]; 2081[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"];2081 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2082[label="GT",fontsize=16,color="green",shape="box"];4037[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5647[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5647[label="",style="solid", color="blue", weight=9]; 5647 -> 4099[label="",style="solid", color="blue", weight=3]; 5648[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5648[label="",style="solid", color="blue", weight=9]; 5648 -> 4100[label="",style="solid", color="blue", weight=3]; 5649[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5649[label="",style="solid", color="blue", weight=9]; 5649 -> 4101[label="",style="solid", color="blue", weight=3]; 5650[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5650[label="",style="solid", color="blue", weight=9]; 5650 -> 4102[label="",style="solid", color="blue", weight=3]; 5651[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5651[label="",style="solid", color="blue", weight=9]; 5651 -> 4103[label="",style="solid", color="blue", weight=3]; 5652[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5652[label="",style="solid", color="blue", weight=9]; 5652 -> 4104[label="",style="solid", color="blue", weight=3]; 5653[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5653[label="",style="solid", color="blue", weight=9]; 5653 -> 4105[label="",style="solid", color="blue", weight=3]; 5654[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5654[label="",style="solid", color="blue", weight=9]; 5654 -> 4106[label="",style="solid", color="blue", weight=3]; 5655[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5655[label="",style="solid", color="blue", weight=9]; 5655 -> 4107[label="",style="solid", color="blue", weight=3]; 5656[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5656[label="",style="solid", color="blue", weight=9]; 5656 -> 4108[label="",style="solid", color="blue", weight=3]; 5657[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5657[label="",style="solid", color="blue", weight=9]; 5657 -> 4109[label="",style="solid", color="blue", weight=3]; 5658[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5658[label="",style="solid", color="blue", weight=9]; 5658 -> 4110[label="",style="solid", color="blue", weight=3]; 5659[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5659[label="",style="solid", color="blue", weight=9]; 5659 -> 4111[label="",style="solid", color="blue", weight=3]; 5660[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5660[label="",style="solid", color="blue", weight=9]; 5660 -> 4112[label="",style="solid", color="blue", weight=3]; 4038[label="True",fontsize=16,color="green",shape="box"];4039[label="False",fontsize=16,color="green",shape="box"];4040[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5661[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5661[label="",style="solid", color="blue", weight=9]; 5661 -> 4113[label="",style="solid", color="blue", weight=3]; 5662[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5662[label="",style="solid", color="blue", weight=9]; 5662 -> 4114[label="",style="solid", color="blue", weight=3]; 5663[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5663[label="",style="solid", color="blue", weight=9]; 5663 -> 4115[label="",style="solid", color="blue", weight=3]; 5664[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5664[label="",style="solid", color="blue", weight=9]; 5664 -> 4116[label="",style="solid", color="blue", weight=3]; 5665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5665[label="",style="solid", color="blue", weight=9]; 5665 -> 4117[label="",style="solid", color="blue", weight=3]; 5666[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5666[label="",style="solid", color="blue", weight=9]; 5666 -> 4118[label="",style="solid", color="blue", weight=3]; 5667[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5667[label="",style="solid", color="blue", weight=9]; 5667 -> 4119[label="",style="solid", color="blue", weight=3]; 5668[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5668[label="",style="solid", color="blue", weight=9]; 5668 -> 4120[label="",style="solid", color="blue", weight=3]; 5669[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5669[label="",style="solid", color="blue", weight=9]; 5669 -> 4121[label="",style="solid", color="blue", weight=3]; 5670[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5670[label="",style="solid", color="blue", weight=9]; 5670 -> 4122[label="",style="solid", color="blue", weight=3]; 5671[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5671[label="",style="solid", color="blue", weight=9]; 5671 -> 4123[label="",style="solid", color="blue", weight=3]; 5672[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5672[label="",style="solid", color="blue", weight=9]; 5672 -> 4124[label="",style="solid", color="blue", weight=3]; 5673[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5673[label="",style="solid", color="blue", weight=9]; 5673 -> 4125[label="",style="solid", color="blue", weight=3]; 5674[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4040 -> 5674[label="",style="solid", color="blue", weight=9]; 5674 -> 4126[label="",style="solid", color="blue", weight=3]; 4041[label="primCmpChar yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5675[label="yvy7900/Char yvy79000",fontsize=10,color="white",style="solid",shape="box"];4041 -> 5675[label="",style="solid", color="burlywood", weight=9]; 5675 -> 4127[label="",style="solid", color="burlywood", weight=3]; 4042 -> 4128[label="",style="dashed", color="red", weight=0]; 4042[label="not (yvy243 == GT)",fontsize=16,color="magenta"];4042 -> 4129[label="",style="dashed", color="magenta", weight=3]; 4043 -> 4225[label="",style="dashed", color="red", weight=0]; 4043[label="yvy79000 < yvy80000 || yvy79000 == yvy80000 && (yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002)",fontsize=16,color="magenta"];4043 -> 4226[label="",style="dashed", color="magenta", weight=3]; 4043 -> 4227[label="",style="dashed", color="magenta", weight=3]; 4044[label="compare (Integer yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5676[label="yvy8000/Integer yvy80000",fontsize=10,color="white",style="solid",shape="box"];4044 -> 5676[label="",style="solid", color="burlywood", weight=9]; 5676 -> 4135[label="",style="solid", color="burlywood", weight=3]; 4045 -> 4225[label="",style="dashed", color="red", weight=0]; 4045[label="yvy79000 < yvy80000 || yvy79000 == yvy80000 && yvy79001 <= yvy80001",fontsize=16,color="magenta"];4045 -> 4228[label="",style="dashed", color="magenta", weight=3]; 4045 -> 4229[label="",style="dashed", color="magenta", weight=3]; 4046[label="compare () yvy8000",fontsize=16,color="burlywood",shape="box"];5677[label="yvy8000/()",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5677[label="",style="solid", color="burlywood", weight=9]; 5677 -> 4136[label="",style="solid", color="burlywood", weight=3]; 4047[label="compare (yvy79000 :% yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5678[label="yvy8000/yvy80000 :% yvy80001",fontsize=10,color="white",style="solid",shape="box"];4047 -> 5678[label="",style="solid", color="burlywood", weight=9]; 5678 -> 4137[label="",style="solid", color="burlywood", weight=3]; 4048[label="True",fontsize=16,color="green",shape="box"];4049[label="True",fontsize=16,color="green",shape="box"];4050[label="False",fontsize=16,color="green",shape="box"];4051[label="True",fontsize=16,color="green",shape="box"];4052[label="True",fontsize=16,color="green",shape="box"];4053[label="True",fontsize=16,color="green",shape="box"];4054[label="True",fontsize=16,color="green",shape="box"];4055[label="False",fontsize=16,color="green",shape="box"];4056[label="True",fontsize=16,color="green",shape="box"];4057[label="True",fontsize=16,color="green",shape="box"];4058[label="False",fontsize=16,color="green",shape="box"];4059[label="False",fontsize=16,color="green",shape="box"];4060[label="True",fontsize=16,color="green",shape="box"];4061[label="yvy7900",fontsize=16,color="green",shape="box"];4062[label="yvy8000",fontsize=16,color="green",shape="box"];4063[label="primCmpFloat yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5679[label="yvy7900/Float yvy79000 yvy79001",fontsize=10,color="white",style="solid",shape="box"];4063 -> 5679[label="",style="solid", color="burlywood", weight=9]; 5679 -> 4138[label="",style="solid", color="burlywood", weight=3]; 4091[label="True",fontsize=16,color="green",shape="box"];4092[label="True",fontsize=16,color="green",shape="box"];4093[label="False",fontsize=16,color="green",shape="box"];4094[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5680[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5680[label="",style="solid", color="blue", weight=9]; 5680 -> 4139[label="",style="solid", color="blue", weight=3]; 5681[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5681[label="",style="solid", color="blue", weight=9]; 5681 -> 4140[label="",style="solid", color="blue", weight=3]; 5682[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5682[label="",style="solid", color="blue", weight=9]; 5682 -> 4141[label="",style="solid", color="blue", weight=3]; 5683[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5683[label="",style="solid", color="blue", weight=9]; 5683 -> 4142[label="",style="solid", color="blue", weight=3]; 5684[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5684[label="",style="solid", color="blue", weight=9]; 5684 -> 4143[label="",style="solid", color="blue", weight=3]; 5685[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5685[label="",style="solid", color="blue", weight=9]; 5685 -> 4144[label="",style="solid", color="blue", weight=3]; 5686[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5686[label="",style="solid", color="blue", weight=9]; 5686 -> 4145[label="",style="solid", color="blue", weight=3]; 5687[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5687[label="",style="solid", color="blue", weight=9]; 5687 -> 4146[label="",style="solid", color="blue", weight=3]; 5688[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5688[label="",style="solid", color="blue", weight=9]; 5688 -> 4147[label="",style="solid", color="blue", weight=3]; 5689[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5689[label="",style="solid", color="blue", weight=9]; 5689 -> 4148[label="",style="solid", color="blue", weight=3]; 5690[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5690[label="",style="solid", color="blue", weight=9]; 5690 -> 4149[label="",style="solid", color="blue", weight=3]; 5691[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5691[label="",style="solid", color="blue", weight=9]; 5691 -> 4150[label="",style="solid", color="blue", weight=3]; 5692[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5692[label="",style="solid", color="blue", weight=9]; 5692 -> 4151[label="",style="solid", color="blue", weight=3]; 5693[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5693[label="",style="solid", color="blue", weight=9]; 5693 -> 4152[label="",style="solid", color="blue", weight=3]; 4064[label="compare (yvy79000 : yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5694[label="yvy8000/yvy80000 : yvy80001",fontsize=10,color="white",style="solid",shape="box"];4064 -> 5694[label="",style="solid", color="burlywood", weight=9]; 5694 -> 4153[label="",style="solid", color="burlywood", weight=3]; 5695[label="yvy8000/[]",fontsize=10,color="white",style="solid",shape="box"];4064 -> 5695[label="",style="solid", color="burlywood", weight=9]; 5695 -> 4154[label="",style="solid", color="burlywood", weight=3]; 4065[label="compare [] yvy8000",fontsize=16,color="burlywood",shape="box"];5696[label="yvy8000/yvy80000 : yvy80001",fontsize=10,color="white",style="solid",shape="box"];4065 -> 5696[label="",style="solid", color="burlywood", weight=9]; 5696 -> 4155[label="",style="solid", color="burlywood", weight=3]; 5697[label="yvy8000/[]",fontsize=10,color="white",style="solid",shape="box"];4065 -> 5697[label="",style="solid", color="burlywood", weight=9]; 5697 -> 4156[label="",style="solid", color="burlywood", weight=3]; 4066[label="primCmpDouble yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5698[label="yvy7900/Double yvy79000 yvy79001",fontsize=10,color="white",style="solid",shape="box"];4066 -> 5698[label="",style="solid", color="burlywood", weight=9]; 5698 -> 4157[label="",style="solid", color="burlywood", weight=3]; 4095[label="GT",fontsize=16,color="green",shape="box"];4096[label="GT",fontsize=16,color="green",shape="box"];2177[label="yvy41",fontsize=16,color="green",shape="box"];2179 -> 1920[label="",style="dashed", color="red", weight=0]; 2179[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];2179 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2144[label="",style="dashed", color="red", weight=0]; 2178[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy186",fontsize=16,color="magenta"];2178 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2198[label="primMulNat yvy40010 yvy30000",fontsize=16,color="burlywood",shape="triangle"];5699[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];2198 -> 5699[label="",style="solid", color="burlywood", weight=9]; 5699 -> 2341[label="",style="solid", color="burlywood", weight=3]; 5700[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2198 -> 5700[label="",style="solid", color="burlywood", weight=9]; 5700 -> 2342[label="",style="solid", color="burlywood", weight=3]; 2199 -> 2198[label="",style="dashed", color="red", weight=0]; 2199[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2199 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2198[label="",style="dashed", color="red", weight=0]; 2200[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2200 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2198[label="",style="dashed", color="red", weight=0]; 2201[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2201 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2294[label="primCmpInt (Pos yvy790) yvy80",fontsize=16,color="burlywood",shape="box"];5701[label="yvy790/Succ yvy7900",fontsize=10,color="white",style="solid",shape="box"];2294 -> 5701[label="",style="solid", color="burlywood", weight=9]; 5701 -> 2479[label="",style="solid", color="burlywood", weight=3]; 5702[label="yvy790/Zero",fontsize=10,color="white",style="solid",shape="box"];2294 -> 5702[label="",style="solid", color="burlywood", weight=9]; 5702 -> 2480[label="",style="solid", color="burlywood", weight=3]; 2295[label="primCmpInt (Neg yvy790) yvy80",fontsize=16,color="burlywood",shape="box"];5703[label="yvy790/Succ yvy7900",fontsize=10,color="white",style="solid",shape="box"];2295 -> 5703[label="",style="solid", color="burlywood", weight=9]; 5703 -> 2481[label="",style="solid", color="burlywood", weight=3]; 5704[label="yvy790/Zero",fontsize=10,color="white",style="solid",shape="box"];2295 -> 5704[label="",style="solid", color="burlywood", weight=9]; 5704 -> 2482[label="",style="solid", color="burlywood", weight=3]; 5011[label="FiniteMap.Branch yvy278 yvy279 (FiniteMap.mkBranchUnbox yvy280 yvy281 yvy278 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy280 yvy281 yvy278 + FiniteMap.mkBranchRight_size yvy280 yvy281 yvy278)) yvy280 yvy281",fontsize=16,color="green",shape="box"];5011 -> 5014[label="",style="dashed", color="green", weight=3]; 2783 -> 2777[label="",style="dashed", color="red", weight=0]; 2783[label="FiniteMap.sizeFM yvy107",fontsize=16,color="magenta"];2783 -> 2970[label="",style="dashed", color="magenta", weight=3]; 4097[label="primPlusInt (Pos yvy2420) yvy241",fontsize=16,color="burlywood",shape="box"];5705[label="yvy241/Pos yvy2410",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5705[label="",style="solid", color="burlywood", weight=9]; 5705 -> 4158[label="",style="solid", color="burlywood", weight=3]; 5706[label="yvy241/Neg yvy2410",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5706[label="",style="solid", color="burlywood", weight=9]; 5706 -> 4159[label="",style="solid", color="burlywood", weight=3]; 4098[label="primPlusInt (Neg yvy2420) yvy241",fontsize=16,color="burlywood",shape="box"];5707[label="yvy241/Pos yvy2410",fontsize=10,color="white",style="solid",shape="box"];4098 -> 5707[label="",style="solid", color="burlywood", weight=9]; 5707 -> 4160[label="",style="solid", color="burlywood", weight=3]; 5708[label="yvy241/Neg yvy2410",fontsize=10,color="white",style="solid",shape="box"];4098 -> 5708[label="",style="solid", color="burlywood", weight=9]; 5708 -> 4161[label="",style="solid", color="burlywood", weight=3]; 2772 -> 1321[label="",style="dashed", color="red", weight=0]; 2772[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2772 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2770[label="yvy199 > yvy198",fontsize=16,color="black",shape="triangle"];2770 -> 2780[label="",style="solid", color="black", weight=3]; 2323[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];2323 -> 2514[label="",style="solid", color="black", weight=3]; 2324[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];2324 -> 2515[label="",style="solid", color="black", weight=3]; 2192 -> 1947[label="",style="dashed", color="red", weight=0]; 2192[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];2192 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2144[label="",style="dashed", color="red", weight=0]; 2191[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy187",fontsize=16,color="magenta"];2191 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2331[label="",style="dashed", color="magenta", weight=3]; 4099 -> 3771[label="",style="dashed", color="red", weight=0]; 4099[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4099 -> 4162[label="",style="dashed", color="magenta", weight=3]; 4099 -> 4163[label="",style="dashed", color="magenta", weight=3]; 4100 -> 3772[label="",style="dashed", color="red", weight=0]; 4100[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4100 -> 4164[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4165[label="",style="dashed", color="magenta", weight=3]; 4101 -> 3773[label="",style="dashed", color="red", weight=0]; 4101[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4101 -> 4166[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4167[label="",style="dashed", color="magenta", weight=3]; 4102 -> 3774[label="",style="dashed", color="red", weight=0]; 4102[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4102 -> 4168[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4169[label="",style="dashed", color="magenta", weight=3]; 4103 -> 3775[label="",style="dashed", color="red", weight=0]; 4103[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4103 -> 4170[label="",style="dashed", color="magenta", weight=3]; 4103 -> 4171[label="",style="dashed", color="magenta", weight=3]; 4104 -> 3776[label="",style="dashed", color="red", weight=0]; 4104[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4104 -> 4172[label="",style="dashed", color="magenta", weight=3]; 4104 -> 4173[label="",style="dashed", color="magenta", weight=3]; 4105 -> 3777[label="",style="dashed", color="red", weight=0]; 4105[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4105 -> 4174[label="",style="dashed", color="magenta", weight=3]; 4105 -> 4175[label="",style="dashed", color="magenta", weight=3]; 4106 -> 3778[label="",style="dashed", color="red", weight=0]; 4106[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4106 -> 4176[label="",style="dashed", color="magenta", weight=3]; 4106 -> 4177[label="",style="dashed", color="magenta", weight=3]; 4107 -> 3779[label="",style="dashed", color="red", weight=0]; 4107[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4107 -> 4178[label="",style="dashed", color="magenta", weight=3]; 4107 -> 4179[label="",style="dashed", color="magenta", weight=3]; 4108 -> 3780[label="",style="dashed", color="red", weight=0]; 4108[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4108 -> 4180[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4181[label="",style="dashed", color="magenta", weight=3]; 4109 -> 3781[label="",style="dashed", color="red", weight=0]; 4109[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4109 -> 4182[label="",style="dashed", color="magenta", weight=3]; 4109 -> 4183[label="",style="dashed", color="magenta", weight=3]; 4110 -> 3782[label="",style="dashed", color="red", weight=0]; 4110[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4110 -> 4184[label="",style="dashed", color="magenta", weight=3]; 4110 -> 4185[label="",style="dashed", color="magenta", weight=3]; 4111 -> 3783[label="",style="dashed", color="red", weight=0]; 4111[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4111 -> 4186[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4112 -> 3784[label="",style="dashed", color="red", weight=0]; 4112[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4112 -> 4188[label="",style="dashed", color="magenta", weight=3]; 4112 -> 4189[label="",style="dashed", color="magenta", weight=3]; 4113 -> 3771[label="",style="dashed", color="red", weight=0]; 4113[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4113 -> 4190[label="",style="dashed", color="magenta", weight=3]; 4113 -> 4191[label="",style="dashed", color="magenta", weight=3]; 4114 -> 3772[label="",style="dashed", color="red", weight=0]; 4114[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4114 -> 4192[label="",style="dashed", color="magenta", weight=3]; 4114 -> 4193[label="",style="dashed", color="magenta", weight=3]; 4115 -> 3773[label="",style="dashed", color="red", weight=0]; 4115[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4115 -> 4194[label="",style="dashed", color="magenta", weight=3]; 4115 -> 4195[label="",style="dashed", color="magenta", weight=3]; 4116 -> 3774[label="",style="dashed", color="red", weight=0]; 4116[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4116 -> 4196[label="",style="dashed", color="magenta", weight=3]; 4116 -> 4197[label="",style="dashed", color="magenta", weight=3]; 4117 -> 3775[label="",style="dashed", color="red", weight=0]; 4117[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4117 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4117 -> 4199[label="",style="dashed", color="magenta", weight=3]; 4118 -> 3776[label="",style="dashed", color="red", weight=0]; 4118[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4118 -> 4200[label="",style="dashed", color="magenta", weight=3]; 4118 -> 4201[label="",style="dashed", color="magenta", weight=3]; 4119 -> 3777[label="",style="dashed", color="red", weight=0]; 4119[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4119 -> 4202[label="",style="dashed", color="magenta", weight=3]; 4119 -> 4203[label="",style="dashed", color="magenta", weight=3]; 4120 -> 3778[label="",style="dashed", color="red", weight=0]; 4120[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4120 -> 4204[label="",style="dashed", color="magenta", weight=3]; 4120 -> 4205[label="",style="dashed", color="magenta", weight=3]; 4121 -> 3779[label="",style="dashed", color="red", weight=0]; 4121[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4121 -> 4206[label="",style="dashed", color="magenta", weight=3]; 4121 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4122 -> 3780[label="",style="dashed", color="red", weight=0]; 4122[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4122 -> 4208[label="",style="dashed", color="magenta", weight=3]; 4122 -> 4209[label="",style="dashed", color="magenta", weight=3]; 4123 -> 3781[label="",style="dashed", color="red", weight=0]; 4123[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4123 -> 4210[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4211[label="",style="dashed", color="magenta", weight=3]; 4124 -> 3782[label="",style="dashed", color="red", weight=0]; 4124[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4124 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4124 -> 4213[label="",style="dashed", color="magenta", weight=3]; 4125 -> 3783[label="",style="dashed", color="red", weight=0]; 4125[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4125 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4125 -> 4215[label="",style="dashed", color="magenta", weight=3]; 4126 -> 3784[label="",style="dashed", color="red", weight=0]; 4126[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4126 -> 4216[label="",style="dashed", color="magenta", weight=3]; 4126 -> 4217[label="",style="dashed", color="magenta", weight=3]; 4127[label="primCmpChar (Char yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5709[label="yvy8000/Char yvy80000",fontsize=10,color="white",style="solid",shape="box"];4127 -> 5709[label="",style="solid", color="burlywood", weight=9]; 5709 -> 4218[label="",style="solid", color="burlywood", weight=3]; 4129 -> 127[label="",style="dashed", color="red", weight=0]; 4129[label="yvy243 == GT",fontsize=16,color="magenta"];4129 -> 4219[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4220[label="",style="dashed", color="magenta", weight=3]; 4128[label="not yvy248",fontsize=16,color="burlywood",shape="triangle"];5710[label="yvy248/False",fontsize=10,color="white",style="solid",shape="box"];4128 -> 5710[label="",style="solid", color="burlywood", weight=9]; 5710 -> 4221[label="",style="solid", color="burlywood", weight=3]; 5711[label="yvy248/True",fontsize=10,color="white",style="solid",shape="box"];4128 -> 5711[label="",style="solid", color="burlywood", weight=9]; 5711 -> 4222[label="",style="solid", color="burlywood", weight=3]; 4226 -> 3434[label="",style="dashed", color="red", weight=0]; 4226[label="yvy79000 == yvy80000 && (yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002)",fontsize=16,color="magenta"];4226 -> 4234[label="",style="dashed", color="magenta", weight=3]; 4226 -> 4235[label="",style="dashed", color="magenta", weight=3]; 4227[label="yvy79000 < yvy80000",fontsize=16,color="blue",shape="box"];5712[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5712[label="",style="solid", color="blue", weight=9]; 5712 -> 4236[label="",style="solid", color="blue", weight=3]; 5713[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5713[label="",style="solid", color="blue", weight=9]; 5713 -> 4237[label="",style="solid", color="blue", weight=3]; 5714[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5714[label="",style="solid", color="blue", weight=9]; 5714 -> 4238[label="",style="solid", color="blue", weight=3]; 5715[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5715[label="",style="solid", color="blue", weight=9]; 5715 -> 4239[label="",style="solid", color="blue", weight=3]; 5716[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5716[label="",style="solid", color="blue", weight=9]; 5716 -> 4240[label="",style="solid", color="blue", weight=3]; 5717[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5717[label="",style="solid", color="blue", weight=9]; 5717 -> 4241[label="",style="solid", color="blue", weight=3]; 5718[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5718[label="",style="solid", color="blue", weight=9]; 5718 -> 4242[label="",style="solid", color="blue", weight=3]; 5719[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5719[label="",style="solid", color="blue", weight=9]; 5719 -> 4243[label="",style="solid", color="blue", weight=3]; 5720[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5720[label="",style="solid", color="blue", weight=9]; 5720 -> 4244[label="",style="solid", color="blue", weight=3]; 5721[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5721[label="",style="solid", color="blue", weight=9]; 5721 -> 4245[label="",style="solid", color="blue", weight=3]; 5722[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5722[label="",style="solid", color="blue", weight=9]; 5722 -> 4246[label="",style="solid", color="blue", weight=3]; 5723[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5723[label="",style="solid", color="blue", weight=9]; 5723 -> 4247[label="",style="solid", color="blue", weight=3]; 5724[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5724[label="",style="solid", color="blue", weight=9]; 5724 -> 4248[label="",style="solid", color="blue", weight=3]; 5725[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4227 -> 5725[label="",style="solid", color="blue", weight=9]; 5725 -> 4249[label="",style="solid", color="blue", weight=3]; 4225[label="yvy254 || yvy255",fontsize=16,color="burlywood",shape="triangle"];5726[label="yvy254/False",fontsize=10,color="white",style="solid",shape="box"];4225 -> 5726[label="",style="solid", color="burlywood", weight=9]; 5726 -> 4250[label="",style="solid", color="burlywood", weight=3]; 5727[label="yvy254/True",fontsize=10,color="white",style="solid",shape="box"];4225 -> 5727[label="",style="solid", color="burlywood", weight=9]; 5727 -> 4251[label="",style="solid", color="burlywood", weight=3]; 4135[label="compare (Integer yvy79000) (Integer yvy80000)",fontsize=16,color="black",shape="box"];4135 -> 4252[label="",style="solid", color="black", weight=3]; 4228 -> 3434[label="",style="dashed", color="red", weight=0]; 4228[label="yvy79000 == yvy80000 && yvy79001 <= yvy80001",fontsize=16,color="magenta"];4228 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4228 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4229[label="yvy79000 < yvy80000",fontsize=16,color="blue",shape="box"];5728[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5728[label="",style="solid", color="blue", weight=9]; 5728 -> 4255[label="",style="solid", color="blue", weight=3]; 5729[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5729[label="",style="solid", color="blue", weight=9]; 5729 -> 4256[label="",style="solid", color="blue", weight=3]; 5730[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5730[label="",style="solid", color="blue", weight=9]; 5730 -> 4257[label="",style="solid", color="blue", weight=3]; 5731[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5731[label="",style="solid", color="blue", weight=9]; 5731 -> 4258[label="",style="solid", color="blue", weight=3]; 5732[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5732[label="",style="solid", color="blue", weight=9]; 5732 -> 4259[label="",style="solid", color="blue", weight=3]; 5733[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5733[label="",style="solid", color="blue", weight=9]; 5733 -> 4260[label="",style="solid", color="blue", weight=3]; 5734[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5734[label="",style="solid", color="blue", weight=9]; 5734 -> 4261[label="",style="solid", color="blue", weight=3]; 5735[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5735[label="",style="solid", color="blue", weight=9]; 5735 -> 4262[label="",style="solid", color="blue", weight=3]; 5736[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5736[label="",style="solid", color="blue", weight=9]; 5736 -> 4263[label="",style="solid", color="blue", weight=3]; 5737[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5737[label="",style="solid", color="blue", weight=9]; 5737 -> 4264[label="",style="solid", color="blue", weight=3]; 5738[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5738[label="",style="solid", color="blue", weight=9]; 5738 -> 4265[label="",style="solid", color="blue", weight=3]; 5739[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5739[label="",style="solid", color="blue", weight=9]; 5739 -> 4266[label="",style="solid", color="blue", weight=3]; 5740[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5740[label="",style="solid", color="blue", weight=9]; 5740 -> 4267[label="",style="solid", color="blue", weight=3]; 5741[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4229 -> 5741[label="",style="solid", color="blue", weight=9]; 5741 -> 4268[label="",style="solid", color="blue", weight=3]; 4136[label="compare () ()",fontsize=16,color="black",shape="box"];4136 -> 4269[label="",style="solid", color="black", weight=3]; 4137[label="compare (yvy79000 :% yvy79001) (yvy80000 :% yvy80001)",fontsize=16,color="black",shape="box"];4137 -> 4270[label="",style="solid", color="black", weight=3]; 4138[label="primCmpFloat (Float yvy79000 yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5742[label="yvy79001/Pos yvy790010",fontsize=10,color="white",style="solid",shape="box"];4138 -> 5742[label="",style="solid", color="burlywood", weight=9]; 5742 -> 4271[label="",style="solid", color="burlywood", weight=3]; 5743[label="yvy79001/Neg yvy790010",fontsize=10,color="white",style="solid",shape="box"];4138 -> 5743[label="",style="solid", color="burlywood", weight=9]; 5743 -> 4272[label="",style="solid", color="burlywood", weight=3]; 4139 -> 3771[label="",style="dashed", color="red", weight=0]; 4139[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4139 -> 4273[label="",style="dashed", color="magenta", weight=3]; 4139 -> 4274[label="",style="dashed", color="magenta", weight=3]; 4140 -> 3772[label="",style="dashed", color="red", weight=0]; 4140[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4140 -> 4275[label="",style="dashed", color="magenta", weight=3]; 4140 -> 4276[label="",style="dashed", color="magenta", weight=3]; 4141 -> 3773[label="",style="dashed", color="red", weight=0]; 4141[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4141 -> 4277[label="",style="dashed", color="magenta", weight=3]; 4141 -> 4278[label="",style="dashed", color="magenta", weight=3]; 4142 -> 3774[label="",style="dashed", color="red", weight=0]; 4142[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4142 -> 4279[label="",style="dashed", color="magenta", weight=3]; 4142 -> 4280[label="",style="dashed", color="magenta", weight=3]; 4143 -> 3775[label="",style="dashed", color="red", weight=0]; 4143[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4143 -> 4281[label="",style="dashed", color="magenta", weight=3]; 4143 -> 4282[label="",style="dashed", color="magenta", weight=3]; 4144 -> 3776[label="",style="dashed", color="red", weight=0]; 4144[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4144 -> 4283[label="",style="dashed", color="magenta", weight=3]; 4144 -> 4284[label="",style="dashed", color="magenta", weight=3]; 4145 -> 3777[label="",style="dashed", color="red", weight=0]; 4145[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4145 -> 4285[label="",style="dashed", color="magenta", weight=3]; 4145 -> 4286[label="",style="dashed", color="magenta", weight=3]; 4146 -> 3778[label="",style="dashed", color="red", weight=0]; 4146[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4146 -> 4287[label="",style="dashed", color="magenta", weight=3]; 4146 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4147 -> 3779[label="",style="dashed", color="red", weight=0]; 4147[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4147 -> 4289[label="",style="dashed", color="magenta", weight=3]; 4147 -> 4290[label="",style="dashed", color="magenta", weight=3]; 4148 -> 3780[label="",style="dashed", color="red", weight=0]; 4148[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4148 -> 4291[label="",style="dashed", color="magenta", weight=3]; 4148 -> 4292[label="",style="dashed", color="magenta", weight=3]; 4149 -> 3781[label="",style="dashed", color="red", weight=0]; 4149[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4149 -> 4293[label="",style="dashed", color="magenta", weight=3]; 4149 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4150 -> 3782[label="",style="dashed", color="red", weight=0]; 4150[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4150 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4150 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4151 -> 3783[label="",style="dashed", color="red", weight=0]; 4151[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4151 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4151 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4152 -> 3784[label="",style="dashed", color="red", weight=0]; 4152[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4152 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4152 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4153[label="compare (yvy79000 : yvy79001) (yvy80000 : yvy80001)",fontsize=16,color="black",shape="box"];4153 -> 4301[label="",style="solid", color="black", weight=3]; 4154[label="compare (yvy79000 : yvy79001) []",fontsize=16,color="black",shape="box"];4154 -> 4302[label="",style="solid", color="black", weight=3]; 4155[label="compare [] (yvy80000 : yvy80001)",fontsize=16,color="black",shape="box"];4155 -> 4303[label="",style="solid", color="black", weight=3]; 4156[label="compare [] []",fontsize=16,color="black",shape="box"];4156 -> 4304[label="",style="solid", color="black", weight=3]; 4157[label="primCmpDouble (Double yvy79000 yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5744[label="yvy79001/Pos yvy790010",fontsize=10,color="white",style="solid",shape="box"];4157 -> 5744[label="",style="solid", color="burlywood", weight=9]; 5744 -> 4305[label="",style="solid", color="burlywood", weight=3]; 5745[label="yvy79001/Neg yvy790010",fontsize=10,color="white",style="solid",shape="box"];4157 -> 5745[label="",style="solid", color="burlywood", weight=9]; 5745 -> 4306[label="",style="solid", color="burlywood", weight=3]; 2302[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2303[label="yvy186",fontsize=16,color="green",shape="box"];2304[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];2304 -> 2491[label="",style="dashed", color="green", weight=3]; 2341[label="primMulNat (Succ yvy400100) yvy30000",fontsize=16,color="burlywood",shape="box"];5746[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2341 -> 5746[label="",style="solid", color="burlywood", weight=9]; 5746 -> 2542[label="",style="solid", color="burlywood", weight=3]; 5747[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2341 -> 5747[label="",style="solid", color="burlywood", weight=9]; 5747 -> 2543[label="",style="solid", color="burlywood", weight=3]; 2342[label="primMulNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];5748[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2342 -> 5748[label="",style="solid", color="burlywood", weight=9]; 5748 -> 2544[label="",style="solid", color="burlywood", weight=3]; 5749[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2342 -> 5749[label="",style="solid", color="burlywood", weight=9]; 5749 -> 2545[label="",style="solid", color="burlywood", weight=3]; 2343[label="yvy30000",fontsize=16,color="green",shape="box"];2344[label="yvy40010",fontsize=16,color="green",shape="box"];2345[label="yvy40010",fontsize=16,color="green",shape="box"];2346[label="yvy30000",fontsize=16,color="green",shape="box"];2479[label="primCmpInt (Pos (Succ yvy7900)) yvy80",fontsize=16,color="burlywood",shape="box"];5750[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5750[label="",style="solid", color="burlywood", weight=9]; 5750 -> 2629[label="",style="solid", color="burlywood", weight=3]; 5751[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5751[label="",style="solid", color="burlywood", weight=9]; 5751 -> 2630[label="",style="solid", color="burlywood", weight=3]; 2480[label="primCmpInt (Pos Zero) yvy80",fontsize=16,color="burlywood",shape="box"];5752[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5752[label="",style="solid", color="burlywood", weight=9]; 5752 -> 2631[label="",style="solid", color="burlywood", weight=3]; 5753[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5753[label="",style="solid", color="burlywood", weight=9]; 5753 -> 2632[label="",style="solid", color="burlywood", weight=3]; 2481[label="primCmpInt (Neg (Succ yvy7900)) yvy80",fontsize=16,color="burlywood",shape="box"];5754[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5754[label="",style="solid", color="burlywood", weight=9]; 5754 -> 2633[label="",style="solid", color="burlywood", weight=3]; 5755[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5755[label="",style="solid", color="burlywood", weight=9]; 5755 -> 2634[label="",style="solid", color="burlywood", weight=3]; 2482[label="primCmpInt (Neg Zero) yvy80",fontsize=16,color="burlywood",shape="box"];5756[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5756[label="",style="solid", color="burlywood", weight=9]; 5756 -> 2635[label="",style="solid", color="burlywood", weight=3]; 5757[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5757[label="",style="solid", color="burlywood", weight=9]; 5757 -> 2636[label="",style="solid", color="burlywood", weight=3]; 5014 -> 5017[label="",style="dashed", color="red", weight=0]; 5014[label="FiniteMap.mkBranchUnbox yvy280 yvy281 yvy278 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy280 yvy281 yvy278 + FiniteMap.mkBranchRight_size yvy280 yvy281 yvy278)",fontsize=16,color="magenta"];5014 -> 5018[label="",style="dashed", color="magenta", weight=3]; 2970[label="yvy107",fontsize=16,color="green",shape="box"];4158[label="primPlusInt (Pos yvy2420) (Pos yvy2410)",fontsize=16,color="black",shape="box"];4158 -> 4307[label="",style="solid", color="black", weight=3]; 4159[label="primPlusInt (Pos yvy2420) (Neg yvy2410)",fontsize=16,color="black",shape="box"];4159 -> 4308[label="",style="solid", color="black", weight=3]; 4160[label="primPlusInt (Neg yvy2420) (Pos yvy2410)",fontsize=16,color="black",shape="box"];4160 -> 4309[label="",style="solid", color="black", weight=3]; 4161[label="primPlusInt (Neg yvy2420) (Neg yvy2410)",fontsize=16,color="black",shape="box"];4161 -> 4310[label="",style="solid", color="black", weight=3]; 2778 -> 2775[label="",style="dashed", color="red", weight=0]; 2778[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2779 -> 1921[label="",style="dashed", color="red", weight=0]; 2779[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2780 -> 127[label="",style="dashed", color="red", weight=0]; 2780[label="compare yvy199 yvy198 == GT",fontsize=16,color="magenta"];2780 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2766[label="",style="dashed", color="red", weight=0]; 2514[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];2514 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2515[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 yvy54 yvy107 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5758[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5758[label="",style="solid", color="burlywood", weight=9]; 5758 -> 2644[label="",style="solid", color="burlywood", weight=3]; 5759[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5759[label="",style="solid", color="burlywood", weight=9]; 5759 -> 2645[label="",style="solid", color="burlywood", weight=3]; 2329[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2330[label="yvy187",fontsize=16,color="green",shape="box"];2331[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];2331 -> 2520[label="",style="dashed", color="green", weight=3]; 4162[label="yvy79000",fontsize=16,color="green",shape="box"];4163[label="yvy80000",fontsize=16,color="green",shape="box"];4164[label="yvy79000",fontsize=16,color="green",shape="box"];4165[label="yvy80000",fontsize=16,color="green",shape="box"];4166[label="yvy79000",fontsize=16,color="green",shape="box"];4167[label="yvy80000",fontsize=16,color="green",shape="box"];4168[label="yvy79000",fontsize=16,color="green",shape="box"];4169[label="yvy80000",fontsize=16,color="green",shape="box"];4170[label="yvy79000",fontsize=16,color="green",shape="box"];4171[label="yvy80000",fontsize=16,color="green",shape="box"];4172[label="yvy79000",fontsize=16,color="green",shape="box"];4173[label="yvy80000",fontsize=16,color="green",shape="box"];4174[label="yvy79000",fontsize=16,color="green",shape="box"];4175[label="yvy80000",fontsize=16,color="green",shape="box"];4176[label="yvy79000",fontsize=16,color="green",shape="box"];4177[label="yvy80000",fontsize=16,color="green",shape="box"];4178[label="yvy79000",fontsize=16,color="green",shape="box"];4179[label="yvy80000",fontsize=16,color="green",shape="box"];4180[label="yvy79000",fontsize=16,color="green",shape="box"];4181[label="yvy80000",fontsize=16,color="green",shape="box"];4182[label="yvy79000",fontsize=16,color="green",shape="box"];4183[label="yvy80000",fontsize=16,color="green",shape="box"];4184[label="yvy79000",fontsize=16,color="green",shape="box"];4185[label="yvy80000",fontsize=16,color="green",shape="box"];4186[label="yvy79000",fontsize=16,color="green",shape="box"];4187[label="yvy80000",fontsize=16,color="green",shape="box"];4188[label="yvy79000",fontsize=16,color="green",shape="box"];4189[label="yvy80000",fontsize=16,color="green",shape="box"];4190[label="yvy79000",fontsize=16,color="green",shape="box"];4191[label="yvy80000",fontsize=16,color="green",shape="box"];4192[label="yvy79000",fontsize=16,color="green",shape="box"];4193[label="yvy80000",fontsize=16,color="green",shape="box"];4194[label="yvy79000",fontsize=16,color="green",shape="box"];4195[label="yvy80000",fontsize=16,color="green",shape="box"];4196[label="yvy79000",fontsize=16,color="green",shape="box"];4197[label="yvy80000",fontsize=16,color="green",shape="box"];4198[label="yvy79000",fontsize=16,color="green",shape="box"];4199[label="yvy80000",fontsize=16,color="green",shape="box"];4200[label="yvy79000",fontsize=16,color="green",shape="box"];4201[label="yvy80000",fontsize=16,color="green",shape="box"];4202[label="yvy79000",fontsize=16,color="green",shape="box"];4203[label="yvy80000",fontsize=16,color="green",shape="box"];4204[label="yvy79000",fontsize=16,color="green",shape="box"];4205[label="yvy80000",fontsize=16,color="green",shape="box"];4206[label="yvy79000",fontsize=16,color="green",shape="box"];4207[label="yvy80000",fontsize=16,color="green",shape="box"];4208[label="yvy79000",fontsize=16,color="green",shape="box"];4209[label="yvy80000",fontsize=16,color="green",shape="box"];4210[label="yvy79000",fontsize=16,color="green",shape="box"];4211[label="yvy80000",fontsize=16,color="green",shape="box"];4212[label="yvy79000",fontsize=16,color="green",shape="box"];4213[label="yvy80000",fontsize=16,color="green",shape="box"];4214[label="yvy79000",fontsize=16,color="green",shape="box"];4215[label="yvy80000",fontsize=16,color="green",shape="box"];4216[label="yvy79000",fontsize=16,color="green",shape="box"];4217[label="yvy80000",fontsize=16,color="green",shape="box"];4218[label="primCmpChar (Char yvy79000) (Char yvy80000)",fontsize=16,color="black",shape="box"];4218 -> 4311[label="",style="solid", color="black", weight=3]; 4219[label="GT",fontsize=16,color="green",shape="box"];4220[label="yvy243",fontsize=16,color="green",shape="box"];4221[label="not False",fontsize=16,color="black",shape="box"];4221 -> 4312[label="",style="solid", color="black", weight=3]; 4222[label="not True",fontsize=16,color="black",shape="box"];4222 -> 4313[label="",style="solid", color="black", weight=3]; 4234 -> 4225[label="",style="dashed", color="red", weight=0]; 4234[label="yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002",fontsize=16,color="magenta"];4234 -> 4338[label="",style="dashed", color="magenta", weight=3]; 4234 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4235[label="yvy79000 == yvy80000",fontsize=16,color="blue",shape="box"];5760[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5760[label="",style="solid", color="blue", weight=9]; 5760 -> 4340[label="",style="solid", color="blue", weight=3]; 5761[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5761[label="",style="solid", color="blue", weight=9]; 5761 -> 4341[label="",style="solid", color="blue", weight=3]; 5762[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5762[label="",style="solid", color="blue", weight=9]; 5762 -> 4342[label="",style="solid", color="blue", weight=3]; 5763[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5763[label="",style="solid", color="blue", weight=9]; 5763 -> 4343[label="",style="solid", color="blue", weight=3]; 5764[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5764[label="",style="solid", color="blue", weight=9]; 5764 -> 4344[label="",style="solid", color="blue", weight=3]; 5765[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5765[label="",style="solid", color="blue", weight=9]; 5765 -> 4345[label="",style="solid", color="blue", weight=3]; 5766[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5766[label="",style="solid", color="blue", weight=9]; 5766 -> 4346[label="",style="solid", color="blue", weight=3]; 5767[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5767[label="",style="solid", color="blue", weight=9]; 5767 -> 4347[label="",style="solid", color="blue", weight=3]; 5768[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5768[label="",style="solid", color="blue", weight=9]; 5768 -> 4348[label="",style="solid", color="blue", weight=3]; 5769[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5769[label="",style="solid", color="blue", weight=9]; 5769 -> 4349[label="",style="solid", color="blue", weight=3]; 5770[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5770[label="",style="solid", color="blue", weight=9]; 5770 -> 4350[label="",style="solid", color="blue", weight=3]; 5771[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5771[label="",style="solid", color="blue", weight=9]; 5771 -> 4351[label="",style="solid", color="blue", weight=3]; 5772[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5772[label="",style="solid", color="blue", weight=9]; 5772 -> 4352[label="",style="solid", color="blue", weight=3]; 5773[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4235 -> 5773[label="",style="solid", color="blue", weight=9]; 5773 -> 4353[label="",style="solid", color="blue", weight=3]; 4236[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4236 -> 4354[label="",style="solid", color="black", weight=3]; 4237[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4237 -> 4355[label="",style="solid", color="black", weight=3]; 4238[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4238 -> 4356[label="",style="solid", color="black", weight=3]; 4239[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4239 -> 4357[label="",style="solid", color="black", weight=3]; 4240[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4240 -> 4358[label="",style="solid", color="black", weight=3]; 4241[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4241 -> 4359[label="",style="solid", color="black", weight=3]; 4242[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4242 -> 4360[label="",style="solid", color="black", weight=3]; 4243[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4243 -> 4361[label="",style="solid", color="black", weight=3]; 4244[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4244 -> 4362[label="",style="solid", color="black", weight=3]; 4245 -> 3959[label="",style="dashed", color="red", weight=0]; 4245[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4245 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4245 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4246[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4246 -> 4365[label="",style="solid", color="black", weight=3]; 4247[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4247 -> 4366[label="",style="solid", color="black", weight=3]; 4248[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4248 -> 4367[label="",style="solid", color="black", weight=3]; 4249[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4249 -> 4368[label="",style="solid", color="black", weight=3]; 4250[label="False || yvy255",fontsize=16,color="black",shape="box"];4250 -> 4369[label="",style="solid", color="black", weight=3]; 4251[label="True || yvy255",fontsize=16,color="black",shape="box"];4251 -> 4370[label="",style="solid", color="black", weight=3]; 4252 -> 2144[label="",style="dashed", color="red", weight=0]; 4252[label="primCmpInt yvy79000 yvy80000",fontsize=16,color="magenta"];4252 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4252 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4253[label="yvy79001 <= yvy80001",fontsize=16,color="blue",shape="box"];5774[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5774[label="",style="solid", color="blue", weight=9]; 5774 -> 4373[label="",style="solid", color="blue", weight=3]; 5775[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5775[label="",style="solid", color="blue", weight=9]; 5775 -> 4374[label="",style="solid", color="blue", weight=3]; 5776[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5776[label="",style="solid", color="blue", weight=9]; 5776 -> 4375[label="",style="solid", color="blue", weight=3]; 5777[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5777[label="",style="solid", color="blue", weight=9]; 5777 -> 4376[label="",style="solid", color="blue", weight=3]; 5778[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5778[label="",style="solid", color="blue", weight=9]; 5778 -> 4377[label="",style="solid", color="blue", weight=3]; 5779[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5779[label="",style="solid", color="blue", weight=9]; 5779 -> 4378[label="",style="solid", color="blue", weight=3]; 5780[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5780[label="",style="solid", color="blue", weight=9]; 5780 -> 4379[label="",style="solid", color="blue", weight=3]; 5781[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5781[label="",style="solid", color="blue", weight=9]; 5781 -> 4380[label="",style="solid", color="blue", weight=3]; 5782[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5782[label="",style="solid", color="blue", weight=9]; 5782 -> 4381[label="",style="solid", color="blue", weight=3]; 5783[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5783[label="",style="solid", color="blue", weight=9]; 5783 -> 4382[label="",style="solid", color="blue", weight=3]; 5784[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5784[label="",style="solid", color="blue", weight=9]; 5784 -> 4383[label="",style="solid", color="blue", weight=3]; 5785[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5785[label="",style="solid", color="blue", weight=9]; 5785 -> 4384[label="",style="solid", color="blue", weight=3]; 5786[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5786[label="",style="solid", color="blue", weight=9]; 5786 -> 4385[label="",style="solid", color="blue", weight=3]; 5787[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4253 -> 5787[label="",style="solid", color="blue", weight=9]; 5787 -> 4386[label="",style="solid", color="blue", weight=3]; 4254[label="yvy79000 == yvy80000",fontsize=16,color="blue",shape="box"];5788[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5788[label="",style="solid", color="blue", weight=9]; 5788 -> 4387[label="",style="solid", color="blue", weight=3]; 5789[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5789[label="",style="solid", color="blue", weight=9]; 5789 -> 4388[label="",style="solid", color="blue", weight=3]; 5790[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5790[label="",style="solid", color="blue", weight=9]; 5790 -> 4389[label="",style="solid", color="blue", weight=3]; 5791[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5791[label="",style="solid", color="blue", weight=9]; 5791 -> 4390[label="",style="solid", color="blue", weight=3]; 5792[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5792[label="",style="solid", color="blue", weight=9]; 5792 -> 4391[label="",style="solid", color="blue", weight=3]; 5793[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5793[label="",style="solid", color="blue", weight=9]; 5793 -> 4392[label="",style="solid", color="blue", weight=3]; 5794[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5794[label="",style="solid", color="blue", weight=9]; 5794 -> 4393[label="",style="solid", color="blue", weight=3]; 5795[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5795[label="",style="solid", color="blue", weight=9]; 5795 -> 4394[label="",style="solid", color="blue", weight=3]; 5796[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5796[label="",style="solid", color="blue", weight=9]; 5796 -> 4395[label="",style="solid", color="blue", weight=3]; 5797[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5797[label="",style="solid", color="blue", weight=9]; 5797 -> 4396[label="",style="solid", color="blue", weight=3]; 5798[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5798[label="",style="solid", color="blue", weight=9]; 5798 -> 4397[label="",style="solid", color="blue", weight=3]; 5799[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5799[label="",style="solid", color="blue", weight=9]; 5799 -> 4398[label="",style="solid", color="blue", weight=3]; 5800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5800[label="",style="solid", color="blue", weight=9]; 5800 -> 4399[label="",style="solid", color="blue", weight=3]; 5801[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4254 -> 5801[label="",style="solid", color="blue", weight=9]; 5801 -> 4400[label="",style="solid", color="blue", weight=3]; 4255 -> 4236[label="",style="dashed", color="red", weight=0]; 4255[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4255 -> 4401[label="",style="dashed", color="magenta", weight=3]; 4255 -> 4402[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4237[label="",style="dashed", color="red", weight=0]; 4256[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4256 -> 4403[label="",style="dashed", color="magenta", weight=3]; 4256 -> 4404[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4238[label="",style="dashed", color="red", weight=0]; 4257[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4257 -> 4405[label="",style="dashed", color="magenta", weight=3]; 4257 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4258 -> 4239[label="",style="dashed", color="red", weight=0]; 4258[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4258 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4258 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4259 -> 4240[label="",style="dashed", color="red", weight=0]; 4259[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4259 -> 4409[label="",style="dashed", color="magenta", weight=3]; 4259 -> 4410[label="",style="dashed", color="magenta", weight=3]; 4260 -> 4241[label="",style="dashed", color="red", weight=0]; 4260[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4260 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4260 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4261 -> 4242[label="",style="dashed", color="red", weight=0]; 4261[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4261 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4261 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4262 -> 4243[label="",style="dashed", color="red", weight=0]; 4262[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4262 -> 4415[label="",style="dashed", color="magenta", weight=3]; 4262 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4244[label="",style="dashed", color="red", weight=0]; 4263[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4263 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4263 -> 4418[label="",style="dashed", color="magenta", weight=3]; 4264 -> 3959[label="",style="dashed", color="red", weight=0]; 4264[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4264 -> 4419[label="",style="dashed", color="magenta", weight=3]; 4264 -> 4420[label="",style="dashed", color="magenta", weight=3]; 4265 -> 4246[label="",style="dashed", color="red", weight=0]; 4265[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4265 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4265 -> 4422[label="",style="dashed", color="magenta", weight=3]; 4266 -> 4247[label="",style="dashed", color="red", weight=0]; 4266[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4266 -> 4423[label="",style="dashed", color="magenta", weight=3]; 4266 -> 4424[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4248[label="",style="dashed", color="red", weight=0]; 4267[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4267 -> 4425[label="",style="dashed", color="magenta", weight=3]; 4267 -> 4426[label="",style="dashed", color="magenta", weight=3]; 4268 -> 4249[label="",style="dashed", color="red", weight=0]; 4268[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4268 -> 4427[label="",style="dashed", color="magenta", weight=3]; 4268 -> 4428[label="",style="dashed", color="magenta", weight=3]; 4269[label="EQ",fontsize=16,color="green",shape="box"];4270[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="blue",shape="box"];5802[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4270 -> 5802[label="",style="solid", color="blue", weight=9]; 5802 -> 4429[label="",style="solid", color="blue", weight=3]; 5803[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4270 -> 5803[label="",style="solid", color="blue", weight=9]; 5803 -> 4430[label="",style="solid", color="blue", weight=3]; 4271[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5804[label="yvy8000/Float yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4271 -> 5804[label="",style="solid", color="burlywood", weight=9]; 5804 -> 4431[label="",style="solid", color="burlywood", weight=3]; 4272[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5805[label="yvy8000/Float yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4272 -> 5805[label="",style="solid", color="burlywood", weight=9]; 5805 -> 4432[label="",style="solid", color="burlywood", weight=3]; 4273[label="yvy79000",fontsize=16,color="green",shape="box"];4274[label="yvy80000",fontsize=16,color="green",shape="box"];4275[label="yvy79000",fontsize=16,color="green",shape="box"];4276[label="yvy80000",fontsize=16,color="green",shape="box"];4277[label="yvy79000",fontsize=16,color="green",shape="box"];4278[label="yvy80000",fontsize=16,color="green",shape="box"];4279[label="yvy79000",fontsize=16,color="green",shape="box"];4280[label="yvy80000",fontsize=16,color="green",shape="box"];4281[label="yvy79000",fontsize=16,color="green",shape="box"];4282[label="yvy80000",fontsize=16,color="green",shape="box"];4283[label="yvy79000",fontsize=16,color="green",shape="box"];4284[label="yvy80000",fontsize=16,color="green",shape="box"];4285[label="yvy79000",fontsize=16,color="green",shape="box"];4286[label="yvy80000",fontsize=16,color="green",shape="box"];4287[label="yvy79000",fontsize=16,color="green",shape="box"];4288[label="yvy80000",fontsize=16,color="green",shape="box"];4289[label="yvy79000",fontsize=16,color="green",shape="box"];4290[label="yvy80000",fontsize=16,color="green",shape="box"];4291[label="yvy79000",fontsize=16,color="green",shape="box"];4292[label="yvy80000",fontsize=16,color="green",shape="box"];4293[label="yvy79000",fontsize=16,color="green",shape="box"];4294[label="yvy80000",fontsize=16,color="green",shape="box"];4295[label="yvy79000",fontsize=16,color="green",shape="box"];4296[label="yvy80000",fontsize=16,color="green",shape="box"];4297[label="yvy79000",fontsize=16,color="green",shape="box"];4298[label="yvy80000",fontsize=16,color="green",shape="box"];4299[label="yvy79000",fontsize=16,color="green",shape="box"];4300[label="yvy80000",fontsize=16,color="green",shape="box"];4301 -> 4433[label="",style="dashed", color="red", weight=0]; 4301[label="primCompAux yvy79000 yvy80000 (compare yvy79001 yvy80001)",fontsize=16,color="magenta"];4301 -> 4434[label="",style="dashed", color="magenta", weight=3]; 4302[label="GT",fontsize=16,color="green",shape="box"];4303[label="LT",fontsize=16,color="green",shape="box"];4304[label="EQ",fontsize=16,color="green",shape="box"];4305[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5806[label="yvy8000/Double yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4305 -> 5806[label="",style="solid", color="burlywood", weight=9]; 5806 -> 4435[label="",style="solid", color="burlywood", weight=3]; 4306[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5807[label="yvy8000/Double yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4306 -> 5807[label="",style="solid", color="burlywood", weight=9]; 5807 -> 4436[label="",style="solid", color="burlywood", weight=3]; 2491 -> 2789[label="",style="dashed", color="red", weight=0]; 2491[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2491 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2542[label="primMulNat (Succ yvy400100) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2542 -> 2662[label="",style="solid", color="black", weight=3]; 2543[label="primMulNat (Succ yvy400100) Zero",fontsize=16,color="black",shape="box"];2543 -> 2663[label="",style="solid", color="black", weight=3]; 2544[label="primMulNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2544 -> 2664[label="",style="solid", color="black", weight=3]; 2545[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2545 -> 2665[label="",style="solid", color="black", weight=3]; 2629[label="primCmpInt (Pos (Succ yvy7900)) (Pos yvy800)",fontsize=16,color="black",shape="box"];2629 -> 2734[label="",style="solid", color="black", weight=3]; 2630[label="primCmpInt (Pos (Succ yvy7900)) (Neg yvy800)",fontsize=16,color="black",shape="box"];2630 -> 2735[label="",style="solid", color="black", weight=3]; 2631[label="primCmpInt (Pos Zero) (Pos yvy800)",fontsize=16,color="burlywood",shape="box"];5808[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2631 -> 5808[label="",style="solid", color="burlywood", weight=9]; 5808 -> 2736[label="",style="solid", color="burlywood", weight=3]; 5809[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2631 -> 5809[label="",style="solid", color="burlywood", weight=9]; 5809 -> 2737[label="",style="solid", color="burlywood", weight=3]; 2632[label="primCmpInt (Pos Zero) (Neg yvy800)",fontsize=16,color="burlywood",shape="box"];5810[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2632 -> 5810[label="",style="solid", color="burlywood", weight=9]; 5810 -> 2738[label="",style="solid", color="burlywood", weight=3]; 5811[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2632 -> 5811[label="",style="solid", color="burlywood", weight=9]; 5811 -> 2739[label="",style="solid", color="burlywood", weight=3]; 2633[label="primCmpInt (Neg (Succ yvy7900)) (Pos yvy800)",fontsize=16,color="black",shape="box"];2633 -> 2740[label="",style="solid", color="black", weight=3]; 2634[label="primCmpInt (Neg (Succ yvy7900)) (Neg yvy800)",fontsize=16,color="black",shape="box"];2634 -> 2741[label="",style="solid", color="black", weight=3]; 2635[label="primCmpInt (Neg Zero) (Pos yvy800)",fontsize=16,color="burlywood",shape="box"];5812[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2635 -> 5812[label="",style="solid", color="burlywood", weight=9]; 5812 -> 2742[label="",style="solid", color="burlywood", weight=3]; 5813[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2635 -> 5813[label="",style="solid", color="burlywood", weight=9]; 5813 -> 2743[label="",style="solid", color="burlywood", weight=3]; 2636[label="primCmpInt (Neg Zero) (Neg yvy800)",fontsize=16,color="burlywood",shape="box"];5814[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2636 -> 5814[label="",style="solid", color="burlywood", weight=9]; 5814 -> 2744[label="",style="solid", color="burlywood", weight=3]; 5815[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2636 -> 5815[label="",style="solid", color="burlywood", weight=9]; 5815 -> 2745[label="",style="solid", color="burlywood", weight=3]; 5018 -> 3975[label="",style="dashed", color="red", weight=0]; 5018[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy280 yvy281 yvy278 + FiniteMap.mkBranchRight_size yvy280 yvy281 yvy278",fontsize=16,color="magenta"];5018 -> 5019[label="",style="dashed", color="magenta", weight=3]; 5018 -> 5020[label="",style="dashed", color="magenta", weight=3]; 5017[label="FiniteMap.mkBranchUnbox yvy280 yvy281 yvy278 yvy285",fontsize=16,color="black",shape="triangle"];5017 -> 5021[label="",style="solid", color="black", weight=3]; 4307[label="Pos (primPlusNat yvy2420 yvy2410)",fontsize=16,color="green",shape="box"];4307 -> 4437[label="",style="dashed", color="green", weight=3]; 4308[label="primMinusNat yvy2420 yvy2410",fontsize=16,color="burlywood",shape="triangle"];5816[label="yvy2420/Succ yvy24200",fontsize=10,color="white",style="solid",shape="box"];4308 -> 5816[label="",style="solid", color="burlywood", weight=9]; 5816 -> 4438[label="",style="solid", color="burlywood", weight=3]; 5817[label="yvy2420/Zero",fontsize=10,color="white",style="solid",shape="box"];4308 -> 5817[label="",style="solid", color="burlywood", weight=9]; 5817 -> 4439[label="",style="solid", color="burlywood", weight=3]; 4309 -> 4308[label="",style="dashed", color="red", weight=0]; 4309[label="primMinusNat yvy2410 yvy2420",fontsize=16,color="magenta"];4309 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4309 -> 4441[label="",style="dashed", color="magenta", weight=3]; 4310[label="Neg (primPlusNat yvy2420 yvy2410)",fontsize=16,color="green",shape="box"];4310 -> 4442[label="",style="dashed", color="green", weight=3]; 2801[label="GT",fontsize=16,color="green",shape="box"];2767 -> 2770[label="",style="dashed", color="red", weight=0]; 2767[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2767 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2766[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy196",fontsize=16,color="burlywood",shape="triangle"];5818[label="yvy196/False",fontsize=10,color="white",style="solid",shape="box"];2766 -> 5818[label="",style="solid", color="burlywood", weight=9]; 5818 -> 2781[label="",style="solid", color="burlywood", weight=3]; 5819[label="yvy196/True",fontsize=10,color="white",style="solid",shape="box"];2766 -> 5819[label="",style="solid", color="burlywood", weight=9]; 5819 -> 2782[label="",style="solid", color="burlywood", weight=3]; 2644[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 FiniteMap.EmptyFM yvy107 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2644 -> 2753[label="",style="solid", color="black", weight=3]; 2645[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2645 -> 2754[label="",style="solid", color="black", weight=3]; 2520 -> 2789[label="",style="dashed", color="red", weight=0]; 2520[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2520 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2793[label="",style="dashed", color="magenta", weight=3]; 4311 -> 3821[label="",style="dashed", color="red", weight=0]; 4311[label="primCmpNat yvy79000 yvy80000",fontsize=16,color="magenta"];4311 -> 4443[label="",style="dashed", color="magenta", weight=3]; 4311 -> 4444[label="",style="dashed", color="magenta", weight=3]; 4312[label="True",fontsize=16,color="green",shape="box"];4313[label="False",fontsize=16,color="green",shape="box"];4338 -> 3434[label="",style="dashed", color="red", weight=0]; 4338[label="yvy79001 == yvy80001 && yvy79002 <= yvy80002",fontsize=16,color="magenta"];4338 -> 4445[label="",style="dashed", color="magenta", weight=3]; 4338 -> 4446[label="",style="dashed", color="magenta", weight=3]; 4339[label="yvy79001 < yvy80001",fontsize=16,color="blue",shape="box"];5820[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5820[label="",style="solid", color="blue", weight=9]; 5820 -> 4447[label="",style="solid", color="blue", weight=3]; 5821[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5821[label="",style="solid", color="blue", weight=9]; 5821 -> 4448[label="",style="solid", color="blue", weight=3]; 5822[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5822[label="",style="solid", color="blue", weight=9]; 5822 -> 4449[label="",style="solid", color="blue", weight=3]; 5823[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5823[label="",style="solid", color="blue", weight=9]; 5823 -> 4450[label="",style="solid", color="blue", weight=3]; 5824[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5824[label="",style="solid", color="blue", weight=9]; 5824 -> 4451[label="",style="solid", color="blue", weight=3]; 5825[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5825[label="",style="solid", color="blue", weight=9]; 5825 -> 4452[label="",style="solid", color="blue", weight=3]; 5826[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5826[label="",style="solid", color="blue", weight=9]; 5826 -> 4453[label="",style="solid", color="blue", weight=3]; 5827[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5827[label="",style="solid", color="blue", weight=9]; 5827 -> 4454[label="",style="solid", color="blue", weight=3]; 5828[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5828[label="",style="solid", color="blue", weight=9]; 5828 -> 4455[label="",style="solid", color="blue", weight=3]; 5829[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5829[label="",style="solid", color="blue", weight=9]; 5829 -> 4456[label="",style="solid", color="blue", weight=3]; 5830[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5830[label="",style="solid", color="blue", weight=9]; 5830 -> 4457[label="",style="solid", color="blue", weight=3]; 5831[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5831[label="",style="solid", color="blue", weight=9]; 5831 -> 4458[label="",style="solid", color="blue", weight=3]; 5832[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5832[label="",style="solid", color="blue", weight=9]; 5832 -> 4459[label="",style="solid", color="blue", weight=3]; 5833[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4339 -> 5833[label="",style="solid", color="blue", weight=9]; 5833 -> 4460[label="",style="solid", color="blue", weight=3]; 4340 -> 2889[label="",style="dashed", color="red", weight=0]; 4340[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4340 -> 4461[label="",style="dashed", color="magenta", weight=3]; 4340 -> 4462[label="",style="dashed", color="magenta", weight=3]; 4341 -> 2890[label="",style="dashed", color="red", weight=0]; 4341[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4341 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4341 -> 4464[label="",style="dashed", color="magenta", weight=3]; 4342 -> 2883[label="",style="dashed", color="red", weight=0]; 4342[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4342 -> 4465[label="",style="dashed", color="magenta", weight=3]; 4342 -> 4466[label="",style="dashed", color="magenta", weight=3]; 4343 -> 2884[label="",style="dashed", color="red", weight=0]; 4343[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4343 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4343 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4344 -> 2879[label="",style="dashed", color="red", weight=0]; 4344[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4344 -> 4469[label="",style="dashed", color="magenta", weight=3]; 4344 -> 4470[label="",style="dashed", color="magenta", weight=3]; 4345 -> 2877[label="",style="dashed", color="red", weight=0]; 4345[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4345 -> 4471[label="",style="dashed", color="magenta", weight=3]; 4345 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4346 -> 2880[label="",style="dashed", color="red", weight=0]; 4346[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4346 -> 4473[label="",style="dashed", color="magenta", weight=3]; 4346 -> 4474[label="",style="dashed", color="magenta", weight=3]; 4347 -> 2881[label="",style="dashed", color="red", weight=0]; 4347[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4347 -> 4475[label="",style="dashed", color="magenta", weight=3]; 4347 -> 4476[label="",style="dashed", color="magenta", weight=3]; 4348 -> 127[label="",style="dashed", color="red", weight=0]; 4348[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4348 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4348 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4349 -> 2885[label="",style="dashed", color="red", weight=0]; 4349[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4349 -> 4479[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4480[label="",style="dashed", color="magenta", weight=3]; 4350 -> 2887[label="",style="dashed", color="red", weight=0]; 4350[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4350 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4350 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4351 -> 2878[label="",style="dashed", color="red", weight=0]; 4351[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4351 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4351 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4352 -> 2888[label="",style="dashed", color="red", weight=0]; 4352[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4352 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4352 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4353 -> 2886[label="",style="dashed", color="red", weight=0]; 4353[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4353 -> 4487[label="",style="dashed", color="magenta", weight=3]; 4353 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4354 -> 127[label="",style="dashed", color="red", weight=0]; 4354[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4354 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4354 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4355 -> 127[label="",style="dashed", color="red", weight=0]; 4355[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4355 -> 4491[label="",style="dashed", color="magenta", weight=3]; 4355 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4356 -> 127[label="",style="dashed", color="red", weight=0]; 4356[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4356 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4356 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4357 -> 127[label="",style="dashed", color="red", weight=0]; 4357[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4357 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4357 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4358 -> 127[label="",style="dashed", color="red", weight=0]; 4358[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4358 -> 4497[label="",style="dashed", color="magenta", weight=3]; 4358 -> 4498[label="",style="dashed", color="magenta", weight=3]; 4359 -> 127[label="",style="dashed", color="red", weight=0]; 4359[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4359 -> 4499[label="",style="dashed", color="magenta", weight=3]; 4359 -> 4500[label="",style="dashed", color="magenta", weight=3]; 4360 -> 127[label="",style="dashed", color="red", weight=0]; 4360[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4360 -> 4501[label="",style="dashed", color="magenta", weight=3]; 4360 -> 4502[label="",style="dashed", color="magenta", weight=3]; 4361 -> 127[label="",style="dashed", color="red", weight=0]; 4361[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4361 -> 4503[label="",style="dashed", color="magenta", weight=3]; 4361 -> 4504[label="",style="dashed", color="magenta", weight=3]; 4362 -> 127[label="",style="dashed", color="red", weight=0]; 4362[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4362 -> 4505[label="",style="dashed", color="magenta", weight=3]; 4362 -> 4506[label="",style="dashed", color="magenta", weight=3]; 4363[label="yvy80000",fontsize=16,color="green",shape="box"];4364[label="yvy79000",fontsize=16,color="green",shape="box"];4365 -> 127[label="",style="dashed", color="red", weight=0]; 4365[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4365 -> 4507[label="",style="dashed", color="magenta", weight=3]; 4365 -> 4508[label="",style="dashed", color="magenta", weight=3]; 4366 -> 127[label="",style="dashed", color="red", weight=0]; 4366[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4366 -> 4509[label="",style="dashed", color="magenta", weight=3]; 4366 -> 4510[label="",style="dashed", color="magenta", weight=3]; 4367 -> 127[label="",style="dashed", color="red", weight=0]; 4367[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4367 -> 4511[label="",style="dashed", color="magenta", weight=3]; 4367 -> 4512[label="",style="dashed", color="magenta", weight=3]; 4368 -> 127[label="",style="dashed", color="red", weight=0]; 4368[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4368 -> 4513[label="",style="dashed", color="magenta", weight=3]; 4368 -> 4514[label="",style="dashed", color="magenta", weight=3]; 4369[label="yvy255",fontsize=16,color="green",shape="box"];4370[label="True",fontsize=16,color="green",shape="box"];4371[label="yvy80000",fontsize=16,color="green",shape="box"];4372[label="yvy79000",fontsize=16,color="green",shape="box"];4373 -> 3771[label="",style="dashed", color="red", weight=0]; 4373[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4373 -> 4515[label="",style="dashed", color="magenta", weight=3]; 4373 -> 4516[label="",style="dashed", color="magenta", weight=3]; 4374 -> 3772[label="",style="dashed", color="red", weight=0]; 4374[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4374 -> 4517[label="",style="dashed", color="magenta", weight=3]; 4374 -> 4518[label="",style="dashed", color="magenta", weight=3]; 4375 -> 3773[label="",style="dashed", color="red", weight=0]; 4375[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4375 -> 4519[label="",style="dashed", color="magenta", weight=3]; 4375 -> 4520[label="",style="dashed", color="magenta", weight=3]; 4376 -> 3774[label="",style="dashed", color="red", weight=0]; 4376[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4376 -> 4521[label="",style="dashed", color="magenta", weight=3]; 4376 -> 4522[label="",style="dashed", color="magenta", weight=3]; 4377 -> 3775[label="",style="dashed", color="red", weight=0]; 4377[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4377 -> 4523[label="",style="dashed", color="magenta", weight=3]; 4377 -> 4524[label="",style="dashed", color="magenta", weight=3]; 4378 -> 3776[label="",style="dashed", color="red", weight=0]; 4378[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4378 -> 4525[label="",style="dashed", color="magenta", weight=3]; 4378 -> 4526[label="",style="dashed", color="magenta", weight=3]; 4379 -> 3777[label="",style="dashed", color="red", weight=0]; 4379[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4379 -> 4527[label="",style="dashed", color="magenta", weight=3]; 4379 -> 4528[label="",style="dashed", color="magenta", weight=3]; 4380 -> 3778[label="",style="dashed", color="red", weight=0]; 4380[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4380 -> 4529[label="",style="dashed", color="magenta", weight=3]; 4380 -> 4530[label="",style="dashed", color="magenta", weight=3]; 4381 -> 3779[label="",style="dashed", color="red", weight=0]; 4381[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4381 -> 4531[label="",style="dashed", color="magenta", weight=3]; 4381 -> 4532[label="",style="dashed", color="magenta", weight=3]; 4382 -> 3780[label="",style="dashed", color="red", weight=0]; 4382[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4382 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4382 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4383 -> 3781[label="",style="dashed", color="red", weight=0]; 4383[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4383 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4383 -> 4536[label="",style="dashed", color="magenta", weight=3]; 4384 -> 3782[label="",style="dashed", color="red", weight=0]; 4384[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4384 -> 4537[label="",style="dashed", color="magenta", weight=3]; 4384 -> 4538[label="",style="dashed", color="magenta", weight=3]; 4385 -> 3783[label="",style="dashed", color="red", weight=0]; 4385[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4385 -> 4539[label="",style="dashed", color="magenta", weight=3]; 4385 -> 4540[label="",style="dashed", color="magenta", weight=3]; 4386 -> 3784[label="",style="dashed", color="red", weight=0]; 4386[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4386 -> 4541[label="",style="dashed", color="magenta", weight=3]; 4386 -> 4542[label="",style="dashed", color="magenta", weight=3]; 4387 -> 2889[label="",style="dashed", color="red", weight=0]; 4387[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4387 -> 4543[label="",style="dashed", color="magenta", weight=3]; 4387 -> 4544[label="",style="dashed", color="magenta", weight=3]; 4388 -> 2890[label="",style="dashed", color="red", weight=0]; 4388[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4388 -> 4545[label="",style="dashed", color="magenta", weight=3]; 4388 -> 4546[label="",style="dashed", color="magenta", weight=3]; 4389 -> 2883[label="",style="dashed", color="red", weight=0]; 4389[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4389 -> 4547[label="",style="dashed", color="magenta", weight=3]; 4389 -> 4548[label="",style="dashed", color="magenta", weight=3]; 4390 -> 2884[label="",style="dashed", color="red", weight=0]; 4390[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4390 -> 4549[label="",style="dashed", color="magenta", weight=3]; 4390 -> 4550[label="",style="dashed", color="magenta", weight=3]; 4391 -> 2879[label="",style="dashed", color="red", weight=0]; 4391[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4391 -> 4551[label="",style="dashed", color="magenta", weight=3]; 4391 -> 4552[label="",style="dashed", color="magenta", weight=3]; 4392 -> 2877[label="",style="dashed", color="red", weight=0]; 4392[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4392 -> 4553[label="",style="dashed", color="magenta", weight=3]; 4392 -> 4554[label="",style="dashed", color="magenta", weight=3]; 4393 -> 2880[label="",style="dashed", color="red", weight=0]; 4393[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4393 -> 4555[label="",style="dashed", color="magenta", weight=3]; 4393 -> 4556[label="",style="dashed", color="magenta", weight=3]; 4394 -> 2881[label="",style="dashed", color="red", weight=0]; 4394[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4394 -> 4557[label="",style="dashed", color="magenta", weight=3]; 4394 -> 4558[label="",style="dashed", color="magenta", weight=3]; 4395 -> 127[label="",style="dashed", color="red", weight=0]; 4395[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4395 -> 4559[label="",style="dashed", color="magenta", weight=3]; 4395 -> 4560[label="",style="dashed", color="magenta", weight=3]; 4396 -> 2885[label="",style="dashed", color="red", weight=0]; 4396[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4396 -> 4561[label="",style="dashed", color="magenta", weight=3]; 4396 -> 4562[label="",style="dashed", color="magenta", weight=3]; 4397 -> 2887[label="",style="dashed", color="red", weight=0]; 4397[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4397 -> 4563[label="",style="dashed", color="magenta", weight=3]; 4397 -> 4564[label="",style="dashed", color="magenta", weight=3]; 4398 -> 2878[label="",style="dashed", color="red", weight=0]; 4398[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4398 -> 4565[label="",style="dashed", color="magenta", weight=3]; 4398 -> 4566[label="",style="dashed", color="magenta", weight=3]; 4399 -> 2888[label="",style="dashed", color="red", weight=0]; 4399[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4399 -> 4567[label="",style="dashed", color="magenta", weight=3]; 4399 -> 4568[label="",style="dashed", color="magenta", weight=3]; 4400 -> 2886[label="",style="dashed", color="red", weight=0]; 4400[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4400 -> 4569[label="",style="dashed", color="magenta", weight=3]; 4400 -> 4570[label="",style="dashed", color="magenta", weight=3]; 4401[label="yvy80000",fontsize=16,color="green",shape="box"];4402[label="yvy79000",fontsize=16,color="green",shape="box"];4403[label="yvy80000",fontsize=16,color="green",shape="box"];4404[label="yvy79000",fontsize=16,color="green",shape="box"];4405[label="yvy80000",fontsize=16,color="green",shape="box"];4406[label="yvy79000",fontsize=16,color="green",shape="box"];4407[label="yvy80000",fontsize=16,color="green",shape="box"];4408[label="yvy79000",fontsize=16,color="green",shape="box"];4409[label="yvy80000",fontsize=16,color="green",shape="box"];4410[label="yvy79000",fontsize=16,color="green",shape="box"];4411[label="yvy80000",fontsize=16,color="green",shape="box"];4412[label="yvy79000",fontsize=16,color="green",shape="box"];4413[label="yvy80000",fontsize=16,color="green",shape="box"];4414[label="yvy79000",fontsize=16,color="green",shape="box"];4415[label="yvy80000",fontsize=16,color="green",shape="box"];4416[label="yvy79000",fontsize=16,color="green",shape="box"];4417[label="yvy80000",fontsize=16,color="green",shape="box"];4418[label="yvy79000",fontsize=16,color="green",shape="box"];4419[label="yvy80000",fontsize=16,color="green",shape="box"];4420[label="yvy79000",fontsize=16,color="green",shape="box"];4421[label="yvy80000",fontsize=16,color="green",shape="box"];4422[label="yvy79000",fontsize=16,color="green",shape="box"];4423[label="yvy80000",fontsize=16,color="green",shape="box"];4424[label="yvy79000",fontsize=16,color="green",shape="box"];4425[label="yvy80000",fontsize=16,color="green",shape="box"];4426[label="yvy79000",fontsize=16,color="green",shape="box"];4427[label="yvy80000",fontsize=16,color="green",shape="box"];4428[label="yvy79000",fontsize=16,color="green",shape="box"];4429 -> 4021[label="",style="dashed", color="red", weight=0]; 4429[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="magenta"];4429 -> 4571[label="",style="dashed", color="magenta", weight=3]; 4429 -> 4572[label="",style="dashed", color="magenta", weight=3]; 4430 -> 2802[label="",style="dashed", color="red", weight=0]; 4430[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="magenta"];4430 -> 4573[label="",style="dashed", color="magenta", weight=3]; 4430 -> 4574[label="",style="dashed", color="magenta", weight=3]; 4431[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5834[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5834[label="",style="solid", color="burlywood", weight=9]; 5834 -> 4575[label="",style="solid", color="burlywood", weight=3]; 5835[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4431 -> 5835[label="",style="solid", color="burlywood", weight=9]; 5835 -> 4576[label="",style="solid", color="burlywood", weight=3]; 4432[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5836[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4432 -> 5836[label="",style="solid", color="burlywood", weight=9]; 5836 -> 4577[label="",style="solid", color="burlywood", weight=3]; 5837[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4432 -> 5837[label="",style="solid", color="burlywood", weight=9]; 5837 -> 4578[label="",style="solid", color="burlywood", weight=3]; 4434 -> 4026[label="",style="dashed", color="red", weight=0]; 4434[label="compare yvy79001 yvy80001",fontsize=16,color="magenta"];4434 -> 4579[label="",style="dashed", color="magenta", weight=3]; 4434 -> 4580[label="",style="dashed", color="magenta", weight=3]; 4433[label="primCompAux yvy79000 yvy80000 yvy256",fontsize=16,color="black",shape="triangle"];4433 -> 4581[label="",style="solid", color="black", weight=3]; 4435[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5838[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4435 -> 5838[label="",style="solid", color="burlywood", weight=9]; 5838 -> 4605[label="",style="solid", color="burlywood", weight=3]; 5839[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4435 -> 5839[label="",style="solid", color="burlywood", weight=9]; 5839 -> 4606[label="",style="solid", color="burlywood", weight=3]; 4436[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5840[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5840[label="",style="solid", color="burlywood", weight=9]; 5840 -> 4607[label="",style="solid", color="burlywood", weight=3]; 5841[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5841[label="",style="solid", color="burlywood", weight=9]; 5841 -> 4608[label="",style="solid", color="burlywood", weight=3]; 2790[label="yvy6200",fontsize=16,color="green",shape="box"];2791 -> 2789[label="",style="dashed", color="red", weight=0]; 2791[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2791 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2789[label="primPlusNat yvy202 (Succ yvy300000)",fontsize=16,color="burlywood",shape="triangle"];5842[label="yvy202/Succ yvy2020",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5842[label="",style="solid", color="burlywood", weight=9]; 5842 -> 2805[label="",style="solid", color="burlywood", weight=3]; 5843[label="yvy202/Zero",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5843[label="",style="solid", color="burlywood", weight=9]; 5843 -> 2806[label="",style="solid", color="burlywood", weight=3]; 2662 -> 2789[label="",style="dashed", color="red", weight=0]; 2662[label="primPlusNat (primMulNat yvy400100 (Succ yvy300000)) (Succ yvy300000)",fontsize=16,color="magenta"];2662 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2663[label="Zero",fontsize=16,color="green",shape="box"];2664[label="Zero",fontsize=16,color="green",shape="box"];2665[label="Zero",fontsize=16,color="green",shape="box"];2734[label="primCmpNat (Succ yvy7900) yvy800",fontsize=16,color="burlywood",shape="triangle"];5844[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2734 -> 5844[label="",style="solid", color="burlywood", weight=9]; 5844 -> 3288[label="",style="solid", color="burlywood", weight=3]; 5845[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2734 -> 5845[label="",style="solid", color="burlywood", weight=9]; 5845 -> 3289[label="",style="solid", color="burlywood", weight=3]; 2735[label="GT",fontsize=16,color="green",shape="box"];2736[label="primCmpInt (Pos Zero) (Pos (Succ yvy8000))",fontsize=16,color="black",shape="box"];2736 -> 3290[label="",style="solid", color="black", weight=3]; 2737[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2737 -> 3291[label="",style="solid", color="black", weight=3]; 2738[label="primCmpInt (Pos Zero) (Neg (Succ yvy8000))",fontsize=16,color="black",shape="box"];2738 -> 3292[label="",style="solid", color="black", weight=3]; 2739[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2739 -> 3293[label="",style="solid", color="black", weight=3]; 2740[label="LT",fontsize=16,color="green",shape="box"];2741[label="primCmpNat yvy800 (Succ yvy7900)",fontsize=16,color="burlywood",shape="triangle"];5846[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5846[label="",style="solid", color="burlywood", weight=9]; 5846 -> 3294[label="",style="solid", color="burlywood", weight=3]; 5847[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5847[label="",style="solid", color="burlywood", weight=9]; 5847 -> 3295[label="",style="solid", color="burlywood", weight=3]; 2742[label="primCmpInt (Neg Zero) (Pos (Succ yvy8000))",fontsize=16,color="black",shape="box"];2742 -> 3296[label="",style="solid", color="black", weight=3]; 2743[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2743 -> 3297[label="",style="solid", color="black", weight=3]; 2744[label="primCmpInt (Neg Zero) (Neg (Succ yvy8000))",fontsize=16,color="black",shape="box"];2744 -> 3298[label="",style="solid", color="black", weight=3]; 2745[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2745 -> 3299[label="",style="solid", color="black", weight=3]; 5019 -> 3975[label="",style="dashed", color="red", weight=0]; 5019[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy280 yvy281 yvy278",fontsize=16,color="magenta"];5019 -> 5024[label="",style="dashed", color="magenta", weight=3]; 5019 -> 5025[label="",style="dashed", color="magenta", weight=3]; 5020[label="FiniteMap.mkBranchRight_size yvy280 yvy281 yvy278",fontsize=16,color="black",shape="box"];5020 -> 5026[label="",style="solid", color="black", weight=3]; 5021[label="yvy285",fontsize=16,color="green",shape="box"];4437 -> 3287[label="",style="dashed", color="red", weight=0]; 4437[label="primPlusNat yvy2420 yvy2410",fontsize=16,color="magenta"];4437 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4437 -> 4610[label="",style="dashed", color="magenta", weight=3]; 4438[label="primMinusNat (Succ yvy24200) yvy2410",fontsize=16,color="burlywood",shape="box"];5848[label="yvy2410/Succ yvy24100",fontsize=10,color="white",style="solid",shape="box"];4438 -> 5848[label="",style="solid", color="burlywood", weight=9]; 5848 -> 4611[label="",style="solid", color="burlywood", weight=3]; 5849[label="yvy2410/Zero",fontsize=10,color="white",style="solid",shape="box"];4438 -> 5849[label="",style="solid", color="burlywood", weight=9]; 5849 -> 4612[label="",style="solid", color="burlywood", weight=3]; 4439[label="primMinusNat Zero yvy2410",fontsize=16,color="burlywood",shape="box"];5850[label="yvy2410/Succ yvy24100",fontsize=10,color="white",style="solid",shape="box"];4439 -> 5850[label="",style="solid", color="burlywood", weight=9]; 5850 -> 4613[label="",style="solid", color="burlywood", weight=3]; 5851[label="yvy2410/Zero",fontsize=10,color="white",style="solid",shape="box"];4439 -> 5851[label="",style="solid", color="burlywood", weight=9]; 5851 -> 4614[label="",style="solid", color="burlywood", weight=3]; 4440[label="yvy2420",fontsize=16,color="green",shape="box"];4441[label="yvy2410",fontsize=16,color="green",shape="box"];4442 -> 3287[label="",style="dashed", color="red", weight=0]; 4442[label="primPlusNat yvy2420 yvy2410",fontsize=16,color="magenta"];4442 -> 4615[label="",style="dashed", color="magenta", weight=3]; 4442 -> 4616[label="",style="dashed", color="magenta", weight=3]; 2776 -> 1321[label="",style="dashed", color="red", weight=0]; 2776[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2776 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2781[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];2781 -> 2807[label="",style="solid", color="black", weight=3]; 2782[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];2782 -> 2808[label="",style="solid", color="black", weight=3]; 2753[label="error []",fontsize=16,color="red",shape="box"];2754[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2754 -> 2786[label="",style="solid", color="black", weight=3]; 2792[label="yvy6200",fontsize=16,color="green",shape="box"];2793 -> 2789[label="",style="dashed", color="red", weight=0]; 2793[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2793 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2810[label="",style="dashed", color="magenta", weight=3]; 4443[label="yvy79000",fontsize=16,color="green",shape="box"];4444[label="yvy80000",fontsize=16,color="green",shape="box"];3821[label="primCmpNat yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5852[label="yvy7900/Succ yvy79000",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5852[label="",style="solid", color="burlywood", weight=9]; 5852 -> 4085[label="",style="solid", color="burlywood", weight=3]; 5853[label="yvy7900/Zero",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5853[label="",style="solid", color="burlywood", weight=9]; 5853 -> 4086[label="",style="solid", color="burlywood", weight=3]; 4445[label="yvy79002 <= yvy80002",fontsize=16,color="blue",shape="box"];5854[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5854[label="",style="solid", color="blue", weight=9]; 5854 -> 4617[label="",style="solid", color="blue", weight=3]; 5855[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5855[label="",style="solid", color="blue", weight=9]; 5855 -> 4618[label="",style="solid", color="blue", weight=3]; 5856[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5856[label="",style="solid", color="blue", weight=9]; 5856 -> 4619[label="",style="solid", color="blue", weight=3]; 5857[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5857[label="",style="solid", color="blue", weight=9]; 5857 -> 4620[label="",style="solid", color="blue", weight=3]; 5858[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5858[label="",style="solid", color="blue", weight=9]; 5858 -> 4621[label="",style="solid", color="blue", weight=3]; 5859[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5859[label="",style="solid", color="blue", weight=9]; 5859 -> 4622[label="",style="solid", color="blue", weight=3]; 5860[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5860[label="",style="solid", color="blue", weight=9]; 5860 -> 4623[label="",style="solid", color="blue", weight=3]; 5861[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5861[label="",style="solid", color="blue", weight=9]; 5861 -> 4624[label="",style="solid", color="blue", weight=3]; 5862[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5862[label="",style="solid", color="blue", weight=9]; 5862 -> 4625[label="",style="solid", color="blue", weight=3]; 5863[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5863[label="",style="solid", color="blue", weight=9]; 5863 -> 4626[label="",style="solid", color="blue", weight=3]; 5864[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5864[label="",style="solid", color="blue", weight=9]; 5864 -> 4627[label="",style="solid", color="blue", weight=3]; 5865[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5865[label="",style="solid", color="blue", weight=9]; 5865 -> 4628[label="",style="solid", color="blue", weight=3]; 5866[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5866[label="",style="solid", color="blue", weight=9]; 5866 -> 4629[label="",style="solid", color="blue", weight=3]; 5867[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5867[label="",style="solid", color="blue", weight=9]; 5867 -> 4630[label="",style="solid", color="blue", weight=3]; 4446[label="yvy79001 == yvy80001",fontsize=16,color="blue",shape="box"];5868[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5868[label="",style="solid", color="blue", weight=9]; 5868 -> 4631[label="",style="solid", color="blue", weight=3]; 5869[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5869[label="",style="solid", color="blue", weight=9]; 5869 -> 4632[label="",style="solid", color="blue", weight=3]; 5870[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5870[label="",style="solid", color="blue", weight=9]; 5870 -> 4633[label="",style="solid", color="blue", weight=3]; 5871[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5871[label="",style="solid", color="blue", weight=9]; 5871 -> 4634[label="",style="solid", color="blue", weight=3]; 5872[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5872[label="",style="solid", color="blue", weight=9]; 5872 -> 4635[label="",style="solid", color="blue", weight=3]; 5873[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5873[label="",style="solid", color="blue", weight=9]; 5873 -> 4636[label="",style="solid", color="blue", weight=3]; 5874[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5874[label="",style="solid", color="blue", weight=9]; 5874 -> 4637[label="",style="solid", color="blue", weight=3]; 5875[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5875[label="",style="solid", color="blue", weight=9]; 5875 -> 4638[label="",style="solid", color="blue", weight=3]; 5876[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5876[label="",style="solid", color="blue", weight=9]; 5876 -> 4639[label="",style="solid", color="blue", weight=3]; 5877[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5877[label="",style="solid", color="blue", weight=9]; 5877 -> 4640[label="",style="solid", color="blue", weight=3]; 5878[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5878[label="",style="solid", color="blue", weight=9]; 5878 -> 4641[label="",style="solid", color="blue", weight=3]; 5879[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5879[label="",style="solid", color="blue", weight=9]; 5879 -> 4642[label="",style="solid", color="blue", weight=3]; 5880[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5880[label="",style="solid", color="blue", weight=9]; 5880 -> 4643[label="",style="solid", color="blue", weight=3]; 5881[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4446 -> 5881[label="",style="solid", color="blue", weight=9]; 5881 -> 4644[label="",style="solid", color="blue", weight=3]; 4447 -> 4236[label="",style="dashed", color="red", weight=0]; 4447[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4447 -> 4645[label="",style="dashed", color="magenta", weight=3]; 4447 -> 4646[label="",style="dashed", color="magenta", weight=3]; 4448 -> 4237[label="",style="dashed", color="red", weight=0]; 4448[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4448 -> 4647[label="",style="dashed", color="magenta", weight=3]; 4448 -> 4648[label="",style="dashed", color="magenta", weight=3]; 4449 -> 4238[label="",style="dashed", color="red", weight=0]; 4449[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4449 -> 4649[label="",style="dashed", color="magenta", weight=3]; 4449 -> 4650[label="",style="dashed", color="magenta", weight=3]; 4450 -> 4239[label="",style="dashed", color="red", weight=0]; 4450[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4450 -> 4651[label="",style="dashed", color="magenta", weight=3]; 4450 -> 4652[label="",style="dashed", color="magenta", weight=3]; 4451 -> 4240[label="",style="dashed", color="red", weight=0]; 4451[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4451 -> 4653[label="",style="dashed", color="magenta", weight=3]; 4451 -> 4654[label="",style="dashed", color="magenta", weight=3]; 4452 -> 4241[label="",style="dashed", color="red", weight=0]; 4452[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4452 -> 4655[label="",style="dashed", color="magenta", weight=3]; 4452 -> 4656[label="",style="dashed", color="magenta", weight=3]; 4453 -> 4242[label="",style="dashed", color="red", weight=0]; 4453[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4453 -> 4657[label="",style="dashed", color="magenta", weight=3]; 4453 -> 4658[label="",style="dashed", color="magenta", weight=3]; 4454 -> 4243[label="",style="dashed", color="red", weight=0]; 4454[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4454 -> 4659[label="",style="dashed", color="magenta", weight=3]; 4454 -> 4660[label="",style="dashed", color="magenta", weight=3]; 4455 -> 4244[label="",style="dashed", color="red", weight=0]; 4455[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4455 -> 4661[label="",style="dashed", color="magenta", weight=3]; 4455 -> 4662[label="",style="dashed", color="magenta", weight=3]; 4456 -> 3959[label="",style="dashed", color="red", weight=0]; 4456[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4456 -> 4663[label="",style="dashed", color="magenta", weight=3]; 4456 -> 4664[label="",style="dashed", color="magenta", weight=3]; 4457 -> 4246[label="",style="dashed", color="red", weight=0]; 4457[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4457 -> 4665[label="",style="dashed", color="magenta", weight=3]; 4457 -> 4666[label="",style="dashed", color="magenta", weight=3]; 4458 -> 4247[label="",style="dashed", color="red", weight=0]; 4458[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4458 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4458 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4459 -> 4248[label="",style="dashed", color="red", weight=0]; 4459[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4459 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4459 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4460 -> 4249[label="",style="dashed", color="red", weight=0]; 4460[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4460 -> 4671[label="",style="dashed", color="magenta", weight=3]; 4460 -> 4672[label="",style="dashed", color="magenta", weight=3]; 4461[label="yvy80000",fontsize=16,color="green",shape="box"];4462[label="yvy79000",fontsize=16,color="green",shape="box"];4463[label="yvy80000",fontsize=16,color="green",shape="box"];4464[label="yvy79000",fontsize=16,color="green",shape="box"];4465[label="yvy80000",fontsize=16,color="green",shape="box"];4466[label="yvy79000",fontsize=16,color="green",shape="box"];4467[label="yvy80000",fontsize=16,color="green",shape="box"];4468[label="yvy79000",fontsize=16,color="green",shape="box"];4469[label="yvy80000",fontsize=16,color="green",shape="box"];4470[label="yvy79000",fontsize=16,color="green",shape="box"];4471[label="yvy80000",fontsize=16,color="green",shape="box"];4472[label="yvy79000",fontsize=16,color="green",shape="box"];4473[label="yvy80000",fontsize=16,color="green",shape="box"];4474[label="yvy79000",fontsize=16,color="green",shape="box"];4475[label="yvy80000",fontsize=16,color="green",shape="box"];4476[label="yvy79000",fontsize=16,color="green",shape="box"];4477[label="yvy80000",fontsize=16,color="green",shape="box"];4478[label="yvy79000",fontsize=16,color="green",shape="box"];4479[label="yvy80000",fontsize=16,color="green",shape="box"];4480[label="yvy79000",fontsize=16,color="green",shape="box"];4481[label="yvy80000",fontsize=16,color="green",shape="box"];4482[label="yvy79000",fontsize=16,color="green",shape="box"];4483[label="yvy80000",fontsize=16,color="green",shape="box"];4484[label="yvy79000",fontsize=16,color="green",shape="box"];4485[label="yvy80000",fontsize=16,color="green",shape="box"];4486[label="yvy79000",fontsize=16,color="green",shape="box"];4487[label="yvy80000",fontsize=16,color="green",shape="box"];4488[label="yvy79000",fontsize=16,color="green",shape="box"];4489[label="LT",fontsize=16,color="green",shape="box"];4490[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4490 -> 4673[label="",style="solid", color="black", weight=3]; 4491[label="LT",fontsize=16,color="green",shape="box"];4492 -> 4020[label="",style="dashed", color="red", weight=0]; 4492[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4492 -> 4674[label="",style="dashed", color="magenta", weight=3]; 4492 -> 4675[label="",style="dashed", color="magenta", weight=3]; 4493[label="LT",fontsize=16,color="green",shape="box"];4494[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4494 -> 4676[label="",style="solid", color="black", weight=3]; 4495[label="LT",fontsize=16,color="green",shape="box"];4496 -> 4021[label="",style="dashed", color="red", weight=0]; 4496[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4496 -> 4677[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4497[label="LT",fontsize=16,color="green",shape="box"];4498[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4498 -> 4679[label="",style="solid", color="black", weight=3]; 4499[label="LT",fontsize=16,color="green",shape="box"];4500 -> 4022[label="",style="dashed", color="red", weight=0]; 4500[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4500 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4500 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4501[label="LT",fontsize=16,color="green",shape="box"];4502 -> 4023[label="",style="dashed", color="red", weight=0]; 4502[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4502 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4502 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4503[label="LT",fontsize=16,color="green",shape="box"];4504[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4504 -> 4684[label="",style="solid", color="black", weight=3]; 4505[label="LT",fontsize=16,color="green",shape="box"];4506[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4506 -> 4685[label="",style="solid", color="black", weight=3]; 4507[label="LT",fontsize=16,color="green",shape="box"];4508 -> 4025[label="",style="dashed", color="red", weight=0]; 4508[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4508 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4509[label="LT",fontsize=16,color="green",shape="box"];4510[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4510 -> 4688[label="",style="solid", color="black", weight=3]; 4511[label="LT",fontsize=16,color="green",shape="box"];4512 -> 4026[label="",style="dashed", color="red", weight=0]; 4512[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4512 -> 4689[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4690[label="",style="dashed", color="magenta", weight=3]; 4513[label="LT",fontsize=16,color="green",shape="box"];4514 -> 4027[label="",style="dashed", color="red", weight=0]; 4514[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4514 -> 4691[label="",style="dashed", color="magenta", weight=3]; 4514 -> 4692[label="",style="dashed", color="magenta", weight=3]; 4515[label="yvy79001",fontsize=16,color="green",shape="box"];4516[label="yvy80001",fontsize=16,color="green",shape="box"];4517[label="yvy79001",fontsize=16,color="green",shape="box"];4518[label="yvy80001",fontsize=16,color="green",shape="box"];4519[label="yvy79001",fontsize=16,color="green",shape="box"];4520[label="yvy80001",fontsize=16,color="green",shape="box"];4521[label="yvy79001",fontsize=16,color="green",shape="box"];4522[label="yvy80001",fontsize=16,color="green",shape="box"];4523[label="yvy79001",fontsize=16,color="green",shape="box"];4524[label="yvy80001",fontsize=16,color="green",shape="box"];4525[label="yvy79001",fontsize=16,color="green",shape="box"];4526[label="yvy80001",fontsize=16,color="green",shape="box"];4527[label="yvy79001",fontsize=16,color="green",shape="box"];4528[label="yvy80001",fontsize=16,color="green",shape="box"];4529[label="yvy79001",fontsize=16,color="green",shape="box"];4530[label="yvy80001",fontsize=16,color="green",shape="box"];4531[label="yvy79001",fontsize=16,color="green",shape="box"];4532[label="yvy80001",fontsize=16,color="green",shape="box"];4533[label="yvy79001",fontsize=16,color="green",shape="box"];4534[label="yvy80001",fontsize=16,color="green",shape="box"];4535[label="yvy79001",fontsize=16,color="green",shape="box"];4536[label="yvy80001",fontsize=16,color="green",shape="box"];4537[label="yvy79001",fontsize=16,color="green",shape="box"];4538[label="yvy80001",fontsize=16,color="green",shape="box"];4539[label="yvy79001",fontsize=16,color="green",shape="box"];4540[label="yvy80001",fontsize=16,color="green",shape="box"];4541[label="yvy79001",fontsize=16,color="green",shape="box"];4542[label="yvy80001",fontsize=16,color="green",shape="box"];4543[label="yvy80000",fontsize=16,color="green",shape="box"];4544[label="yvy79000",fontsize=16,color="green",shape="box"];4545[label="yvy80000",fontsize=16,color="green",shape="box"];4546[label="yvy79000",fontsize=16,color="green",shape="box"];4547[label="yvy80000",fontsize=16,color="green",shape="box"];4548[label="yvy79000",fontsize=16,color="green",shape="box"];4549[label="yvy80000",fontsize=16,color="green",shape="box"];4550[label="yvy79000",fontsize=16,color="green",shape="box"];4551[label="yvy80000",fontsize=16,color="green",shape="box"];4552[label="yvy79000",fontsize=16,color="green",shape="box"];4553[label="yvy80000",fontsize=16,color="green",shape="box"];4554[label="yvy79000",fontsize=16,color="green",shape="box"];4555[label="yvy80000",fontsize=16,color="green",shape="box"];4556[label="yvy79000",fontsize=16,color="green",shape="box"];4557[label="yvy80000",fontsize=16,color="green",shape="box"];4558[label="yvy79000",fontsize=16,color="green",shape="box"];4559[label="yvy80000",fontsize=16,color="green",shape="box"];4560[label="yvy79000",fontsize=16,color="green",shape="box"];4561[label="yvy80000",fontsize=16,color="green",shape="box"];4562[label="yvy79000",fontsize=16,color="green",shape="box"];4563[label="yvy80000",fontsize=16,color="green",shape="box"];4564[label="yvy79000",fontsize=16,color="green",shape="box"];4565[label="yvy80000",fontsize=16,color="green",shape="box"];4566[label="yvy79000",fontsize=16,color="green",shape="box"];4567[label="yvy80000",fontsize=16,color="green",shape="box"];4568[label="yvy79000",fontsize=16,color="green",shape="box"];4569[label="yvy80000",fontsize=16,color="green",shape="box"];4570[label="yvy79000",fontsize=16,color="green",shape="box"];4571[label="yvy79000 * yvy80001",fontsize=16,color="burlywood",shape="triangle"];5882[label="yvy79000/Integer yvy790000",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5882[label="",style="solid", color="burlywood", weight=9]; 5882 -> 4693[label="",style="solid", color="burlywood", weight=3]; 4572 -> 4571[label="",style="dashed", color="red", weight=0]; 4572[label="yvy80000 * yvy79001",fontsize=16,color="magenta"];4572 -> 4694[label="",style="dashed", color="magenta", weight=3]; 4572 -> 4695[label="",style="dashed", color="magenta", weight=3]; 4573 -> 1321[label="",style="dashed", color="red", weight=0]; 4573[label="yvy79000 * yvy80001",fontsize=16,color="magenta"];4573 -> 4696[label="",style="dashed", color="magenta", weight=3]; 4573 -> 4697[label="",style="dashed", color="magenta", weight=3]; 4574 -> 1321[label="",style="dashed", color="red", weight=0]; 4574[label="yvy80000 * yvy79001",fontsize=16,color="magenta"];4574 -> 4698[label="",style="dashed", color="magenta", weight=3]; 4574 -> 4699[label="",style="dashed", color="magenta", weight=3]; 4575[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4575 -> 4700[label="",style="solid", color="black", weight=3]; 4576[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4576 -> 4701[label="",style="solid", color="black", weight=3]; 4577[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4577 -> 4702[label="",style="solid", color="black", weight=3]; 4578[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4578 -> 4703[label="",style="solid", color="black", weight=3]; 4579[label="yvy79001",fontsize=16,color="green",shape="box"];4580[label="yvy80001",fontsize=16,color="green",shape="box"];4581 -> 4704[label="",style="dashed", color="red", weight=0]; 4581[label="primCompAux0 yvy256 (compare yvy79000 yvy80000)",fontsize=16,color="magenta"];4581 -> 4705[label="",style="dashed", color="magenta", weight=3]; 4581 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4605[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4605 -> 4707[label="",style="solid", color="black", weight=3]; 4606[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4606 -> 4708[label="",style="solid", color="black", weight=3]; 4607[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4607 -> 4709[label="",style="solid", color="black", weight=3]; 4608[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4608 -> 4710[label="",style="solid", color="black", weight=3]; 2803[label="yvy6200",fontsize=16,color="green",shape="box"];2804 -> 2789[label="",style="dashed", color="red", weight=0]; 2804[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2804 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2805[label="primPlusNat (Succ yvy2020) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2805 -> 2973[label="",style="solid", color="black", weight=3]; 2806[label="primPlusNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2806 -> 2974[label="",style="solid", color="black", weight=3]; 2796 -> 2198[label="",style="dashed", color="red", weight=0]; 2796[label="primMulNat yvy400100 (Succ yvy300000)",fontsize=16,color="magenta"];2796 -> 3310[label="",style="dashed", color="magenta", weight=3]; 2796 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3288[label="primCmpNat (Succ yvy7900) (Succ yvy8000)",fontsize=16,color="black",shape="box"];3288 -> 3821[label="",style="solid", color="black", weight=3]; 3289[label="primCmpNat (Succ yvy7900) Zero",fontsize=16,color="black",shape="box"];3289 -> 3822[label="",style="solid", color="black", weight=3]; 3290 -> 2741[label="",style="dashed", color="red", weight=0]; 3290[label="primCmpNat Zero (Succ yvy8000)",fontsize=16,color="magenta"];3290 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3291[label="EQ",fontsize=16,color="green",shape="box"];3292[label="GT",fontsize=16,color="green",shape="box"];3293[label="EQ",fontsize=16,color="green",shape="box"];3294[label="primCmpNat (Succ yvy8000) (Succ yvy7900)",fontsize=16,color="black",shape="box"];3294 -> 3825[label="",style="solid", color="black", weight=3]; 3295[label="primCmpNat Zero (Succ yvy7900)",fontsize=16,color="black",shape="box"];3295 -> 3826[label="",style="solid", color="black", weight=3]; 3296[label="LT",fontsize=16,color="green",shape="box"];3297[label="EQ",fontsize=16,color="green",shape="box"];3298 -> 2734[label="",style="dashed", color="red", weight=0]; 3298[label="primCmpNat (Succ yvy8000) Zero",fontsize=16,color="magenta"];3298 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3299[label="EQ",fontsize=16,color="green",shape="box"];5024[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];5025[label="FiniteMap.mkBranchLeft_size yvy280 yvy281 yvy278",fontsize=16,color="black",shape="box"];5025 -> 5029[label="",style="solid", color="black", weight=3]; 5026[label="FiniteMap.sizeFM yvy281",fontsize=16,color="burlywood",shape="triangle"];5883[label="yvy281/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5026 -> 5883[label="",style="solid", color="burlywood", weight=9]; 5883 -> 5030[label="",style="solid", color="burlywood", weight=3]; 5884[label="yvy281/FiniteMap.Branch yvy2810 yvy2811 yvy2812 yvy2813 yvy2814",fontsize=10,color="white",style="solid",shape="box"];5026 -> 5884[label="",style="solid", color="burlywood", weight=9]; 5884 -> 5031[label="",style="solid", color="burlywood", weight=3]; 4609[label="yvy2420",fontsize=16,color="green",shape="box"];4610[label="yvy2410",fontsize=16,color="green",shape="box"];3287[label="primPlusNat yvy2020 yvy300000",fontsize=16,color="burlywood",shape="triangle"];5885[label="yvy2020/Succ yvy20200",fontsize=10,color="white",style="solid",shape="box"];3287 -> 5885[label="",style="solid", color="burlywood", weight=9]; 5885 -> 3819[label="",style="solid", color="burlywood", weight=3]; 5886[label="yvy2020/Zero",fontsize=10,color="white",style="solid",shape="box"];3287 -> 5886[label="",style="solid", color="burlywood", weight=9]; 5886 -> 3820[label="",style="solid", color="burlywood", weight=3]; 4611[label="primMinusNat (Succ yvy24200) (Succ yvy24100)",fontsize=16,color="black",shape="box"];4611 -> 4711[label="",style="solid", color="black", weight=3]; 4612[label="primMinusNat (Succ yvy24200) Zero",fontsize=16,color="black",shape="box"];4612 -> 4712[label="",style="solid", color="black", weight=3]; 4613[label="primMinusNat Zero (Succ yvy24100)",fontsize=16,color="black",shape="box"];4613 -> 4713[label="",style="solid", color="black", weight=3]; 4614[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4614 -> 4714[label="",style="solid", color="black", weight=3]; 4615[label="yvy2420",fontsize=16,color="green",shape="box"];4616[label="yvy2410",fontsize=16,color="green",shape="box"];2784 -> 2771[label="",style="dashed", color="red", weight=0]; 2784[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2785 -> 1921[label="",style="dashed", color="red", weight=0]; 2785[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2807[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 otherwise",fontsize=16,color="black",shape="box"];2807 -> 3237[label="",style="solid", color="black", weight=3]; 2808[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy107 yvy50 yvy51 yvy54 yvy107 yvy54 yvy107",fontsize=16,color="burlywood",shape="box"];5887[label="yvy107/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2808 -> 5887[label="",style="solid", color="burlywood", weight=9]; 5887 -> 3238[label="",style="solid", color="burlywood", weight=3]; 5888[label="yvy107/FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074",fontsize=10,color="white",style="solid",shape="box"];2808 -> 5888[label="",style="solid", color="burlywood", weight=9]; 5888 -> 3239[label="",style="solid", color="burlywood", weight=3]; 2786 -> 3833[label="",style="dashed", color="red", weight=0]; 2786[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (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"];2786 -> 3834[label="",style="dashed", color="magenta", weight=3]; 2809[label="yvy6200",fontsize=16,color="green",shape="box"];2810 -> 2789[label="",style="dashed", color="red", weight=0]; 2810[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2810 -> 3281[label="",style="dashed", color="magenta", weight=3]; 2810 -> 3282[label="",style="dashed", color="magenta", weight=3]; 4085[label="primCmpNat (Succ yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5889[label="yvy8000/Succ yvy80000",fontsize=10,color="white",style="solid",shape="box"];4085 -> 5889[label="",style="solid", color="burlywood", weight=9]; 5889 -> 4323[label="",style="solid", color="burlywood", weight=3]; 5890[label="yvy8000/Zero",fontsize=10,color="white",style="solid",shape="box"];4085 -> 5890[label="",style="solid", color="burlywood", weight=9]; 5890 -> 4324[label="",style="solid", color="burlywood", weight=3]; 4086[label="primCmpNat Zero yvy8000",fontsize=16,color="burlywood",shape="box"];5891[label="yvy8000/Succ yvy80000",fontsize=10,color="white",style="solid",shape="box"];4086 -> 5891[label="",style="solid", color="burlywood", weight=9]; 5891 -> 4325[label="",style="solid", color="burlywood", weight=3]; 5892[label="yvy8000/Zero",fontsize=10,color="white",style="solid",shape="box"];4086 -> 5892[label="",style="solid", color="burlywood", weight=9]; 5892 -> 4326[label="",style="solid", color="burlywood", weight=3]; 4617 -> 3771[label="",style="dashed", color="red", weight=0]; 4617[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4617 -> 4715[label="",style="dashed", color="magenta", weight=3]; 4617 -> 4716[label="",style="dashed", color="magenta", weight=3]; 4618 -> 3772[label="",style="dashed", color="red", weight=0]; 4618[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4618 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4618 -> 4718[label="",style="dashed", color="magenta", weight=3]; 4619 -> 3773[label="",style="dashed", color="red", weight=0]; 4619[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4619 -> 4719[label="",style="dashed", color="magenta", weight=3]; 4619 -> 4720[label="",style="dashed", color="magenta", weight=3]; 4620 -> 3774[label="",style="dashed", color="red", weight=0]; 4620[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4620 -> 4721[label="",style="dashed", color="magenta", weight=3]; 4620 -> 4722[label="",style="dashed", color="magenta", weight=3]; 4621 -> 3775[label="",style="dashed", color="red", weight=0]; 4621[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4621 -> 4723[label="",style="dashed", color="magenta", weight=3]; 4621 -> 4724[label="",style="dashed", color="magenta", weight=3]; 4622 -> 3776[label="",style="dashed", color="red", weight=0]; 4622[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4622 -> 4725[label="",style="dashed", color="magenta", weight=3]; 4622 -> 4726[label="",style="dashed", color="magenta", weight=3]; 4623 -> 3777[label="",style="dashed", color="red", weight=0]; 4623[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4623 -> 4727[label="",style="dashed", color="magenta", weight=3]; 4623 -> 4728[label="",style="dashed", color="magenta", weight=3]; 4624 -> 3778[label="",style="dashed", color="red", weight=0]; 4624[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4624 -> 4729[label="",style="dashed", color="magenta", weight=3]; 4624 -> 4730[label="",style="dashed", color="magenta", weight=3]; 4625 -> 3779[label="",style="dashed", color="red", weight=0]; 4625[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4625 -> 4731[label="",style="dashed", color="magenta", weight=3]; 4625 -> 4732[label="",style="dashed", color="magenta", weight=3]; 4626 -> 3780[label="",style="dashed", color="red", weight=0]; 4626[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4626 -> 4733[label="",style="dashed", color="magenta", weight=3]; 4626 -> 4734[label="",style="dashed", color="magenta", weight=3]; 4627 -> 3781[label="",style="dashed", color="red", weight=0]; 4627[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4627 -> 4735[label="",style="dashed", color="magenta", weight=3]; 4627 -> 4736[label="",style="dashed", color="magenta", weight=3]; 4628 -> 3782[label="",style="dashed", color="red", weight=0]; 4628[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4628 -> 4737[label="",style="dashed", color="magenta", weight=3]; 4628 -> 4738[label="",style="dashed", color="magenta", weight=3]; 4629 -> 3783[label="",style="dashed", color="red", weight=0]; 4629[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4629 -> 4739[label="",style="dashed", color="magenta", weight=3]; 4629 -> 4740[label="",style="dashed", color="magenta", weight=3]; 4630 -> 3784[label="",style="dashed", color="red", weight=0]; 4630[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4630 -> 4741[label="",style="dashed", color="magenta", weight=3]; 4630 -> 4742[label="",style="dashed", color="magenta", weight=3]; 4631 -> 2889[label="",style="dashed", color="red", weight=0]; 4631[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4631 -> 4743[label="",style="dashed", color="magenta", weight=3]; 4631 -> 4744[label="",style="dashed", color="magenta", weight=3]; 4632 -> 2890[label="",style="dashed", color="red", weight=0]; 4632[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4632 -> 4745[label="",style="dashed", color="magenta", weight=3]; 4632 -> 4746[label="",style="dashed", color="magenta", weight=3]; 4633 -> 2883[label="",style="dashed", color="red", weight=0]; 4633[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4633 -> 4747[label="",style="dashed", color="magenta", weight=3]; 4633 -> 4748[label="",style="dashed", color="magenta", weight=3]; 4634 -> 2884[label="",style="dashed", color="red", weight=0]; 4634[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4634 -> 4749[label="",style="dashed", color="magenta", weight=3]; 4634 -> 4750[label="",style="dashed", color="magenta", weight=3]; 4635 -> 2879[label="",style="dashed", color="red", weight=0]; 4635[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4635 -> 4751[label="",style="dashed", color="magenta", weight=3]; 4635 -> 4752[label="",style="dashed", color="magenta", weight=3]; 4636 -> 2877[label="",style="dashed", color="red", weight=0]; 4636[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4636 -> 4753[label="",style="dashed", color="magenta", weight=3]; 4636 -> 4754[label="",style="dashed", color="magenta", weight=3]; 4637 -> 2880[label="",style="dashed", color="red", weight=0]; 4637[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4637 -> 4755[label="",style="dashed", color="magenta", weight=3]; 4637 -> 4756[label="",style="dashed", color="magenta", weight=3]; 4638 -> 2881[label="",style="dashed", color="red", weight=0]; 4638[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4638 -> 4757[label="",style="dashed", color="magenta", weight=3]; 4638 -> 4758[label="",style="dashed", color="magenta", weight=3]; 4639 -> 127[label="",style="dashed", color="red", weight=0]; 4639[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4639 -> 4759[label="",style="dashed", color="magenta", weight=3]; 4639 -> 4760[label="",style="dashed", color="magenta", weight=3]; 4640 -> 2885[label="",style="dashed", color="red", weight=0]; 4640[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4640 -> 4761[label="",style="dashed", color="magenta", weight=3]; 4640 -> 4762[label="",style="dashed", color="magenta", weight=3]; 4641 -> 2887[label="",style="dashed", color="red", weight=0]; 4641[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4641 -> 4763[label="",style="dashed", color="magenta", weight=3]; 4641 -> 4764[label="",style="dashed", color="magenta", weight=3]; 4642 -> 2878[label="",style="dashed", color="red", weight=0]; 4642[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4642 -> 4765[label="",style="dashed", color="magenta", weight=3]; 4642 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4643 -> 2888[label="",style="dashed", color="red", weight=0]; 4643[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4643 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4643 -> 4768[label="",style="dashed", color="magenta", weight=3]; 4644 -> 2886[label="",style="dashed", color="red", weight=0]; 4644[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4644 -> 4769[label="",style="dashed", color="magenta", weight=3]; 4644 -> 4770[label="",style="dashed", color="magenta", weight=3]; 4645[label="yvy80001",fontsize=16,color="green",shape="box"];4646[label="yvy79001",fontsize=16,color="green",shape="box"];4647[label="yvy80001",fontsize=16,color="green",shape="box"];4648[label="yvy79001",fontsize=16,color="green",shape="box"];4649[label="yvy80001",fontsize=16,color="green",shape="box"];4650[label="yvy79001",fontsize=16,color="green",shape="box"];4651[label="yvy80001",fontsize=16,color="green",shape="box"];4652[label="yvy79001",fontsize=16,color="green",shape="box"];4653[label="yvy80001",fontsize=16,color="green",shape="box"];4654[label="yvy79001",fontsize=16,color="green",shape="box"];4655[label="yvy80001",fontsize=16,color="green",shape="box"];4656[label="yvy79001",fontsize=16,color="green",shape="box"];4657[label="yvy80001",fontsize=16,color="green",shape="box"];4658[label="yvy79001",fontsize=16,color="green",shape="box"];4659[label="yvy80001",fontsize=16,color="green",shape="box"];4660[label="yvy79001",fontsize=16,color="green",shape="box"];4661[label="yvy80001",fontsize=16,color="green",shape="box"];4662[label="yvy79001",fontsize=16,color="green",shape="box"];4663[label="yvy80001",fontsize=16,color="green",shape="box"];4664[label="yvy79001",fontsize=16,color="green",shape="box"];4665[label="yvy80001",fontsize=16,color="green",shape="box"];4666[label="yvy79001",fontsize=16,color="green",shape="box"];4667[label="yvy80001",fontsize=16,color="green",shape="box"];4668[label="yvy79001",fontsize=16,color="green",shape="box"];4669[label="yvy80001",fontsize=16,color="green",shape="box"];4670[label="yvy79001",fontsize=16,color="green",shape="box"];4671[label="yvy80001",fontsize=16,color="green",shape="box"];4672[label="yvy79001",fontsize=16,color="green",shape="box"];4673[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4673 -> 4771[label="",style="solid", color="black", weight=3]; 4674[label="yvy79000",fontsize=16,color="green",shape="box"];4675[label="yvy80000",fontsize=16,color="green",shape="box"];4676[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4676 -> 4772[label="",style="solid", color="black", weight=3]; 4677[label="yvy79000",fontsize=16,color="green",shape="box"];4678[label="yvy80000",fontsize=16,color="green",shape="box"];4679[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4679 -> 4773[label="",style="solid", color="black", weight=3]; 4680[label="yvy79000",fontsize=16,color="green",shape="box"];4681[label="yvy80000",fontsize=16,color="green",shape="box"];4682[label="yvy79000",fontsize=16,color="green",shape="box"];4683[label="yvy80000",fontsize=16,color="green",shape="box"];4684[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4684 -> 4774[label="",style="solid", color="black", weight=3]; 4685[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4685 -> 4775[label="",style="solid", color="black", weight=3]; 4686[label="yvy79000",fontsize=16,color="green",shape="box"];4687[label="yvy80000",fontsize=16,color="green",shape="box"];4688[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4688 -> 4776[label="",style="solid", color="black", weight=3]; 4689[label="yvy79000",fontsize=16,color="green",shape="box"];4690[label="yvy80000",fontsize=16,color="green",shape="box"];4691[label="yvy79000",fontsize=16,color="green",shape="box"];4692[label="yvy80000",fontsize=16,color="green",shape="box"];4693[label="Integer yvy790000 * yvy80001",fontsize=16,color="burlywood",shape="box"];5893[label="yvy80001/Integer yvy800010",fontsize=10,color="white",style="solid",shape="box"];4693 -> 5893[label="",style="solid", color="burlywood", weight=9]; 5893 -> 4777[label="",style="solid", color="burlywood", weight=3]; 4694[label="yvy80000",fontsize=16,color="green",shape="box"];4695[label="yvy79001",fontsize=16,color="green",shape="box"];4696[label="yvy80001",fontsize=16,color="green",shape="box"];4697[label="yvy79000",fontsize=16,color="green",shape="box"];4698[label="yvy79001",fontsize=16,color="green",shape="box"];4699[label="yvy80000",fontsize=16,color="green",shape="box"];4700 -> 2802[label="",style="dashed", color="red", weight=0]; 4700[label="compare (yvy79000 * Pos yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4700 -> 4778[label="",style="dashed", color="magenta", weight=3]; 4700 -> 4779[label="",style="dashed", color="magenta", weight=3]; 4701 -> 2802[label="",style="dashed", color="red", weight=0]; 4701[label="compare (yvy79000 * Pos yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4701 -> 4780[label="",style="dashed", color="magenta", weight=3]; 4701 -> 4781[label="",style="dashed", color="magenta", weight=3]; 4702 -> 2802[label="",style="dashed", color="red", weight=0]; 4702[label="compare (yvy79000 * Neg yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4702 -> 4782[label="",style="dashed", color="magenta", weight=3]; 4702 -> 4783[label="",style="dashed", color="magenta", weight=3]; 4703 -> 2802[label="",style="dashed", color="red", weight=0]; 4703[label="compare (yvy79000 * Neg yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4703 -> 4784[label="",style="dashed", color="magenta", weight=3]; 4703 -> 4785[label="",style="dashed", color="magenta", weight=3]; 4705[label="compare yvy79000 yvy80000",fontsize=16,color="blue",shape="box"];5894[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5894[label="",style="solid", color="blue", weight=9]; 5894 -> 4786[label="",style="solid", color="blue", weight=3]; 5895[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5895[label="",style="solid", color="blue", weight=9]; 5895 -> 4787[label="",style="solid", color="blue", weight=3]; 5896[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5896[label="",style="solid", color="blue", weight=9]; 5896 -> 4788[label="",style="solid", color="blue", weight=3]; 5897[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5897[label="",style="solid", color="blue", weight=9]; 5897 -> 4789[label="",style="solid", color="blue", weight=3]; 5898[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5898[label="",style="solid", color="blue", weight=9]; 5898 -> 4790[label="",style="solid", color="blue", weight=3]; 5899[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5899[label="",style="solid", color="blue", weight=9]; 5899 -> 4791[label="",style="solid", color="blue", weight=3]; 5900[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5900[label="",style="solid", color="blue", weight=9]; 5900 -> 4792[label="",style="solid", color="blue", weight=3]; 5901[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5901[label="",style="solid", color="blue", weight=9]; 5901 -> 4793[label="",style="solid", color="blue", weight=3]; 5902[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5902[label="",style="solid", color="blue", weight=9]; 5902 -> 4794[label="",style="solid", color="blue", weight=3]; 5903[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5903[label="",style="solid", color="blue", weight=9]; 5903 -> 4795[label="",style="solid", color="blue", weight=3]; 5904[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5904[label="",style="solid", color="blue", weight=9]; 5904 -> 4796[label="",style="solid", color="blue", weight=3]; 5905[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5905[label="",style="solid", color="blue", weight=9]; 5905 -> 4797[label="",style="solid", color="blue", weight=3]; 5906[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5906[label="",style="solid", color="blue", weight=9]; 5906 -> 4798[label="",style="solid", color="blue", weight=3]; 5907[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4705 -> 5907[label="",style="solid", color="blue", weight=9]; 5907 -> 4799[label="",style="solid", color="blue", weight=3]; 4706[label="yvy256",fontsize=16,color="green",shape="box"];4704[label="primCompAux0 yvy260 yvy261",fontsize=16,color="burlywood",shape="triangle"];5908[label="yvy261/LT",fontsize=10,color="white",style="solid",shape="box"];4704 -> 5908[label="",style="solid", color="burlywood", weight=9]; 5908 -> 4800[label="",style="solid", color="burlywood", weight=3]; 5909[label="yvy261/EQ",fontsize=10,color="white",style="solid",shape="box"];4704 -> 5909[label="",style="solid", color="burlywood", weight=9]; 5909 -> 4801[label="",style="solid", color="burlywood", weight=3]; 5910[label="yvy261/GT",fontsize=10,color="white",style="solid",shape="box"];4704 -> 5910[label="",style="solid", color="burlywood", weight=9]; 5910 -> 4802[label="",style="solid", color="burlywood", weight=3]; 4707 -> 2802[label="",style="dashed", color="red", weight=0]; 4707[label="compare (yvy79000 * Pos yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4707 -> 4812[label="",style="dashed", color="magenta", weight=3]; 4707 -> 4813[label="",style="dashed", color="magenta", weight=3]; 4708 -> 2802[label="",style="dashed", color="red", weight=0]; 4708[label="compare (yvy79000 * Pos yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4708 -> 4814[label="",style="dashed", color="magenta", weight=3]; 4708 -> 4815[label="",style="dashed", color="magenta", weight=3]; 4709 -> 2802[label="",style="dashed", color="red", weight=0]; 4709[label="compare (yvy79000 * Neg yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4709 -> 4816[label="",style="dashed", color="magenta", weight=3]; 4709 -> 4817[label="",style="dashed", color="magenta", weight=3]; 4710 -> 2802[label="",style="dashed", color="red", weight=0]; 4710[label="compare (yvy79000 * Neg yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4710 -> 4818[label="",style="dashed", color="magenta", weight=3]; 4710 -> 4819[label="",style="dashed", color="magenta", weight=3]; 2971[label="yvy6200",fontsize=16,color="green",shape="box"];2972 -> 2789[label="",style="dashed", color="red", weight=0]; 2972[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2972 -> 3285[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3286[label="",style="dashed", color="magenta", weight=3]; 2973[label="Succ (Succ (primPlusNat yvy2020 yvy300000))",fontsize=16,color="green",shape="box"];2973 -> 3287[label="",style="dashed", color="green", weight=3]; 2974[label="Succ yvy300000",fontsize=16,color="green",shape="box"];3310[label="yvy400100",fontsize=16,color="green",shape="box"];3311[label="Succ yvy300000",fontsize=16,color="green",shape="box"];3822[label="GT",fontsize=16,color="green",shape="box"];3823[label="yvy8000",fontsize=16,color="green",shape="box"];3824[label="Zero",fontsize=16,color="green",shape="box"];3825 -> 3821[label="",style="dashed", color="red", weight=0]; 3825[label="primCmpNat yvy8000 yvy7900",fontsize=16,color="magenta"];3825 -> 4087[label="",style="dashed", color="magenta", weight=3]; 3825 -> 4088[label="",style="dashed", color="magenta", weight=3]; 3826[label="LT",fontsize=16,color="green",shape="box"];3827[label="Zero",fontsize=16,color="green",shape="box"];3828[label="yvy8000",fontsize=16,color="green",shape="box"];5029 -> 5026[label="",style="dashed", color="red", weight=0]; 5029[label="FiniteMap.sizeFM yvy280",fontsize=16,color="magenta"];5029 -> 5074[label="",style="dashed", color="magenta", weight=3]; 5030[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];5030 -> 5075[label="",style="solid", color="black", weight=3]; 5031[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2810 yvy2811 yvy2812 yvy2813 yvy2814)",fontsize=16,color="black",shape="box"];5031 -> 5076[label="",style="solid", color="black", weight=3]; 3819[label="primPlusNat (Succ yvy20200) yvy300000",fontsize=16,color="burlywood",shape="box"];5911[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5911[label="",style="solid", color="burlywood", weight=9]; 5911 -> 4081[label="",style="solid", color="burlywood", weight=3]; 5912[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5912[label="",style="solid", color="burlywood", weight=9]; 5912 -> 4082[label="",style="solid", color="burlywood", weight=3]; 3820[label="primPlusNat Zero yvy300000",fontsize=16,color="burlywood",shape="box"];5913[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5913[label="",style="solid", color="burlywood", weight=9]; 5913 -> 4083[label="",style="solid", color="burlywood", weight=3]; 5914[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5914[label="",style="solid", color="burlywood", weight=9]; 5914 -> 4084[label="",style="solid", color="burlywood", weight=3]; 4711 -> 4308[label="",style="dashed", color="red", weight=0]; 4711[label="primMinusNat yvy24200 yvy24100",fontsize=16,color="magenta"];4711 -> 4820[label="",style="dashed", color="magenta", weight=3]; 4711 -> 4821[label="",style="dashed", color="magenta", weight=3]; 4712[label="Pos (Succ yvy24200)",fontsize=16,color="green",shape="box"];4713[label="Neg (Succ yvy24100)",fontsize=16,color="green",shape="box"];4714[label="Pos Zero",fontsize=16,color="green",shape="box"];3237[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];3237 -> 3303[label="",style="solid", color="black", weight=3]; 3238[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM yvy50 yvy51 yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3238 -> 3304[label="",style="solid", color="black", weight=3]; 3239[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074)",fontsize=16,color="black",shape="box"];3239 -> 3305[label="",style="solid", color="black", weight=3]; 3834 -> 3959[label="",style="dashed", color="red", weight=0]; 3834[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3834 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3833[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy236",fontsize=16,color="burlywood",shape="triangle"];5915[label="yvy236/False",fontsize=10,color="white",style="solid",shape="box"];3833 -> 5915[label="",style="solid", color="burlywood", weight=9]; 5915 -> 4076[label="",style="solid", color="burlywood", weight=3]; 5916[label="yvy236/True",fontsize=10,color="white",style="solid",shape="box"];3833 -> 5916[label="",style="solid", color="burlywood", weight=9]; 5916 -> 4077[label="",style="solid", color="burlywood", weight=3]; 3281[label="yvy6200",fontsize=16,color="green",shape="box"];3282 -> 2789[label="",style="dashed", color="red", weight=0]; 3282[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];3282 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3811[label="",style="dashed", color="magenta", weight=3]; 4323[label="primCmpNat (Succ yvy79000) (Succ yvy80000)",fontsize=16,color="black",shape="box"];4323 -> 4593[label="",style="solid", color="black", weight=3]; 4324[label="primCmpNat (Succ yvy79000) Zero",fontsize=16,color="black",shape="box"];4324 -> 4594[label="",style="solid", color="black", weight=3]; 4325[label="primCmpNat Zero (Succ yvy80000)",fontsize=16,color="black",shape="box"];4325 -> 4595[label="",style="solid", color="black", weight=3]; 4326[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];4326 -> 4596[label="",style="solid", color="black", weight=3]; 4715[label="yvy79002",fontsize=16,color="green",shape="box"];4716[label="yvy80002",fontsize=16,color="green",shape="box"];4717[label="yvy79002",fontsize=16,color="green",shape="box"];4718[label="yvy80002",fontsize=16,color="green",shape="box"];4719[label="yvy79002",fontsize=16,color="green",shape="box"];4720[label="yvy80002",fontsize=16,color="green",shape="box"];4721[label="yvy79002",fontsize=16,color="green",shape="box"];4722[label="yvy80002",fontsize=16,color="green",shape="box"];4723[label="yvy79002",fontsize=16,color="green",shape="box"];4724[label="yvy80002",fontsize=16,color="green",shape="box"];4725[label="yvy79002",fontsize=16,color="green",shape="box"];4726[label="yvy80002",fontsize=16,color="green",shape="box"];4727[label="yvy79002",fontsize=16,color="green",shape="box"];4728[label="yvy80002",fontsize=16,color="green",shape="box"];4729[label="yvy79002",fontsize=16,color="green",shape="box"];4730[label="yvy80002",fontsize=16,color="green",shape="box"];4731[label="yvy79002",fontsize=16,color="green",shape="box"];4732[label="yvy80002",fontsize=16,color="green",shape="box"];4733[label="yvy79002",fontsize=16,color="green",shape="box"];4734[label="yvy80002",fontsize=16,color="green",shape="box"];4735[label="yvy79002",fontsize=16,color="green",shape="box"];4736[label="yvy80002",fontsize=16,color="green",shape="box"];4737[label="yvy79002",fontsize=16,color="green",shape="box"];4738[label="yvy80002",fontsize=16,color="green",shape="box"];4739[label="yvy79002",fontsize=16,color="green",shape="box"];4740[label="yvy80002",fontsize=16,color="green",shape="box"];4741[label="yvy79002",fontsize=16,color="green",shape="box"];4742[label="yvy80002",fontsize=16,color="green",shape="box"];4743[label="yvy80001",fontsize=16,color="green",shape="box"];4744[label="yvy79001",fontsize=16,color="green",shape="box"];4745[label="yvy80001",fontsize=16,color="green",shape="box"];4746[label="yvy79001",fontsize=16,color="green",shape="box"];4747[label="yvy80001",fontsize=16,color="green",shape="box"];4748[label="yvy79001",fontsize=16,color="green",shape="box"];4749[label="yvy80001",fontsize=16,color="green",shape="box"];4750[label="yvy79001",fontsize=16,color="green",shape="box"];4751[label="yvy80001",fontsize=16,color="green",shape="box"];4752[label="yvy79001",fontsize=16,color="green",shape="box"];4753[label="yvy80001",fontsize=16,color="green",shape="box"];4754[label="yvy79001",fontsize=16,color="green",shape="box"];4755[label="yvy80001",fontsize=16,color="green",shape="box"];4756[label="yvy79001",fontsize=16,color="green",shape="box"];4757[label="yvy80001",fontsize=16,color="green",shape="box"];4758[label="yvy79001",fontsize=16,color="green",shape="box"];4759[label="yvy80001",fontsize=16,color="green",shape="box"];4760[label="yvy79001",fontsize=16,color="green",shape="box"];4761[label="yvy80001",fontsize=16,color="green",shape="box"];4762[label="yvy79001",fontsize=16,color="green",shape="box"];4763[label="yvy80001",fontsize=16,color="green",shape="box"];4764[label="yvy79001",fontsize=16,color="green",shape="box"];4765[label="yvy80001",fontsize=16,color="green",shape="box"];4766[label="yvy79001",fontsize=16,color="green",shape="box"];4767[label="yvy80001",fontsize=16,color="green",shape="box"];4768[label="yvy79001",fontsize=16,color="green",shape="box"];4769[label="yvy80001",fontsize=16,color="green",shape="box"];4770[label="yvy79001",fontsize=16,color="green",shape="box"];4771 -> 2815[label="",style="dashed", color="red", weight=0]; 4771[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4771 -> 4822[label="",style="dashed", color="magenta", weight=3]; 4771 -> 4823[label="",style="dashed", color="magenta", weight=3]; 4771 -> 4824[label="",style="dashed", color="magenta", weight=3]; 4772 -> 4825[label="",style="dashed", color="red", weight=0]; 4772[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4772 -> 4826[label="",style="dashed", color="magenta", weight=3]; 4773 -> 4827[label="",style="dashed", color="red", weight=0]; 4773[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4773 -> 4828[label="",style="dashed", color="magenta", weight=3]; 4774 -> 4829[label="",style="dashed", color="red", weight=0]; 4774[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4774 -> 4830[label="",style="dashed", color="magenta", weight=3]; 4775 -> 4831[label="",style="dashed", color="red", weight=0]; 4775[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4775 -> 4832[label="",style="dashed", color="magenta", weight=3]; 4776 -> 4833[label="",style="dashed", color="red", weight=0]; 4776[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4776 -> 4834[label="",style="dashed", color="magenta", weight=3]; 4777[label="Integer yvy790000 * Integer yvy800010",fontsize=16,color="black",shape="box"];4777 -> 4835[label="",style="solid", color="black", weight=3]; 4778 -> 1321[label="",style="dashed", color="red", weight=0]; 4778[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4778 -> 4836[label="",style="dashed", color="magenta", weight=3]; 4778 -> 4837[label="",style="dashed", color="magenta", weight=3]; 4779 -> 1321[label="",style="dashed", color="red", weight=0]; 4779[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4779 -> 4838[label="",style="dashed", color="magenta", weight=3]; 4779 -> 4839[label="",style="dashed", color="magenta", weight=3]; 4780 -> 1321[label="",style="dashed", color="red", weight=0]; 4780[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4780 -> 4840[label="",style="dashed", color="magenta", weight=3]; 4780 -> 4841[label="",style="dashed", color="magenta", weight=3]; 4781 -> 1321[label="",style="dashed", color="red", weight=0]; 4781[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4781 -> 4842[label="",style="dashed", color="magenta", weight=3]; 4781 -> 4843[label="",style="dashed", color="magenta", weight=3]; 4782 -> 1321[label="",style="dashed", color="red", weight=0]; 4782[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4782 -> 4844[label="",style="dashed", color="magenta", weight=3]; 4782 -> 4845[label="",style="dashed", color="magenta", weight=3]; 4783 -> 1321[label="",style="dashed", color="red", weight=0]; 4783[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4783 -> 4846[label="",style="dashed", color="magenta", weight=3]; 4783 -> 4847[label="",style="dashed", color="magenta", weight=3]; 4784 -> 1321[label="",style="dashed", color="red", weight=0]; 4784[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4784 -> 4848[label="",style="dashed", color="magenta", weight=3]; 4784 -> 4849[label="",style="dashed", color="magenta", weight=3]; 4785 -> 1321[label="",style="dashed", color="red", weight=0]; 4785[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4785 -> 4850[label="",style="dashed", color="magenta", weight=3]; 4785 -> 4851[label="",style="dashed", color="magenta", weight=3]; 4786 -> 4490[label="",style="dashed", color="red", weight=0]; 4786[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4786 -> 4852[label="",style="dashed", color="magenta", weight=3]; 4786 -> 4853[label="",style="dashed", color="magenta", weight=3]; 4787 -> 4020[label="",style="dashed", color="red", weight=0]; 4787[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4787 -> 4854[label="",style="dashed", color="magenta", weight=3]; 4787 -> 4855[label="",style="dashed", color="magenta", weight=3]; 4788 -> 4494[label="",style="dashed", color="red", weight=0]; 4788[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4788 -> 4856[label="",style="dashed", color="magenta", weight=3]; 4788 -> 4857[label="",style="dashed", color="magenta", weight=3]; 4789 -> 4021[label="",style="dashed", color="red", weight=0]; 4789[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4789 -> 4858[label="",style="dashed", color="magenta", weight=3]; 4789 -> 4859[label="",style="dashed", color="magenta", weight=3]; 4790 -> 4498[label="",style="dashed", color="red", weight=0]; 4790[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4790 -> 4860[label="",style="dashed", color="magenta", weight=3]; 4790 -> 4861[label="",style="dashed", color="magenta", weight=3]; 4791 -> 4022[label="",style="dashed", color="red", weight=0]; 4791[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4791 -> 4862[label="",style="dashed", color="magenta", weight=3]; 4791 -> 4863[label="",style="dashed", color="magenta", weight=3]; 4792 -> 4023[label="",style="dashed", color="red", weight=0]; 4792[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4792 -> 4864[label="",style="dashed", color="magenta", weight=3]; 4792 -> 4865[label="",style="dashed", color="magenta", weight=3]; 4793 -> 4504[label="",style="dashed", color="red", weight=0]; 4793[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4793 -> 4866[label="",style="dashed", color="magenta", weight=3]; 4793 -> 4867[label="",style="dashed", color="magenta", weight=3]; 4794 -> 4506[label="",style="dashed", color="red", weight=0]; 4794[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4794 -> 4868[label="",style="dashed", color="magenta", weight=3]; 4794 -> 4869[label="",style="dashed", color="magenta", weight=3]; 4795 -> 2802[label="",style="dashed", color="red", weight=0]; 4795[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4795 -> 4870[label="",style="dashed", color="magenta", weight=3]; 4795 -> 4871[label="",style="dashed", color="magenta", weight=3]; 4796 -> 4025[label="",style="dashed", color="red", weight=0]; 4796[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4796 -> 4872[label="",style="dashed", color="magenta", weight=3]; 4796 -> 4873[label="",style="dashed", color="magenta", weight=3]; 4797 -> 4510[label="",style="dashed", color="red", weight=0]; 4797[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4797 -> 4874[label="",style="dashed", color="magenta", weight=3]; 4797 -> 4875[label="",style="dashed", color="magenta", weight=3]; 4798 -> 4026[label="",style="dashed", color="red", weight=0]; 4798[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4798 -> 4876[label="",style="dashed", color="magenta", weight=3]; 4798 -> 4877[label="",style="dashed", color="magenta", weight=3]; 4799 -> 4027[label="",style="dashed", color="red", weight=0]; 4799[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4799 -> 4878[label="",style="dashed", color="magenta", weight=3]; 4799 -> 4879[label="",style="dashed", color="magenta", weight=3]; 4800[label="primCompAux0 yvy260 LT",fontsize=16,color="black",shape="box"];4800 -> 4880[label="",style="solid", color="black", weight=3]; 4801[label="primCompAux0 yvy260 EQ",fontsize=16,color="black",shape="box"];4801 -> 4881[label="",style="solid", color="black", weight=3]; 4802[label="primCompAux0 yvy260 GT",fontsize=16,color="black",shape="box"];4802 -> 4882[label="",style="solid", color="black", weight=3]; 4812 -> 1321[label="",style="dashed", color="red", weight=0]; 4812[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4812 -> 4883[label="",style="dashed", color="magenta", weight=3]; 4812 -> 4884[label="",style="dashed", color="magenta", weight=3]; 4813 -> 1321[label="",style="dashed", color="red", weight=0]; 4813[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4813 -> 4885[label="",style="dashed", color="magenta", weight=3]; 4813 -> 4886[label="",style="dashed", color="magenta", weight=3]; 4814 -> 1321[label="",style="dashed", color="red", weight=0]; 4814[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4814 -> 4887[label="",style="dashed", color="magenta", weight=3]; 4814 -> 4888[label="",style="dashed", color="magenta", weight=3]; 4815 -> 1321[label="",style="dashed", color="red", weight=0]; 4815[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4815 -> 4889[label="",style="dashed", color="magenta", weight=3]; 4815 -> 4890[label="",style="dashed", color="magenta", weight=3]; 4816 -> 1321[label="",style="dashed", color="red", weight=0]; 4816[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4816 -> 4891[label="",style="dashed", color="magenta", weight=3]; 4816 -> 4892[label="",style="dashed", color="magenta", weight=3]; 4817 -> 1321[label="",style="dashed", color="red", weight=0]; 4817[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4817 -> 4893[label="",style="dashed", color="magenta", weight=3]; 4817 -> 4894[label="",style="dashed", color="magenta", weight=3]; 4818 -> 1321[label="",style="dashed", color="red", weight=0]; 4818[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4818 -> 4895[label="",style="dashed", color="magenta", weight=3]; 4818 -> 4896[label="",style="dashed", color="magenta", weight=3]; 4819 -> 1321[label="",style="dashed", color="red", weight=0]; 4819[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4819 -> 4897[label="",style="dashed", color="magenta", weight=3]; 4819 -> 4898[label="",style="dashed", color="magenta", weight=3]; 3285[label="yvy6200",fontsize=16,color="green",shape="box"];3286[label="Succ yvy6200",fontsize=16,color="green",shape="box"];4087[label="yvy8000",fontsize=16,color="green",shape="box"];4088[label="yvy7900",fontsize=16,color="green",shape="box"];5074[label="yvy280",fontsize=16,color="green",shape="box"];5075[label="Pos Zero",fontsize=16,color="green",shape="box"];5076[label="yvy2812",fontsize=16,color="green",shape="box"];4081[label="primPlusNat (Succ yvy20200) (Succ yvy3000000)",fontsize=16,color="black",shape="box"];4081 -> 4330[label="",style="solid", color="black", weight=3]; 4082[label="primPlusNat (Succ yvy20200) Zero",fontsize=16,color="black",shape="box"];4082 -> 4331[label="",style="solid", color="black", weight=3]; 4083[label="primPlusNat Zero (Succ yvy3000000)",fontsize=16,color="black",shape="box"];4083 -> 4332[label="",style="solid", color="black", weight=3]; 4084[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];4084 -> 4333[label="",style="solid", color="black", weight=3]; 4820[label="yvy24100",fontsize=16,color="green",shape="box"];4821[label="yvy24200",fontsize=16,color="green",shape="box"];3303 -> 4950[label="",style="dashed", color="red", weight=0]; 3303[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy107 yvy54",fontsize=16,color="magenta"];3303 -> 4976[label="",style="dashed", color="magenta", weight=3]; 3303 -> 4977[label="",style="dashed", color="magenta", weight=3]; 3303 -> 4978[label="",style="dashed", color="magenta", weight=3]; 3303 -> 4979[label="",style="dashed", color="magenta", weight=3]; 3303 -> 4980[label="",style="dashed", color="magenta", weight=3]; 3304[label="error []",fontsize=16,color="red",shape="box"];3305[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074)",fontsize=16,color="black",shape="box"];3305 -> 3831[label="",style="solid", color="black", weight=3]; 3966 -> 1321[label="",style="dashed", color="red", weight=0]; 3966[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3966 -> 4078[label="",style="dashed", color="magenta", weight=3]; 3966 -> 4079[label="",style="dashed", color="magenta", weight=3]; 3967 -> 2777[label="",style="dashed", color="red", weight=0]; 3967[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3967 -> 4080[label="",style="dashed", color="magenta", weight=3]; 4076[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];4076 -> 4327[label="",style="solid", color="black", weight=3]; 4077[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4077 -> 4328[label="",style="solid", color="black", weight=3]; 3810[label="yvy6200",fontsize=16,color="green",shape="box"];3811[label="Succ yvy6200",fontsize=16,color="green",shape="box"];4593 -> 3821[label="",style="dashed", color="red", weight=0]; 4593[label="primCmpNat yvy79000 yvy80000",fontsize=16,color="magenta"];4593 -> 4803[label="",style="dashed", color="magenta", weight=3]; 4593 -> 4804[label="",style="dashed", color="magenta", weight=3]; 4594[label="GT",fontsize=16,color="green",shape="box"];4595[label="LT",fontsize=16,color="green",shape="box"];4596[label="EQ",fontsize=16,color="green",shape="box"];4822[label="yvy79000",fontsize=16,color="green",shape="box"];4823 -> 2889[label="",style="dashed", color="red", weight=0]; 4823[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4823 -> 4899[label="",style="dashed", color="magenta", weight=3]; 4823 -> 4900[label="",style="dashed", color="magenta", weight=3]; 4824[label="yvy80000",fontsize=16,color="green",shape="box"];4826 -> 2883[label="",style="dashed", color="red", weight=0]; 4826[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4826 -> 4901[label="",style="dashed", color="magenta", weight=3]; 4826 -> 4902[label="",style="dashed", color="magenta", weight=3]; 4825[label="compare2 yvy79000 yvy80000 yvy262",fontsize=16,color="burlywood",shape="triangle"];5917[label="yvy262/False",fontsize=10,color="white",style="solid",shape="box"];4825 -> 5917[label="",style="solid", color="burlywood", weight=9]; 5917 -> 4903[label="",style="solid", color="burlywood", weight=3]; 5918[label="yvy262/True",fontsize=10,color="white",style="solid",shape="box"];4825 -> 5918[label="",style="solid", color="burlywood", weight=9]; 5918 -> 4904[label="",style="solid", color="burlywood", weight=3]; 4828 -> 2879[label="",style="dashed", color="red", weight=0]; 4828[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4828 -> 4905[label="",style="dashed", color="magenta", weight=3]; 4828 -> 4906[label="",style="dashed", color="magenta", weight=3]; 4827[label="compare2 yvy79000 yvy80000 yvy263",fontsize=16,color="burlywood",shape="triangle"];5919[label="yvy263/False",fontsize=10,color="white",style="solid",shape="box"];4827 -> 5919[label="",style="solid", color="burlywood", weight=9]; 5919 -> 4907[label="",style="solid", color="burlywood", weight=3]; 5920[label="yvy263/True",fontsize=10,color="white",style="solid",shape="box"];4827 -> 5920[label="",style="solid", color="burlywood", weight=9]; 5920 -> 4908[label="",style="solid", color="burlywood", weight=3]; 4830 -> 2881[label="",style="dashed", color="red", weight=0]; 4830[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4830 -> 4909[label="",style="dashed", color="magenta", weight=3]; 4830 -> 4910[label="",style="dashed", color="magenta", weight=3]; 4829[label="compare2 yvy79000 yvy80000 yvy264",fontsize=16,color="burlywood",shape="triangle"];5921[label="yvy264/False",fontsize=10,color="white",style="solid",shape="box"];4829 -> 5921[label="",style="solid", color="burlywood", weight=9]; 5921 -> 4911[label="",style="solid", color="burlywood", weight=3]; 5922[label="yvy264/True",fontsize=10,color="white",style="solid",shape="box"];4829 -> 5922[label="",style="solid", color="burlywood", weight=9]; 5922 -> 4912[label="",style="solid", color="burlywood", weight=3]; 4832 -> 127[label="",style="dashed", color="red", weight=0]; 4832[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4832 -> 4913[label="",style="dashed", color="magenta", weight=3]; 4832 -> 4914[label="",style="dashed", color="magenta", weight=3]; 4831[label="compare2 yvy79000 yvy80000 yvy265",fontsize=16,color="burlywood",shape="triangle"];5923[label="yvy265/False",fontsize=10,color="white",style="solid",shape="box"];4831 -> 5923[label="",style="solid", color="burlywood", weight=9]; 5923 -> 4915[label="",style="solid", color="burlywood", weight=3]; 5924[label="yvy265/True",fontsize=10,color="white",style="solid",shape="box"];4831 -> 5924[label="",style="solid", color="burlywood", weight=9]; 5924 -> 4916[label="",style="solid", color="burlywood", weight=3]; 4834 -> 2878[label="",style="dashed", color="red", weight=0]; 4834[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4834 -> 4917[label="",style="dashed", color="magenta", weight=3]; 4834 -> 4918[label="",style="dashed", color="magenta", weight=3]; 4833[label="compare2 yvy79000 yvy80000 yvy266",fontsize=16,color="burlywood",shape="triangle"];5925[label="yvy266/False",fontsize=10,color="white",style="solid",shape="box"];4833 -> 5925[label="",style="solid", color="burlywood", weight=9]; 5925 -> 4919[label="",style="solid", color="burlywood", weight=3]; 5926[label="yvy266/True",fontsize=10,color="white",style="solid",shape="box"];4833 -> 5926[label="",style="solid", color="burlywood", weight=9]; 5926 -> 4920[label="",style="solid", color="burlywood", weight=3]; 4835[label="Integer (primMulInt yvy790000 yvy800010)",fontsize=16,color="green",shape="box"];4835 -> 4937[label="",style="dashed", color="green", weight=3]; 4836[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4837[label="yvy79000",fontsize=16,color="green",shape="box"];4838[label="yvy80000",fontsize=16,color="green",shape="box"];4839[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4840[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4841[label="yvy79000",fontsize=16,color="green",shape="box"];4842[label="yvy80000",fontsize=16,color="green",shape="box"];4843[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4844[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4845[label="yvy79000",fontsize=16,color="green",shape="box"];4846[label="yvy80000",fontsize=16,color="green",shape="box"];4847[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4848[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4849[label="yvy79000",fontsize=16,color="green",shape="box"];4850[label="yvy80000",fontsize=16,color="green",shape="box"];4851[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4852[label="yvy80000",fontsize=16,color="green",shape="box"];4853[label="yvy79000",fontsize=16,color="green",shape="box"];4854[label="yvy79000",fontsize=16,color="green",shape="box"];4855[label="yvy80000",fontsize=16,color="green",shape="box"];4856[label="yvy80000",fontsize=16,color="green",shape="box"];4857[label="yvy79000",fontsize=16,color="green",shape="box"];4858[label="yvy79000",fontsize=16,color="green",shape="box"];4859[label="yvy80000",fontsize=16,color="green",shape="box"];4860[label="yvy80000",fontsize=16,color="green",shape="box"];4861[label="yvy79000",fontsize=16,color="green",shape="box"];4862[label="yvy79000",fontsize=16,color="green",shape="box"];4863[label="yvy80000",fontsize=16,color="green",shape="box"];4864[label="yvy79000",fontsize=16,color="green",shape="box"];4865[label="yvy80000",fontsize=16,color="green",shape="box"];4866[label="yvy80000",fontsize=16,color="green",shape="box"];4867[label="yvy79000",fontsize=16,color="green",shape="box"];4868[label="yvy80000",fontsize=16,color="green",shape="box"];4869[label="yvy79000",fontsize=16,color="green",shape="box"];4870[label="yvy79000",fontsize=16,color="green",shape="box"];4871[label="yvy80000",fontsize=16,color="green",shape="box"];4872[label="yvy79000",fontsize=16,color="green",shape="box"];4873[label="yvy80000",fontsize=16,color="green",shape="box"];4874[label="yvy80000",fontsize=16,color="green",shape="box"];4875[label="yvy79000",fontsize=16,color="green",shape="box"];4876[label="yvy79000",fontsize=16,color="green",shape="box"];4877[label="yvy80000",fontsize=16,color="green",shape="box"];4878[label="yvy79000",fontsize=16,color="green",shape="box"];4879[label="yvy80000",fontsize=16,color="green",shape="box"];4880[label="LT",fontsize=16,color="green",shape="box"];4881[label="yvy260",fontsize=16,color="green",shape="box"];4882[label="GT",fontsize=16,color="green",shape="box"];4883[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4884[label="yvy79000",fontsize=16,color="green",shape="box"];4885[label="yvy80000",fontsize=16,color="green",shape="box"];4886[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4887[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4888[label="yvy79000",fontsize=16,color="green",shape="box"];4889[label="yvy80000",fontsize=16,color="green",shape="box"];4890[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4891[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4892[label="yvy79000",fontsize=16,color="green",shape="box"];4893[label="yvy80000",fontsize=16,color="green",shape="box"];4894[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4895[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4896[label="yvy79000",fontsize=16,color="green",shape="box"];4897[label="yvy80000",fontsize=16,color="green",shape="box"];4898[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4330[label="Succ (Succ (primPlusNat yvy20200 yvy3000000))",fontsize=16,color="green",shape="box"];4330 -> 4599[label="",style="dashed", color="green", weight=3]; 4331[label="Succ yvy20200",fontsize=16,color="green",shape="box"];4332[label="Succ yvy3000000",fontsize=16,color="green",shape="box"];4333[label="Zero",fontsize=16,color="green",shape="box"];4976[label="yvy50",fontsize=16,color="green",shape="box"];4977[label="yvy54",fontsize=16,color="green",shape="box"];4978[label="yvy51",fontsize=16,color="green",shape="box"];4979[label="yvy107",fontsize=16,color="green",shape="box"];4980[label="Succ Zero",fontsize=16,color="green",shape="box"];3831 -> 4089[label="",style="dashed", color="red", weight=0]; 3831[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 (FiniteMap.sizeFM yvy1074 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073)",fontsize=16,color="magenta"];3831 -> 4090[label="",style="dashed", color="magenta", weight=3]; 4078 -> 2777[label="",style="dashed", color="red", weight=0]; 4078[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];4078 -> 4329[label="",style="dashed", color="magenta", weight=3]; 4079[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4080[label="yvy543",fontsize=16,color="green",shape="box"];4327[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];4327 -> 4597[label="",style="solid", color="black", weight=3]; 4328[label="FiniteMap.mkBalBranch6Single_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];4328 -> 4598[label="",style="solid", color="black", weight=3]; 4803[label="yvy79000",fontsize=16,color="green",shape="box"];4804[label="yvy80000",fontsize=16,color="green",shape="box"];4899[label="yvy80000",fontsize=16,color="green",shape="box"];4900[label="yvy79000",fontsize=16,color="green",shape="box"];4901[label="yvy80000",fontsize=16,color="green",shape="box"];4902[label="yvy79000",fontsize=16,color="green",shape="box"];4903[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4903 -> 4938[label="",style="solid", color="black", weight=3]; 4904[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4904 -> 4939[label="",style="solid", color="black", weight=3]; 4905[label="yvy80000",fontsize=16,color="green",shape="box"];4906[label="yvy79000",fontsize=16,color="green",shape="box"];4907[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4907 -> 4940[label="",style="solid", color="black", weight=3]; 4908[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4908 -> 4941[label="",style="solid", color="black", weight=3]; 4909[label="yvy80000",fontsize=16,color="green",shape="box"];4910[label="yvy79000",fontsize=16,color="green",shape="box"];4911[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4911 -> 4942[label="",style="solid", color="black", weight=3]; 4912[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4912 -> 4943[label="",style="solid", color="black", weight=3]; 4913[label="yvy80000",fontsize=16,color="green",shape="box"];4914[label="yvy79000",fontsize=16,color="green",shape="box"];4915[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4915 -> 4944[label="",style="solid", color="black", weight=3]; 4916[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4916 -> 4945[label="",style="solid", color="black", weight=3]; 4917[label="yvy80000",fontsize=16,color="green",shape="box"];4918[label="yvy79000",fontsize=16,color="green",shape="box"];4919[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4919 -> 4946[label="",style="solid", color="black", weight=3]; 4920[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4920 -> 4947[label="",style="solid", color="black", weight=3]; 4937 -> 1633[label="",style="dashed", color="red", weight=0]; 4937[label="primMulInt yvy790000 yvy800010",fontsize=16,color="magenta"];4937 -> 5007[label="",style="dashed", color="magenta", weight=3]; 4937 -> 5008[label="",style="dashed", color="magenta", weight=3]; 4599 -> 3287[label="",style="dashed", color="red", weight=0]; 4599[label="primPlusNat yvy20200 yvy3000000",fontsize=16,color="magenta"];4599 -> 4805[label="",style="dashed", color="magenta", weight=3]; 4599 -> 4806[label="",style="dashed", color="magenta", weight=3]; 4090 -> 3959[label="",style="dashed", color="red", weight=0]; 4090[label="FiniteMap.sizeFM yvy1074 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4090 -> 4334[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4335[label="",style="dashed", color="magenta", weight=3]; 4089[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 yvy244",fontsize=16,color="burlywood",shape="triangle"];5927[label="yvy244/False",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5927[label="",style="solid", color="burlywood", weight=9]; 5927 -> 4336[label="",style="solid", color="burlywood", weight=3]; 5928[label="yvy244/True",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5928[label="",style="solid", color="burlywood", weight=9]; 5928 -> 4337[label="",style="solid", color="burlywood", weight=3]; 4329[label="yvy544",fontsize=16,color="green",shape="box"];4597[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4597 -> 4807[label="",style="solid", color="black", weight=3]; 4598 -> 4950[label="",style="dashed", color="red", weight=0]; 4598[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy107 yvy543) yvy544",fontsize=16,color="magenta"];4598 -> 4981[label="",style="dashed", color="magenta", weight=3]; 4598 -> 4982[label="",style="dashed", color="magenta", weight=3]; 4598 -> 4983[label="",style="dashed", color="magenta", weight=3]; 4598 -> 4984[label="",style="dashed", color="magenta", weight=3]; 4598 -> 4985[label="",style="dashed", color="magenta", weight=3]; 4938 -> 5009[label="",style="dashed", color="red", weight=0]; 4938[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4938 -> 5010[label="",style="dashed", color="magenta", weight=3]; 4939[label="EQ",fontsize=16,color="green",shape="box"];4940 -> 5012[label="",style="dashed", color="red", weight=0]; 4940[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4940 -> 5013[label="",style="dashed", color="magenta", weight=3]; 4941[label="EQ",fontsize=16,color="green",shape="box"];4942 -> 5015[label="",style="dashed", color="red", weight=0]; 4942[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4942 -> 5016[label="",style="dashed", color="magenta", weight=3]; 4943[label="EQ",fontsize=16,color="green",shape="box"];4944 -> 5022[label="",style="dashed", color="red", weight=0]; 4944[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4944 -> 5023[label="",style="dashed", color="magenta", weight=3]; 4945[label="EQ",fontsize=16,color="green",shape="box"];4946 -> 5027[label="",style="dashed", color="red", weight=0]; 4946[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4946 -> 5028[label="",style="dashed", color="magenta", weight=3]; 4947[label="EQ",fontsize=16,color="green",shape="box"];5007[label="yvy800010",fontsize=16,color="green",shape="box"];5008[label="yvy790000",fontsize=16,color="green",shape="box"];4805[label="yvy20200",fontsize=16,color="green",shape="box"];4806[label="yvy3000000",fontsize=16,color="green",shape="box"];4334 -> 1321[label="",style="dashed", color="red", weight=0]; 4334[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4334 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4334 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4335 -> 2777[label="",style="dashed", color="red", weight=0]; 4335[label="FiniteMap.sizeFM yvy1074",fontsize=16,color="magenta"];4335 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4336[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 False",fontsize=16,color="black",shape="box"];4336 -> 4603[label="",style="solid", color="black", weight=3]; 4337[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 True",fontsize=16,color="black",shape="box"];4337 -> 4604[label="",style="solid", color="black", weight=3]; 4807[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5929[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4807 -> 5929[label="",style="solid", color="burlywood", weight=9]; 5929 -> 4921[label="",style="solid", color="burlywood", weight=3]; 5930[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4807 -> 5930[label="",style="solid", color="burlywood", weight=9]; 5930 -> 4922[label="",style="solid", color="burlywood", weight=3]; 4981[label="yvy540",fontsize=16,color="green",shape="box"];4982[label="yvy544",fontsize=16,color="green",shape="box"];4983[label="yvy541",fontsize=16,color="green",shape="box"];4984 -> 4950[label="",style="dashed", color="red", weight=0]; 4984[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy107 yvy543",fontsize=16,color="magenta"];4984 -> 5032[label="",style="dashed", color="magenta", weight=3]; 4984 -> 5033[label="",style="dashed", color="magenta", weight=3]; 4984 -> 5034[label="",style="dashed", color="magenta", weight=3]; 4984 -> 5035[label="",style="dashed", color="magenta", weight=3]; 4984 -> 5036[label="",style="dashed", color="magenta", weight=3]; 4985[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];5010 -> 3773[label="",style="dashed", color="red", weight=0]; 5010[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5010 -> 5037[label="",style="dashed", color="magenta", weight=3]; 5010 -> 5038[label="",style="dashed", color="magenta", weight=3]; 5009[label="compare1 yvy79000 yvy80000 yvy282",fontsize=16,color="burlywood",shape="triangle"];5931[label="yvy282/False",fontsize=10,color="white",style="solid",shape="box"];5009 -> 5931[label="",style="solid", color="burlywood", weight=9]; 5931 -> 5039[label="",style="solid", color="burlywood", weight=3]; 5932[label="yvy282/True",fontsize=10,color="white",style="solid",shape="box"];5009 -> 5932[label="",style="solid", color="burlywood", weight=9]; 5932 -> 5040[label="",style="solid", color="burlywood", weight=3]; 5013 -> 3775[label="",style="dashed", color="red", weight=0]; 5013[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5013 -> 5041[label="",style="dashed", color="magenta", weight=3]; 5013 -> 5042[label="",style="dashed", color="magenta", weight=3]; 5012[label="compare1 yvy79000 yvy80000 yvy283",fontsize=16,color="burlywood",shape="triangle"];5933[label="yvy283/False",fontsize=10,color="white",style="solid",shape="box"];5012 -> 5933[label="",style="solid", color="burlywood", weight=9]; 5933 -> 5043[label="",style="solid", color="burlywood", weight=3]; 5934[label="yvy283/True",fontsize=10,color="white",style="solid",shape="box"];5012 -> 5934[label="",style="solid", color="burlywood", weight=9]; 5934 -> 5044[label="",style="solid", color="burlywood", weight=3]; 5016 -> 3778[label="",style="dashed", color="red", weight=0]; 5016[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5016 -> 5045[label="",style="dashed", color="magenta", weight=3]; 5016 -> 5046[label="",style="dashed", color="magenta", weight=3]; 5015[label="compare1 yvy79000 yvy80000 yvy284",fontsize=16,color="burlywood",shape="triangle"];5935[label="yvy284/False",fontsize=10,color="white",style="solid",shape="box"];5015 -> 5935[label="",style="solid", color="burlywood", weight=9]; 5935 -> 5047[label="",style="solid", color="burlywood", weight=3]; 5936[label="yvy284/True",fontsize=10,color="white",style="solid",shape="box"];5015 -> 5936[label="",style="solid", color="burlywood", weight=9]; 5936 -> 5048[label="",style="solid", color="burlywood", weight=3]; 5023 -> 3779[label="",style="dashed", color="red", weight=0]; 5023[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5023 -> 5049[label="",style="dashed", color="magenta", weight=3]; 5023 -> 5050[label="",style="dashed", color="magenta", weight=3]; 5022[label="compare1 yvy79000 yvy80000 yvy287",fontsize=16,color="burlywood",shape="triangle"];5937[label="yvy287/False",fontsize=10,color="white",style="solid",shape="box"];5022 -> 5937[label="",style="solid", color="burlywood", weight=9]; 5937 -> 5051[label="",style="solid", color="burlywood", weight=3]; 5938[label="yvy287/True",fontsize=10,color="white",style="solid",shape="box"];5022 -> 5938[label="",style="solid", color="burlywood", weight=9]; 5938 -> 5052[label="",style="solid", color="burlywood", weight=3]; 5028 -> 3782[label="",style="dashed", color="red", weight=0]; 5028[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5028 -> 5053[label="",style="dashed", color="magenta", weight=3]; 5028 -> 5054[label="",style="dashed", color="magenta", weight=3]; 5027[label="compare1 yvy79000 yvy80000 yvy288",fontsize=16,color="burlywood",shape="triangle"];5939[label="yvy288/False",fontsize=10,color="white",style="solid",shape="box"];5027 -> 5939[label="",style="solid", color="burlywood", weight=9]; 5939 -> 5055[label="",style="solid", color="burlywood", weight=3]; 5940[label="yvy288/True",fontsize=10,color="white",style="solid",shape="box"];5027 -> 5940[label="",style="solid", color="burlywood", weight=9]; 5940 -> 5056[label="",style="solid", color="burlywood", weight=3]; 4600 -> 2777[label="",style="dashed", color="red", weight=0]; 4600[label="FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4600 -> 4809[label="",style="dashed", color="magenta", weight=3]; 4601[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4602[label="yvy1074",fontsize=16,color="green",shape="box"];4603[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 otherwise",fontsize=16,color="black",shape="box"];4603 -> 4810[label="",style="solid", color="black", weight=3]; 4604[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54",fontsize=16,color="black",shape="box"];4604 -> 4811[label="",style="solid", color="black", weight=3]; 4921[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];4921 -> 4948[label="",style="solid", color="black", weight=3]; 4922[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];4922 -> 4949[label="",style="solid", color="black", weight=3]; 5032[label="yvy50",fontsize=16,color="green",shape="box"];5033[label="yvy543",fontsize=16,color="green",shape="box"];5034[label="yvy51",fontsize=16,color="green",shape="box"];5035[label="yvy107",fontsize=16,color="green",shape="box"];5036[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];5037[label="yvy79000",fontsize=16,color="green",shape="box"];5038[label="yvy80000",fontsize=16,color="green",shape="box"];5039[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5039 -> 5077[label="",style="solid", color="black", weight=3]; 5040[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5040 -> 5078[label="",style="solid", color="black", weight=3]; 5041[label="yvy79000",fontsize=16,color="green",shape="box"];5042[label="yvy80000",fontsize=16,color="green",shape="box"];5043[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5043 -> 5079[label="",style="solid", color="black", weight=3]; 5044[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5044 -> 5080[label="",style="solid", color="black", weight=3]; 5045[label="yvy79000",fontsize=16,color="green",shape="box"];5046[label="yvy80000",fontsize=16,color="green",shape="box"];5047[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5047 -> 5081[label="",style="solid", color="black", weight=3]; 5048[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5048 -> 5082[label="",style="solid", color="black", weight=3]; 5049[label="yvy79000",fontsize=16,color="green",shape="box"];5050[label="yvy80000",fontsize=16,color="green",shape="box"];5051[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5051 -> 5083[label="",style="solid", color="black", weight=3]; 5052[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5052 -> 5084[label="",style="solid", color="black", weight=3]; 5053[label="yvy79000",fontsize=16,color="green",shape="box"];5054[label="yvy80000",fontsize=16,color="green",shape="box"];5055[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5055 -> 5085[label="",style="solid", color="black", weight=3]; 5056[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5056 -> 5086[label="",style="solid", color="black", weight=3]; 4809[label="yvy1073",fontsize=16,color="green",shape="box"];4810[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 True",fontsize=16,color="black",shape="box"];4810 -> 4927[label="",style="solid", color="black", weight=3]; 4811 -> 4950[label="",style="dashed", color="red", weight=0]; 4811[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy1070 yvy1071 yvy1073 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1074 yvy54)",fontsize=16,color="magenta"];4811 -> 4991[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4992[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4993[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4994[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4995[label="",style="dashed", color="magenta", weight=3]; 4948[label="error []",fontsize=16,color="red",shape="box"];4949 -> 4950[label="",style="dashed", color="red", weight=0]; 4949[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy107 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];4949 -> 4996[label="",style="dashed", color="magenta", weight=3]; 4949 -> 4997[label="",style="dashed", color="magenta", weight=3]; 4949 -> 4998[label="",style="dashed", color="magenta", weight=3]; 4949 -> 4999[label="",style="dashed", color="magenta", weight=3]; 4949 -> 5000[label="",style="dashed", color="magenta", weight=3]; 5077[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5077 -> 5089[label="",style="solid", color="black", weight=3]; 5078[label="LT",fontsize=16,color="green",shape="box"];5079[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5079 -> 5090[label="",style="solid", color="black", weight=3]; 5080[label="LT",fontsize=16,color="green",shape="box"];5081[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5081 -> 5091[label="",style="solid", color="black", weight=3]; 5082[label="LT",fontsize=16,color="green",shape="box"];5083[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5083 -> 5092[label="",style="solid", color="black", weight=3]; 5084[label="LT",fontsize=16,color="green",shape="box"];5085[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5085 -> 5093[label="",style="solid", color="black", weight=3]; 5086[label="LT",fontsize=16,color="green",shape="box"];4927[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54",fontsize=16,color="burlywood",shape="box"];5941[label="yvy1074/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4927 -> 5941[label="",style="solid", color="burlywood", weight=9]; 5941 -> 5057[label="",style="solid", color="burlywood", weight=3]; 5942[label="yvy1074/FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744",fontsize=10,color="white",style="solid",shape="box"];4927 -> 5942[label="",style="solid", color="burlywood", weight=9]; 5942 -> 5058[label="",style="solid", color="burlywood", weight=3]; 4991[label="yvy1070",fontsize=16,color="green",shape="box"];4992 -> 4950[label="",style="dashed", color="red", weight=0]; 4992[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1074 yvy54",fontsize=16,color="magenta"];4992 -> 5059[label="",style="dashed", color="magenta", weight=3]; 4992 -> 5060[label="",style="dashed", color="magenta", weight=3]; 4992 -> 5061[label="",style="dashed", color="magenta", weight=3]; 4992 -> 5062[label="",style="dashed", color="magenta", weight=3]; 4992 -> 5063[label="",style="dashed", color="magenta", weight=3]; 4993[label="yvy1071",fontsize=16,color="green",shape="box"];4994[label="yvy1073",fontsize=16,color="green",shape="box"];4995[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4996[label="yvy5430",fontsize=16,color="green",shape="box"];4997 -> 4950[label="",style="dashed", color="red", weight=0]; 4997[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4997 -> 5064[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5065[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5066[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5067[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5068[label="",style="dashed", color="magenta", weight=3]; 4998[label="yvy5431",fontsize=16,color="green",shape="box"];4999 -> 4950[label="",style="dashed", color="red", weight=0]; 4999[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy107 yvy5433",fontsize=16,color="magenta"];4999 -> 5069[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5070[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5071[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5072[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5073[label="",style="dashed", color="magenta", weight=3]; 5000[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];5089[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5089 -> 5099[label="",style="solid", color="black", weight=3]; 5090[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5090 -> 5100[label="",style="solid", color="black", weight=3]; 5091[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5091 -> 5101[label="",style="solid", color="black", weight=3]; 5092[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5092 -> 5102[label="",style="solid", color="black", weight=3]; 5093[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5093 -> 5103[label="",style="solid", color="black", weight=3]; 5057[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 FiniteMap.EmptyFM) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];5057 -> 5087[label="",style="solid", color="black", weight=3]; 5058[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 (FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744)) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 (FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744)) yvy54",fontsize=16,color="black",shape="box"];5058 -> 5088[label="",style="solid", color="black", weight=3]; 5059[label="yvy50",fontsize=16,color="green",shape="box"];5060[label="yvy54",fontsize=16,color="green",shape="box"];5061[label="yvy51",fontsize=16,color="green",shape="box"];5062[label="yvy1074",fontsize=16,color="green",shape="box"];5063[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];5064[label="yvy540",fontsize=16,color="green",shape="box"];5065[label="yvy544",fontsize=16,color="green",shape="box"];5066[label="yvy541",fontsize=16,color="green",shape="box"];5067[label="yvy5434",fontsize=16,color="green",shape="box"];5068[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];5069[label="yvy50",fontsize=16,color="green",shape="box"];5070[label="yvy5433",fontsize=16,color="green",shape="box"];5071[label="yvy51",fontsize=16,color="green",shape="box"];5072[label="yvy107",fontsize=16,color="green",shape="box"];5073[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];5099[label="GT",fontsize=16,color="green",shape="box"];5100[label="GT",fontsize=16,color="green",shape="box"];5101[label="GT",fontsize=16,color="green",shape="box"];5102[label="GT",fontsize=16,color="green",shape="box"];5103[label="GT",fontsize=16,color="green",shape="box"];5087[label="error []",fontsize=16,color="red",shape="box"];5088 -> 4950[label="",style="dashed", color="red", weight=0]; 5088[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy10740 yvy10741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1070 yvy1071 yvy1073 yvy10743) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy10744 yvy54)",fontsize=16,color="magenta"];5088 -> 5094[label="",style="dashed", color="magenta", weight=3]; 5088 -> 5095[label="",style="dashed", color="magenta", weight=3]; 5088 -> 5096[label="",style="dashed", color="magenta", weight=3]; 5088 -> 5097[label="",style="dashed", color="magenta", weight=3]; 5088 -> 5098[label="",style="dashed", color="magenta", weight=3]; 5094[label="yvy10740",fontsize=16,color="green",shape="box"];5095 -> 4950[label="",style="dashed", color="red", weight=0]; 5095[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy10744 yvy54",fontsize=16,color="magenta"];5095 -> 5104[label="",style="dashed", color="magenta", weight=3]; 5095 -> 5105[label="",style="dashed", color="magenta", weight=3]; 5095 -> 5106[label="",style="dashed", color="magenta", weight=3]; 5095 -> 5107[label="",style="dashed", color="magenta", weight=3]; 5095 -> 5108[label="",style="dashed", color="magenta", weight=3]; 5096[label="yvy10741",fontsize=16,color="green",shape="box"];5097 -> 4950[label="",style="dashed", color="red", weight=0]; 5097[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1070 yvy1071 yvy1073 yvy10743",fontsize=16,color="magenta"];5097 -> 5109[label="",style="dashed", color="magenta", weight=3]; 5097 -> 5110[label="",style="dashed", color="magenta", weight=3]; 5097 -> 5111[label="",style="dashed", color="magenta", weight=3]; 5097 -> 5112[label="",style="dashed", color="magenta", weight=3]; 5097 -> 5113[label="",style="dashed", color="magenta", weight=3]; 5098[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];5104[label="yvy50",fontsize=16,color="green",shape="box"];5105[label="yvy54",fontsize=16,color="green",shape="box"];5106[label="yvy51",fontsize=16,color="green",shape="box"];5107[label="yvy10744",fontsize=16,color="green",shape="box"];5108[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];5109[label="yvy1070",fontsize=16,color="green",shape="box"];5110[label="yvy10743",fontsize=16,color="green",shape="box"];5111[label="yvy1071",fontsize=16,color="green",shape="box"];5112[label="yvy1073",fontsize=16,color="green",shape="box"];5113[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat(yvy79000, yvy80000) 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(yvy79000), Succ(yvy80000)) -> new_primCmpNat(yvy79000, yvy80000) 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_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ceg), ceh), cfa) -> new_ltEs7(yvy79000, yvy80000, ceg, ceh) new_ltEs7(Right(yvy79000), Left(yvy80000), cgb, cfa) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgf)) -> new_esEs13(yvy4001, yvy3001, dgf) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cag)) -> new_ltEs17(yvy79001, yvy80001, cag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_ltEs9(yvy79000, yvy80000, cfb, cfc, cfd) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcd) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), bbg, bbh) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bbg, bbh) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy400, yvy500, bbd, bbe, bbf) new_ltEs16(Nothing, Nothing, bcg) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhd), bhe)) -> new_ltEs5(yvy7900, yvy8000, bhd, bhe) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, hf), hg)) -> new_esEs6(yvy4000, yvy3000, hf, hg) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_ltEs16(Just(yvy79000), Nothing, bcg) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Maybe, chc)) -> new_ltEs16(yvy79000, yvy80000, chc) new_compare111(yvy226, yvy227, True, bcb, bcc) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhe)) -> new_esEs7(yvy4000, yvy3000, dhe) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bcg)) -> new_ltEs16(yvy7900, yvy8000, bcg) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfh), cfa) -> new_ltEs16(yvy79000, yvy80000, cfh) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ceb), cec)) -> new_compare9(yvy79000, yvy80000, ceb, cec) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(yvy79000, yvy80000, bdb, bdc, bdd) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfa) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(yvy4000, yvy3000, gf, gg, gh) new_esEs27(yvy4001, yvy3001, app(ty_[], dhb)) -> new_esEs17(yvy4001, yvy3001, dhb) new_lt5(yvy79000, yvy80000, app(ty_[], cca)) -> new_lt17(yvy79000, yvy80000, cca) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_lt6(yvy79000, yvy80000, beb, bec) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_lt10(yvy79000, yvy80000, cbe, cbf) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_compare16(yvy79000, yvy80000, cdg, cdh, cea) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4000, yvy3000, ccf, ccg, cch) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_lt6(yvy79001, yvy80001, bga, bgb) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy79000, yvy80000, cbe, cbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bdg)) -> new_ltEs12(yvy79000, yvy80000, bdg) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, da, db) -> new_esEs9(new_compare30(yvy35, yvy30, da, db), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, chg), chh)) -> new_ltEs7(yvy7900, yvy8000, chg, chh) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], cef)) -> new_compare0(yvy79000, yvy80000, cef) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(yvy35, yvy30, dg, dh, ea) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(yvy4001, yvy3001, fc, fd, ff) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bfd), bfe)) -> new_ltEs5(yvy79002, yvy80002, bfd, bfe) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, ce, cf) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, ce, cf), ce, cf) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, beb, bec) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, beb, bec), beb, bec) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt8(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs5(yvy79000, yvy80000, bah, bba, bbb) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbd), dbe), bbh) -> new_esEs6(yvy4000, yvy3000, dbd, dbe) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, dad), dae)) -> new_ltEs5(yvy7900, yvy8000, dad, dae) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy400, yvy500, bg, bh, ca) new_compare110(yvy79000, yvy80000, True, ce, cf) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs5(yvy79001, yvy80001, bgc, bgd, bge) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhf), bhg)) -> new_ltEs7(yvy79001, yvy80001, bhf, bhg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfa) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs5(yvy4000, yvy3000, baa, bab, bac) new_lt12(yvy79000, yvy80000, cg) -> new_esEs9(new_compare18(yvy79000, yvy80000, cg), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bbh) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgb), cfa)) -> new_ltEs7(yvy7900, yvy8000, cgb, cfa) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bbc) -> False new_esEs7(Just(yvy4000), Nothing, bbc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Ratio, dch)) -> new_esEs13(yvy4000, yvy3000, dch) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, dba, dbb) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cac), cad)) -> new_ltEs5(yvy79001, yvy80001, cac, cad) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bae), baf)) -> new_esEs4(yvy4000, yvy3000, bae, baf) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_esEs7(yvy79000, yvy80000, cbh) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hd) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcd) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(yvy79002, yvy80002, bfa, bfb, bfc) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cae)) -> new_ltEs12(yvy79001, yvy80001, cae) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfe), cff), cfa) -> new_ltEs5(yvy79000, yvy80000, cfe, cff) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bah, bba, bbb) -> LT new_esEs7(Nothing, Nothing, bbc) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs30(yvy400, yvy500, app(ty_[], cb)) -> new_esEs17(yvy400, yvy500, cb) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_esEs6(yvy79001, yvy80001, bgf, bgg) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, cee)) -> new_compare7(yvy79000, yvy80000, cee) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, ec), ed)) -> new_esEs4(yvy35, yvy30, ec, ed) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, ce, cf) -> new_esEs9(new_compare9(yvy79000, yvy80000, ce, cf), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bbh) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfa) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bbh) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_esEs7(yvy79000, yvy80000, bcd) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_Either, cgc), cgd)) -> new_ltEs7(yvy79000, yvy80000, cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfb), dfc)) -> new_esEs6(yvy4002, yvy3002, dfb, dfc) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bbh) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bff)) -> new_ltEs12(yvy79002, yvy80002, bff) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs9(yvy79001, yvy80001, bhh, caa, cab) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bah, bba, bbb) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, che, chf) -> GT new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bed, bee, bef) -> new_pePe(new_lt20(yvy79000, yvy80000, bed), new_asAs(new_esEs25(yvy79000, yvy80000, bed), new_pePe(new_lt19(yvy79001, yvy80001, bee), new_asAs(new_esEs24(yvy79001, yvy80001, bee), new_ltEs21(yvy79002, yvy80002, bef))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ead)) -> new_esEs17(yvy4000, yvy3000, ead) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_esEs4(yvy79000, yvy80000, cah, cba) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs5(yvy20, yvy15, dec, ded, dee) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dag)) -> new_ltEs16(yvy7900, yvy8000, dag) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bea)) -> new_ltEs17(yvy79000, yvy80000, bea) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bbh) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, deg), deh)) -> new_esEs4(yvy20, yvy15, deg, deh) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfa) -> new_ltEs10(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, app(ty_[], hd)) -> new_esEs17(yvy400, yvy500, hd) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs9(yvy7900, yvy8000, bed, bee, bef) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4000, yvy3000, ccc, ccd) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cfg), cfa) -> new_ltEs12(yvy79000, yvy80000, cfg) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy4000, yvy3000, dda, ddb, ddc) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_esEs7(yvy79001, yvy80001, bha) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bfg)) -> new_ltEs16(yvy79002, yvy80002, bfg) new_esEs32(yvy20, yvy15, app(ty_Ratio, deb)) -> new_esEs13(yvy20, yvy15, deb) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdh)) -> new_ltEs16(yvy79000, yvy80000, bdh) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdd)) -> new_ltEs17(yvy7900, yvy8000, cdd) new_compare27(yvy79000, yvy80000, False, ce, cf) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, ce, cf), ce, cf) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcb), bbh) -> new_esEs17(yvy4000, yvy3000, dcb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_esEs6(yvy79000, yvy80000, ce, cf) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, hh)) -> new_esEs13(yvy4000, yvy3000, hh) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dah)) -> new_ltEs17(yvy7900, yvy8000, dah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, caf)) -> new_ltEs16(yvy79001, yvy80001, caf) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfa) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_lt6(yvy79000, yvy80000, cah, cba) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgb, cfa) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, daa), dab), dac)) -> new_ltEs9(yvy7900, yvy8000, daa, dab, dac) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfa) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, che, chf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, che), che, chf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], eb)) -> new_esEs17(yvy35, yvy30, eb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfa) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhc)) -> new_lt17(yvy79000, yvy80000, bhc) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbc), bbh) -> new_esEs7(yvy4000, yvy3000, dbc) new_compare31(yvy20, yvy15, bce, bcf) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bce), bce, bcf) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs13(yvy79000, yvy80000, cbg) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bah, bba, bbb) -> new_esEs9(new_compare16(yvy79000, yvy80000, bah, bba, bbb), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_lt10(yvy79001, yvy80001, bgf, bgg) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ge)) -> new_esEs13(yvy4000, yvy3000, ge) new_ltEs12(yvy7900, yvy8000, bca) -> new_fsEs(new_compare18(yvy7900, yvy8000, bca)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_esEs13(yvy79000, yvy80000, cg) new_ltEs21(yvy79002, yvy80002, app(ty_[], bfh)) -> new_ltEs17(yvy79002, yvy80002, bfh) new_compare0([], :(yvy80000, yvy80001), cdd) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], fg)) -> new_esEs17(yvy4001, yvy3001, fg) new_esEs25(yvy79000, yvy80000, app(ty_[], bhc)) -> new_esEs17(yvy79000, yvy80000, bhc) new_lt20(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_lt10(yvy79000, yvy80000, ce, cf) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], cca)) -> new_esEs17(yvy79000, yvy80000, cca) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_@2, cgh), cha)) -> new_ltEs5(yvy79000, yvy80000, cgh, cha) new_primCompAux0(yvy79000, yvy80000, yvy256, cdd) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdd)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcc), dcd), bbh) -> new_esEs4(yvy4000, yvy3000, dcc, dcd) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fb)) -> new_esEs13(yvy4001, yvy3001, fb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, dce)) -> new_esEs7(yvy4000, yvy3000, dce) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, dcf), dcg)) -> new_esEs6(yvy4000, yvy3000, dcf, dcg) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bbh) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bcb, bcc) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, df)) -> new_esEs13(yvy35, yvy30, df) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cga), cfa) -> new_ltEs17(yvy79000, yvy80000, cga) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdd) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hb), hc)) -> new_esEs4(yvy4000, yvy3000, hb, hc) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, fh), ga)) -> new_esEs4(yvy4001, yvy3001, fh, ga) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, beg), beh)) -> new_ltEs7(yvy79002, yvy80002, beg, beh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy4001, yvy3001, dgd, dge) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcd) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcd), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs23(yvy4000, yvy3000, bag), new_esEs22(yvy4001, yvy3001, bag)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ee, ef) -> new_asAs(new_esEs20(yvy4000, yvy3000, ee), new_esEs19(yvy4001, yvy3001, ef)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdd) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdd)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dc)) -> new_esEs7(yvy35, yvy30, dc) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bah, bba, bbb) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy79000, yvy80000, beb, bec) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt8(yvy79000, yvy80000, bah, bba, bbb) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], ha)) -> new_esEs17(yvy4000, yvy3000, ha) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, app(ty_Ratio, bf)) -> new_esEs13(yvy400, yvy500, bf) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhd, bhe) -> new_pePe(new_lt5(yvy79000, yvy80000, bhd), new_asAs(new_esEs10(yvy79000, yvy80000, bhd), new_ltEs6(yvy79001, yvy80001, bhe))) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, dde), ddf)) -> new_esEs4(yvy4000, yvy3000, dde, ddf) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bbh) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_esEs13(yvy79001, yvy80001, bgh) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhf), dhg)) -> new_esEs6(yvy4000, yvy3000, dhf, dhg) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bad)) -> new_esEs17(yvy4000, yvy3000, bad) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs29(yvy400, yvy500, app(app(ty_Either, bbg), bbh)) -> new_esEs4(yvy400, yvy500, bbg, bbh) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, daf)) -> new_ltEs12(yvy7900, yvy8000, daf) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_esEs29(yvy400, yvy500, app(ty_Ratio, bag)) -> new_esEs13(yvy400, yvy500, bag) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, he)) -> new_esEs7(yvy4000, yvy3000, he) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bch), bda)) -> new_ltEs7(yvy79000, yvy80000, bch, bda) new_ltEs16(Nothing, Just(yvy80000), bcg) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, che, chf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chf), che, chf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, che, chf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bah, bba, bbb) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bde), bdf)) -> new_ltEs5(yvy79000, yvy80000, bde, bdf) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt8(yvy79001, yvy80001, bgc, bgd, bge) new_esEs32(yvy20, yvy15, app(ty_Maybe, ddg)) -> new_esEs7(yvy20, yvy15, ddg) new_esEs32(yvy20, yvy15, app(ty_[], def)) -> new_esEs17(yvy20, yvy15, def) new_esEs26(yvy4002, yvy3002, app(ty_[], dfh)) -> new_esEs17(yvy4002, yvy3002, dfh) new_esEs30(yvy400, yvy500, app(app(ty_Either, cc), cd)) -> new_esEs4(yvy400, yvy500, cc, cd) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, beb, bec) -> new_esEs9(new_compare14(yvy79000, yvy80000, beb, bec), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_esEs4(yvy79001, yvy80001, bga, bgb) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bca)) -> new_ltEs12(yvy7900, yvy8000, bca) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfa)) -> new_esEs7(yvy4002, yvy3002, dfa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_lt12(yvy79000, yvy80000, cg) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_lt16(yvy79001, yvy80001, bha) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cde), cdf)) -> new_compare14(yvy79000, yvy80000, cde, cdf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgc)) -> new_esEs7(yvy4001, yvy3001, dgc) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dba, dbb) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfa) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(app(ty_@3, cge), cgf), cgg)) -> new_ltEs9(yvy79000, yvy80000, cge, cgf, cgg) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cce)) -> new_esEs13(yvy4000, yvy3000, cce) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, da, db) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, db), da, db) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, dhh)) -> new_esEs13(yvy4000, yvy3000, dhh) new_esEs24(yvy79001, yvy80001, app(ty_[], bhb)) -> new_esEs17(yvy79001, yvy80001, bhb) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gb)) -> new_esEs7(yvy4000, yvy3000, gb) new_esEs30(yvy400, yvy500, app(app(ty_@2, bd), be)) -> new_esEs6(yvy400, yvy500, bd, be) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdd) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbf), bbh) -> new_esEs13(yvy4000, yvy3000, dbf) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gc), gd)) -> new_esEs6(yvy4000, yvy3000, gc, gd) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs5(yvy4000, yvy3000, eaa, eab, eac) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, ce, cf) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcd) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt12(yvy79000, yvy80000, cbg) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcd) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcd), bcd) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, eg)) -> new_esEs7(yvy4001, yvy3001, eg) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs29(yvy400, yvy500, app(app(ty_@2, ee), ef)) -> new_esEs6(yvy400, yvy500, ee, ef) new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_lt12(yvy79001, yvy80001, bgh) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdd) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdd), cdd) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhc) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhc), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bbh) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eae), eaf)) -> new_esEs4(yvy4000, yvy3000, eae, eaf) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, ddh), dea)) -> new_esEs6(yvy20, yvy15, ddh, dea) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs30(yvy400, yvy500, app(ty_Maybe, bc)) -> new_esEs7(yvy400, yvy500, bc) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dga), dgb)) -> new_esEs4(yvy4002, yvy3002, dga, dgb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_lt16(yvy79000, yvy80000, cbh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Ratio, chb)) -> new_ltEs12(yvy79000, yvy80000, chb) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, ced)) -> new_compare18(yvy79000, yvy80000, ced) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcd) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcd), bcd) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, che, chf) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs5(yvy4002, yvy3002, dfe, dff, dfg) new_lt19(yvy79001, yvy80001, app(ty_[], bhb)) -> new_lt17(yvy79001, yvy80001, bhb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], ddd)) -> new_esEs17(yvy4000, yvy3000, ddd) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, eh), fa)) -> new_esEs6(yvy4001, yvy3001, eh, fa) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_[], chd)) -> new_ltEs17(yvy79000, yvy80000, chd) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_lt16(yvy79000, yvy80000, bcd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dbg), dbh), dca), bbh) -> new_esEs5(yvy4000, yvy3000, dbg, dbh, dca) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bbd, bbe, bbf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bbd), new_asAs(new_esEs27(yvy4001, yvy3001, bbe), new_esEs26(yvy4002, yvy3002, bbf))) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cda)) -> new_esEs17(yvy4000, yvy3000, cda) new_compare110(yvy79000, yvy80000, False, ce, cf) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dd), de)) -> new_esEs6(yvy35, yvy30, dd, de) new_esEs17(:(yvy4000, yvy4001), [], hd) -> False new_esEs17([], :(yvy3000, yvy3001), hd) -> False new_asAs(False, yvy221) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dfd)) -> new_esEs13(yvy4002, yvy3002, dfd) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs17(yvy4001, yvy3001, hd)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_Maybe, bbc)) -> new_esEs7(yvy400, yvy500, bbc) new_compare16(yvy79000, yvy80000, bah, bba, bbb) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhc), dhd)) -> new_esEs4(yvy4001, yvy3001, dhc, dhd) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_gt(yvy20, yvy15, bce, bcf) -> new_esEs9(new_compare31(yvy20, yvy15, bce, bcf), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs5(yvy4001, yvy3001, dgg, dgh, dha) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_gt2(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_compare110(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_ltEs17(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(LT, LT) new_primPlusNat1(Zero, Zero) new_esEs30(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs15(x0, x1) new_esEs17([], :(x0, x1), x2) new_primCmpNat1(Zero, Zero) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs30(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_primCompAux00(x0, GT) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_compare29(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Integer) new_compare13(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, x4) new_esEs7(Nothing, Just(x0), x1) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs14(True, True) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare17(@0, @0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpNat1(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_compare27(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(x0, Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt17(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare0(:(x0, x1), [], x2) new_ltEs16(Nothing, Just(x0), x1) new_esEs20(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_esEs30(x0, x1, ty_@0) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_compare112(x0, x1, False, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_compare113(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare114(x0, x1, False) new_esEs30(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, True, x2) new_compare112(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_ltEs12(x0, x1, x2) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_lt8(x0, x1, x2, x3, x4) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_Float) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_compare28(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_lt12(x0, x1, x2) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs21(x0, x1, ty_Int) new_compare13(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Nothing, Nothing, x0) new_pePe(False, x0) new_esEs29(x0, x1, ty_Double) new_ltEs14(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, x2, x3) new_primCmpNat1(Zero, Succ(x0)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt10(x0, x1, x2, x3) new_lt7(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_lt19(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_not(True) new_compare210(x0, x1, True) new_compare27(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs13(False, False) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, x2, x3) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(Nothing, Nothing, x0) new_lt19(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs4(EQ, EQ) new_esEs30(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(GT, GT) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, False, x2) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt6(x0, x1, x2, x3) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_compare9(x0, x1, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, x1, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_compare110(x0, x1, False, x2, x3) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_compare11(x0, x1, False, x2, x3, x4) new_not(False) new_lt5(x0, x1, ty_Int) new_compare7(x0, x1, x2) new_esEs25(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_@0) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_compare30(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_gt(x0, x1, x2, x3) new_lt5(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs20(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_esEs5(@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_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_esEs7(Just(x0), Nothing, x1) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Just(x0), Nothing, x1) new_lt19(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 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_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ceg), ceh), cfa) -> new_ltEs7(yvy79000, yvy80000, ceg, ceh) new_ltEs7(Right(yvy79000), Left(yvy80000), cgb, cfa) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgf)) -> new_esEs13(yvy4001, yvy3001, dgf) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cag)) -> new_ltEs17(yvy79001, yvy80001, cag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_ltEs9(yvy79000, yvy80000, cfb, cfc, cfd) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcd) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), bbg, bbh) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bbg, bbh) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy400, yvy500, bbd, bbe, bbf) new_ltEs16(Nothing, Nothing, bcg) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhd), bhe)) -> new_ltEs5(yvy7900, yvy8000, bhd, bhe) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, hf), hg)) -> new_esEs6(yvy4000, yvy3000, hf, hg) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_ltEs16(Just(yvy79000), Nothing, bcg) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Maybe, chc)) -> new_ltEs16(yvy79000, yvy80000, chc) new_compare111(yvy226, yvy227, True, bcb, bcc) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhe)) -> new_esEs7(yvy4000, yvy3000, dhe) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bcg)) -> new_ltEs16(yvy7900, yvy8000, bcg) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfh), cfa) -> new_ltEs16(yvy79000, yvy80000, cfh) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ceb), cec)) -> new_compare9(yvy79000, yvy80000, ceb, cec) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(yvy79000, yvy80000, bdb, bdc, bdd) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfa) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(yvy4000, yvy3000, gf, gg, gh) new_esEs27(yvy4001, yvy3001, app(ty_[], dhb)) -> new_esEs17(yvy4001, yvy3001, dhb) new_lt5(yvy79000, yvy80000, app(ty_[], cca)) -> new_lt17(yvy79000, yvy80000, cca) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_lt6(yvy79000, yvy80000, beb, bec) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_lt10(yvy79000, yvy80000, cbe, cbf) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_compare16(yvy79000, yvy80000, cdg, cdh, cea) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4000, yvy3000, ccf, ccg, cch) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_lt6(yvy79001, yvy80001, bga, bgb) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy79000, yvy80000, cbe, cbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bdg)) -> new_ltEs12(yvy79000, yvy80000, bdg) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, da, db) -> new_esEs9(new_compare30(yvy35, yvy30, da, db), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, chg), chh)) -> new_ltEs7(yvy7900, yvy8000, chg, chh) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], cef)) -> new_compare0(yvy79000, yvy80000, cef) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(yvy35, yvy30, dg, dh, ea) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(yvy4001, yvy3001, fc, fd, ff) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bfd), bfe)) -> new_ltEs5(yvy79002, yvy80002, bfd, bfe) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, ce, cf) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, ce, cf), ce, cf) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, beb, bec) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, beb, bec), beb, bec) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt8(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs5(yvy79000, yvy80000, bah, bba, bbb) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbd), dbe), bbh) -> new_esEs6(yvy4000, yvy3000, dbd, dbe) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, dad), dae)) -> new_ltEs5(yvy7900, yvy8000, dad, dae) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy400, yvy500, bg, bh, ca) new_compare110(yvy79000, yvy80000, True, ce, cf) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs5(yvy79001, yvy80001, bgc, bgd, bge) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhf), bhg)) -> new_ltEs7(yvy79001, yvy80001, bhf, bhg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfa) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs5(yvy4000, yvy3000, baa, bab, bac) new_lt12(yvy79000, yvy80000, cg) -> new_esEs9(new_compare18(yvy79000, yvy80000, cg), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bbh) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgb), cfa)) -> new_ltEs7(yvy7900, yvy8000, cgb, cfa) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bbc) -> False new_esEs7(Just(yvy4000), Nothing, bbc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Ratio, dch)) -> new_esEs13(yvy4000, yvy3000, dch) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, dba, dbb) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cac), cad)) -> new_ltEs5(yvy79001, yvy80001, cac, cad) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bae), baf)) -> new_esEs4(yvy4000, yvy3000, bae, baf) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_esEs7(yvy79000, yvy80000, cbh) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hd) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcd) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(yvy79002, yvy80002, bfa, bfb, bfc) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cae)) -> new_ltEs12(yvy79001, yvy80001, cae) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfe), cff), cfa) -> new_ltEs5(yvy79000, yvy80000, cfe, cff) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bah, bba, bbb) -> LT new_esEs7(Nothing, Nothing, bbc) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs30(yvy400, yvy500, app(ty_[], cb)) -> new_esEs17(yvy400, yvy500, cb) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_esEs6(yvy79001, yvy80001, bgf, bgg) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, cee)) -> new_compare7(yvy79000, yvy80000, cee) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, ec), ed)) -> new_esEs4(yvy35, yvy30, ec, ed) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, ce, cf) -> new_esEs9(new_compare9(yvy79000, yvy80000, ce, cf), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bbh) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfa) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bbh) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_esEs7(yvy79000, yvy80000, bcd) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_Either, cgc), cgd)) -> new_ltEs7(yvy79000, yvy80000, cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfb), dfc)) -> new_esEs6(yvy4002, yvy3002, dfb, dfc) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bbh) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bff)) -> new_ltEs12(yvy79002, yvy80002, bff) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs9(yvy79001, yvy80001, bhh, caa, cab) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bah, bba, bbb) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, che, chf) -> GT new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bed, bee, bef) -> new_pePe(new_lt20(yvy79000, yvy80000, bed), new_asAs(new_esEs25(yvy79000, yvy80000, bed), new_pePe(new_lt19(yvy79001, yvy80001, bee), new_asAs(new_esEs24(yvy79001, yvy80001, bee), new_ltEs21(yvy79002, yvy80002, bef))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ead)) -> new_esEs17(yvy4000, yvy3000, ead) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_esEs4(yvy79000, yvy80000, cah, cba) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs5(yvy20, yvy15, dec, ded, dee) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dag)) -> new_ltEs16(yvy7900, yvy8000, dag) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bea)) -> new_ltEs17(yvy79000, yvy80000, bea) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bbh) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, deg), deh)) -> new_esEs4(yvy20, yvy15, deg, deh) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfa) -> new_ltEs10(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, app(ty_[], hd)) -> new_esEs17(yvy400, yvy500, hd) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs9(yvy7900, yvy8000, bed, bee, bef) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4000, yvy3000, ccc, ccd) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cfg), cfa) -> new_ltEs12(yvy79000, yvy80000, cfg) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy4000, yvy3000, dda, ddb, ddc) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_esEs7(yvy79001, yvy80001, bha) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bfg)) -> new_ltEs16(yvy79002, yvy80002, bfg) new_esEs32(yvy20, yvy15, app(ty_Ratio, deb)) -> new_esEs13(yvy20, yvy15, deb) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdh)) -> new_ltEs16(yvy79000, yvy80000, bdh) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdd)) -> new_ltEs17(yvy7900, yvy8000, cdd) new_compare27(yvy79000, yvy80000, False, ce, cf) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, ce, cf), ce, cf) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcb), bbh) -> new_esEs17(yvy4000, yvy3000, dcb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_esEs6(yvy79000, yvy80000, ce, cf) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, hh)) -> new_esEs13(yvy4000, yvy3000, hh) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dah)) -> new_ltEs17(yvy7900, yvy8000, dah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, caf)) -> new_ltEs16(yvy79001, yvy80001, caf) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfa) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_lt6(yvy79000, yvy80000, cah, cba) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgb, cfa) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, daa), dab), dac)) -> new_ltEs9(yvy7900, yvy8000, daa, dab, dac) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfa) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, che, chf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, che), che, chf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], eb)) -> new_esEs17(yvy35, yvy30, eb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfa) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhc)) -> new_lt17(yvy79000, yvy80000, bhc) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbc), bbh) -> new_esEs7(yvy4000, yvy3000, dbc) new_compare31(yvy20, yvy15, bce, bcf) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bce), bce, bcf) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs13(yvy79000, yvy80000, cbg) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bah, bba, bbb) -> new_esEs9(new_compare16(yvy79000, yvy80000, bah, bba, bbb), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_lt10(yvy79001, yvy80001, bgf, bgg) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ge)) -> new_esEs13(yvy4000, yvy3000, ge) new_ltEs12(yvy7900, yvy8000, bca) -> new_fsEs(new_compare18(yvy7900, yvy8000, bca)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_esEs13(yvy79000, yvy80000, cg) new_ltEs21(yvy79002, yvy80002, app(ty_[], bfh)) -> new_ltEs17(yvy79002, yvy80002, bfh) new_compare0([], :(yvy80000, yvy80001), cdd) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], fg)) -> new_esEs17(yvy4001, yvy3001, fg) new_esEs25(yvy79000, yvy80000, app(ty_[], bhc)) -> new_esEs17(yvy79000, yvy80000, bhc) new_lt20(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_lt10(yvy79000, yvy80000, ce, cf) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], cca)) -> new_esEs17(yvy79000, yvy80000, cca) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_@2, cgh), cha)) -> new_ltEs5(yvy79000, yvy80000, cgh, cha) new_primCompAux0(yvy79000, yvy80000, yvy256, cdd) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdd)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcc), dcd), bbh) -> new_esEs4(yvy4000, yvy3000, dcc, dcd) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fb)) -> new_esEs13(yvy4001, yvy3001, fb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, dce)) -> new_esEs7(yvy4000, yvy3000, dce) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, dcf), dcg)) -> new_esEs6(yvy4000, yvy3000, dcf, dcg) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bbh) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bcb, bcc) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, df)) -> new_esEs13(yvy35, yvy30, df) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cga), cfa) -> new_ltEs17(yvy79000, yvy80000, cga) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdd) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hb), hc)) -> new_esEs4(yvy4000, yvy3000, hb, hc) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, fh), ga)) -> new_esEs4(yvy4001, yvy3001, fh, ga) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, beg), beh)) -> new_ltEs7(yvy79002, yvy80002, beg, beh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy4001, yvy3001, dgd, dge) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcd) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcd), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs23(yvy4000, yvy3000, bag), new_esEs22(yvy4001, yvy3001, bag)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ee, ef) -> new_asAs(new_esEs20(yvy4000, yvy3000, ee), new_esEs19(yvy4001, yvy3001, ef)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdd) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdd)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dc)) -> new_esEs7(yvy35, yvy30, dc) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bah, bba, bbb) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy79000, yvy80000, beb, bec) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt8(yvy79000, yvy80000, bah, bba, bbb) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], ha)) -> new_esEs17(yvy4000, yvy3000, ha) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, app(ty_Ratio, bf)) -> new_esEs13(yvy400, yvy500, bf) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhd, bhe) -> new_pePe(new_lt5(yvy79000, yvy80000, bhd), new_asAs(new_esEs10(yvy79000, yvy80000, bhd), new_ltEs6(yvy79001, yvy80001, bhe))) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, dde), ddf)) -> new_esEs4(yvy4000, yvy3000, dde, ddf) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bbh) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_esEs13(yvy79001, yvy80001, bgh) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhf), dhg)) -> new_esEs6(yvy4000, yvy3000, dhf, dhg) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bad)) -> new_esEs17(yvy4000, yvy3000, bad) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs29(yvy400, yvy500, app(app(ty_Either, bbg), bbh)) -> new_esEs4(yvy400, yvy500, bbg, bbh) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, daf)) -> new_ltEs12(yvy7900, yvy8000, daf) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_esEs29(yvy400, yvy500, app(ty_Ratio, bag)) -> new_esEs13(yvy400, yvy500, bag) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, he)) -> new_esEs7(yvy4000, yvy3000, he) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bch), bda)) -> new_ltEs7(yvy79000, yvy80000, bch, bda) new_ltEs16(Nothing, Just(yvy80000), bcg) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, che, chf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chf), che, chf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, che, chf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bah, bba, bbb) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bde), bdf)) -> new_ltEs5(yvy79000, yvy80000, bde, bdf) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt8(yvy79001, yvy80001, bgc, bgd, bge) new_esEs32(yvy20, yvy15, app(ty_Maybe, ddg)) -> new_esEs7(yvy20, yvy15, ddg) new_esEs32(yvy20, yvy15, app(ty_[], def)) -> new_esEs17(yvy20, yvy15, def) new_esEs26(yvy4002, yvy3002, app(ty_[], dfh)) -> new_esEs17(yvy4002, yvy3002, dfh) new_esEs30(yvy400, yvy500, app(app(ty_Either, cc), cd)) -> new_esEs4(yvy400, yvy500, cc, cd) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, beb, bec) -> new_esEs9(new_compare14(yvy79000, yvy80000, beb, bec), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_esEs4(yvy79001, yvy80001, bga, bgb) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bca)) -> new_ltEs12(yvy7900, yvy8000, bca) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfa)) -> new_esEs7(yvy4002, yvy3002, dfa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_lt12(yvy79000, yvy80000, cg) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_lt16(yvy79001, yvy80001, bha) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cde), cdf)) -> new_compare14(yvy79000, yvy80000, cde, cdf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgc)) -> new_esEs7(yvy4001, yvy3001, dgc) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dba, dbb) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfa) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(app(ty_@3, cge), cgf), cgg)) -> new_ltEs9(yvy79000, yvy80000, cge, cgf, cgg) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cce)) -> new_esEs13(yvy4000, yvy3000, cce) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, da, db) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, db), da, db) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, dhh)) -> new_esEs13(yvy4000, yvy3000, dhh) new_esEs24(yvy79001, yvy80001, app(ty_[], bhb)) -> new_esEs17(yvy79001, yvy80001, bhb) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gb)) -> new_esEs7(yvy4000, yvy3000, gb) new_esEs30(yvy400, yvy500, app(app(ty_@2, bd), be)) -> new_esEs6(yvy400, yvy500, bd, be) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdd) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbf), bbh) -> new_esEs13(yvy4000, yvy3000, dbf) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gc), gd)) -> new_esEs6(yvy4000, yvy3000, gc, gd) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs5(yvy4000, yvy3000, eaa, eab, eac) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, ce, cf) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcd) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt12(yvy79000, yvy80000, cbg) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcd) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcd), bcd) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, eg)) -> new_esEs7(yvy4001, yvy3001, eg) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs29(yvy400, yvy500, app(app(ty_@2, ee), ef)) -> new_esEs6(yvy400, yvy500, ee, ef) new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_lt12(yvy79001, yvy80001, bgh) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdd) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdd), cdd) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhc) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhc), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bbh) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eae), eaf)) -> new_esEs4(yvy4000, yvy3000, eae, eaf) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, ddh), dea)) -> new_esEs6(yvy20, yvy15, ddh, dea) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs30(yvy400, yvy500, app(ty_Maybe, bc)) -> new_esEs7(yvy400, yvy500, bc) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dga), dgb)) -> new_esEs4(yvy4002, yvy3002, dga, dgb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_lt16(yvy79000, yvy80000, cbh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Ratio, chb)) -> new_ltEs12(yvy79000, yvy80000, chb) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, ced)) -> new_compare18(yvy79000, yvy80000, ced) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcd) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcd), bcd) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, che, chf) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs5(yvy4002, yvy3002, dfe, dff, dfg) new_lt19(yvy79001, yvy80001, app(ty_[], bhb)) -> new_lt17(yvy79001, yvy80001, bhb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], ddd)) -> new_esEs17(yvy4000, yvy3000, ddd) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, eh), fa)) -> new_esEs6(yvy4001, yvy3001, eh, fa) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_[], chd)) -> new_ltEs17(yvy79000, yvy80000, chd) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_lt16(yvy79000, yvy80000, bcd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dbg), dbh), dca), bbh) -> new_esEs5(yvy4000, yvy3000, dbg, dbh, dca) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bbd, bbe, bbf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bbd), new_asAs(new_esEs27(yvy4001, yvy3001, bbe), new_esEs26(yvy4002, yvy3002, bbf))) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cda)) -> new_esEs17(yvy4000, yvy3000, cda) new_compare110(yvy79000, yvy80000, False, ce, cf) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dd), de)) -> new_esEs6(yvy35, yvy30, dd, de) new_esEs17(:(yvy4000, yvy4001), [], hd) -> False new_esEs17([], :(yvy3000, yvy3001), hd) -> False new_asAs(False, yvy221) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dfd)) -> new_esEs13(yvy4002, yvy3002, dfd) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs17(yvy4001, yvy3001, hd)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_Maybe, bbc)) -> new_esEs7(yvy400, yvy500, bbc) new_compare16(yvy79000, yvy80000, bah, bba, bbb) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhc), dhd)) -> new_esEs4(yvy4001, yvy3001, dhc, dhd) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_gt(yvy20, yvy15, bce, bcf) -> new_esEs9(new_compare31(yvy20, yvy15, bce, bcf), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs5(yvy4001, yvy3001, dgg, dgh, dha) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_gt2(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_compare110(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_ltEs17(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(LT, LT) new_primPlusNat1(Zero, Zero) new_esEs30(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs15(x0, x1) new_esEs17([], :(x0, x1), x2) new_primCmpNat1(Zero, Zero) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs30(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_primCompAux00(x0, GT) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_compare29(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Integer) new_compare13(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, x4) new_esEs7(Nothing, Just(x0), x1) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs14(True, True) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare17(@0, @0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpNat1(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_compare27(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(x0, Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt17(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare0(:(x0, x1), [], x2) new_ltEs16(Nothing, Just(x0), x1) new_esEs20(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_esEs30(x0, x1, ty_@0) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_compare112(x0, x1, False, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_compare113(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare114(x0, x1, False) new_esEs30(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, True, x2) new_compare112(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_ltEs12(x0, x1, x2) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_lt8(x0, x1, x2, x3, x4) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_Float) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_compare28(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_lt12(x0, x1, x2) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs21(x0, x1, ty_Int) new_compare13(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Nothing, Nothing, x0) new_pePe(False, x0) new_esEs29(x0, x1, ty_Double) new_ltEs14(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, x2, x3) new_primCmpNat1(Zero, Succ(x0)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt10(x0, x1, x2, x3) new_lt7(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_lt19(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_not(True) new_compare210(x0, x1, True) new_compare27(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs13(False, False) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, x2, x3) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(Nothing, Nothing, x0) new_lt19(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs4(EQ, EQ) new_esEs30(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(GT, GT) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, False, x2) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt6(x0, x1, x2, x3) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_compare9(x0, x1, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, x1, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_compare110(x0, x1, False, x2, x3) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_compare11(x0, x1, False, x2, x3, x4) new_not(False) new_lt5(x0, x1, ty_Int) new_compare7(x0, x1, x2) new_esEs25(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_@0) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_compare30(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_gt(x0, x1, x2, x3) new_lt5(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs20(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_esEs5(@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_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_esEs7(Just(x0), Nothing, x1) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Just(x0), Nothing, x1) new_lt19(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 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_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ceg), ceh), cfa) -> new_ltEs7(yvy79000, yvy80000, ceg, ceh) new_ltEs7(Right(yvy79000), Left(yvy80000), cgb, cfa) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgf)) -> new_esEs13(yvy4001, yvy3001, dgf) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cag)) -> new_ltEs17(yvy79001, yvy80001, cag) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_ltEs9(yvy79000, yvy80000, cfb, cfc, cfd) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcd) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), bbg, bbh) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bbg, bbh) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy400, yvy500, bbd, bbe, bbf) new_ltEs16(Nothing, Nothing, bcg) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhd), bhe)) -> new_ltEs5(yvy7900, yvy8000, bhd, bhe) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, hf), hg)) -> new_esEs6(yvy4000, yvy3000, hf, hg) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_ltEs16(Just(yvy79000), Nothing, bcg) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Maybe, chc)) -> new_ltEs16(yvy79000, yvy80000, chc) new_compare111(yvy226, yvy227, True, bcb, bcc) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhe)) -> new_esEs7(yvy4000, yvy3000, dhe) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bcg)) -> new_ltEs16(yvy7900, yvy8000, bcg) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfh), cfa) -> new_ltEs16(yvy79000, yvy80000, cfh) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ceb), cec)) -> new_compare9(yvy79000, yvy80000, ceb, cec) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs9(yvy79000, yvy80000, bdb, bdc, bdd) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfa) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(yvy4000, yvy3000, gf, gg, gh) new_esEs27(yvy4001, yvy3001, app(ty_[], dhb)) -> new_esEs17(yvy4001, yvy3001, dhb) new_lt5(yvy79000, yvy80000, app(ty_[], cca)) -> new_lt17(yvy79000, yvy80000, cca) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_lt6(yvy79000, yvy80000, beb, bec) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_lt10(yvy79000, yvy80000, cbe, cbf) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_compare16(yvy79000, yvy80000, cdg, cdh, cea) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(yvy4000, yvy3000, ccf, ccg, cch) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_lt6(yvy79001, yvy80001, bga, bgb) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(yvy79000, yvy80000, cbe, cbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bdg)) -> new_ltEs12(yvy79000, yvy80000, bdg) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, da, db) -> new_esEs9(new_compare30(yvy35, yvy30, da, db), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, chg), chh)) -> new_ltEs7(yvy7900, yvy8000, chg, chh) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], cef)) -> new_compare0(yvy79000, yvy80000, cef) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(yvy35, yvy30, dg, dh, ea) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(yvy4001, yvy3001, fc, fd, ff) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bfd), bfe)) -> new_ltEs5(yvy79002, yvy80002, bfd, bfe) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, ce, cf) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, ce, cf), ce, cf) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, beb, bec) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, beb, bec), beb, bec) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt8(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs5(yvy79000, yvy80000, bah, bba, bbb) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbd), dbe), bbh) -> new_esEs6(yvy4000, yvy3000, dbd, dbe) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, dad), dae)) -> new_ltEs5(yvy7900, yvy8000, dad, dae) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs5(yvy400, yvy500, bg, bh, ca) new_compare110(yvy79000, yvy80000, True, ce, cf) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs5(yvy79001, yvy80001, bgc, bgd, bge) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhf), bhg)) -> new_ltEs7(yvy79001, yvy80001, bhf, bhg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfa) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs5(yvy4000, yvy3000, baa, bab, bac) new_lt12(yvy79000, yvy80000, cg) -> new_esEs9(new_compare18(yvy79000, yvy80000, cg), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bbh) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgb), cfa)) -> new_ltEs7(yvy7900, yvy8000, cgb, cfa) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bbc) -> False new_esEs7(Just(yvy4000), Nothing, bbc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Ratio, dch)) -> new_esEs13(yvy4000, yvy3000, dch) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, dba, dbb) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cac), cad)) -> new_ltEs5(yvy79001, yvy80001, cac, cad) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bae), baf)) -> new_esEs4(yvy4000, yvy3000, bae, baf) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_esEs7(yvy79000, yvy80000, cbh) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hd) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcd) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(yvy79002, yvy80002, bfa, bfb, bfc) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cae)) -> new_ltEs12(yvy79001, yvy80001, cae) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfe), cff), cfa) -> new_ltEs5(yvy79000, yvy80000, cfe, cff) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bah, bba, bbb) -> LT new_esEs7(Nothing, Nothing, bbc) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs30(yvy400, yvy500, app(ty_[], cb)) -> new_esEs17(yvy400, yvy500, cb) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_esEs6(yvy79001, yvy80001, bgf, bgg) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, cee)) -> new_compare7(yvy79000, yvy80000, cee) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, ec), ed)) -> new_esEs4(yvy35, yvy30, ec, ed) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, ce, cf) -> new_esEs9(new_compare9(yvy79000, yvy80000, ce, cf), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bbh) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfa) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bbh) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_esEs7(yvy79000, yvy80000, bcd) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_Either, cgc), cgd)) -> new_ltEs7(yvy79000, yvy80000, cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfb), dfc)) -> new_esEs6(yvy4002, yvy3002, dfb, dfc) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bbh) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bff)) -> new_ltEs12(yvy79002, yvy80002, bff) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs9(yvy79001, yvy80001, bhh, caa, cab) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bah, bba, bbb) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, che, chf) -> GT new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bed, bee, bef) -> new_pePe(new_lt20(yvy79000, yvy80000, bed), new_asAs(new_esEs25(yvy79000, yvy80000, bed), new_pePe(new_lt19(yvy79001, yvy80001, bee), new_asAs(new_esEs24(yvy79001, yvy80001, bee), new_ltEs21(yvy79002, yvy80002, bef))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ead)) -> new_esEs17(yvy4000, yvy3000, ead) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_esEs4(yvy79000, yvy80000, cah, cba) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs5(yvy20, yvy15, dec, ded, dee) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dag)) -> new_ltEs16(yvy7900, yvy8000, dag) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bea)) -> new_ltEs17(yvy79000, yvy80000, bea) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bbh) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, deg), deh)) -> new_esEs4(yvy20, yvy15, deg, deh) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfa) -> new_ltEs10(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, app(ty_[], hd)) -> new_esEs17(yvy400, yvy500, hd) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs9(yvy7900, yvy8000, bed, bee, bef) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ccc), ccd)) -> new_esEs6(yvy4000, yvy3000, ccc, ccd) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cfg), cfa) -> new_ltEs12(yvy79000, yvy80000, cfg) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(yvy4000, yvy3000, dda, ddb, ddc) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_esEs7(yvy79001, yvy80001, bha) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bfg)) -> new_ltEs16(yvy79002, yvy80002, bfg) new_esEs32(yvy20, yvy15, app(ty_Ratio, deb)) -> new_esEs13(yvy20, yvy15, deb) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdh)) -> new_ltEs16(yvy79000, yvy80000, bdh) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdd)) -> new_ltEs17(yvy7900, yvy8000, cdd) new_compare27(yvy79000, yvy80000, False, ce, cf) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, ce, cf), ce, cf) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcb), bbh) -> new_esEs17(yvy4000, yvy3000, dcb) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_esEs6(yvy79000, yvy80000, ce, cf) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, hh)) -> new_esEs13(yvy4000, yvy3000, hh) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dah)) -> new_ltEs17(yvy7900, yvy8000, dah) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, caf)) -> new_ltEs16(yvy79001, yvy80001, caf) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(yvy79000, yvy80000, cbb, cbc, cbd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfa) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cah), cba)) -> new_lt6(yvy79000, yvy80000, cah, cba) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgb, cfa) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, daa), dab), dac)) -> new_ltEs9(yvy7900, yvy8000, daa, dab, dac) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfa) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, che, chf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, che), che, chf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], eb)) -> new_esEs17(yvy35, yvy30, eb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfa) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhc)) -> new_lt17(yvy79000, yvy80000, bhc) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbc), bbh) -> new_esEs7(yvy4000, yvy3000, dbc) new_compare31(yvy20, yvy15, bce, bcf) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bce), bce, bcf) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs13(yvy79000, yvy80000, cbg) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bah, bba, bbb) -> new_esEs9(new_compare16(yvy79000, yvy80000, bah, bba, bbb), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgf), bgg)) -> new_lt10(yvy79001, yvy80001, bgf, bgg) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ge)) -> new_esEs13(yvy4000, yvy3000, ge) new_ltEs12(yvy7900, yvy8000, bca) -> new_fsEs(new_compare18(yvy7900, yvy8000, bca)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_esEs13(yvy79000, yvy80000, cg) new_ltEs21(yvy79002, yvy80002, app(ty_[], bfh)) -> new_ltEs17(yvy79002, yvy80002, bfh) new_compare0([], :(yvy80000, yvy80001), cdd) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], fg)) -> new_esEs17(yvy4001, yvy3001, fg) new_esEs25(yvy79000, yvy80000, app(ty_[], bhc)) -> new_esEs17(yvy79000, yvy80000, bhc) new_lt20(yvy79000, yvy80000, app(app(ty_@2, ce), cf)) -> new_lt10(yvy79000, yvy80000, ce, cf) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], cca)) -> new_esEs17(yvy79000, yvy80000, cca) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(ty_@2, cgh), cha)) -> new_ltEs5(yvy79000, yvy80000, cgh, cha) new_primCompAux0(yvy79000, yvy80000, yvy256, cdd) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdd)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcc), dcd), bbh) -> new_esEs4(yvy4000, yvy3000, dcc, dcd) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fb)) -> new_esEs13(yvy4001, yvy3001, fb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, dce)) -> new_esEs7(yvy4000, yvy3000, dce) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, dcf), dcg)) -> new_esEs6(yvy4000, yvy3000, dcf, dcg) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bbh) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bcb, bcc) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, df)) -> new_esEs13(yvy35, yvy30, df) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cga), cfa) -> new_ltEs17(yvy79000, yvy80000, cga) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdd) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hb), hc)) -> new_esEs4(yvy4000, yvy3000, hb, hc) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, fh), ga)) -> new_esEs4(yvy4001, yvy3001, fh, ga) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, beg), beh)) -> new_ltEs7(yvy79002, yvy80002, beg, beh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdb), cdc)) -> new_esEs4(yvy4000, yvy3000, cdb, cdc) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy4001, yvy3001, dgd, dge) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcd) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcd), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bag) -> new_asAs(new_esEs23(yvy4000, yvy3000, bag), new_esEs22(yvy4001, yvy3001, bag)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ee, ef) -> new_asAs(new_esEs20(yvy4000, yvy3000, ee), new_esEs19(yvy4001, yvy3001, ef)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdd) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdd)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dc)) -> new_esEs7(yvy35, yvy30, dc) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bah, bba, bbb) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, beb), bec)) -> new_esEs4(yvy79000, yvy80000, beb, bec) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt8(yvy79000, yvy80000, bah, bba, bbb) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], ha)) -> new_esEs17(yvy4000, yvy3000, ha) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, app(ty_Ratio, bf)) -> new_esEs13(yvy400, yvy500, bf) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhd, bhe) -> new_pePe(new_lt5(yvy79000, yvy80000, bhd), new_asAs(new_esEs10(yvy79000, yvy80000, bhd), new_ltEs6(yvy79001, yvy80001, bhe))) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, dde), ddf)) -> new_esEs4(yvy4000, yvy3000, dde, ddf) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bbh) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_esEs13(yvy79001, yvy80001, bgh) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhf), dhg)) -> new_esEs6(yvy4000, yvy3000, dhf, dhg) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bad)) -> new_esEs17(yvy4000, yvy3000, bad) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs29(yvy400, yvy500, app(app(ty_Either, bbg), bbh)) -> new_esEs4(yvy400, yvy500, bbg, bbh) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, daf)) -> new_ltEs12(yvy7900, yvy8000, daf) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_esEs29(yvy400, yvy500, app(ty_Ratio, bag)) -> new_esEs13(yvy400, yvy500, bag) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, he)) -> new_esEs7(yvy4000, yvy3000, he) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bch), bda)) -> new_ltEs7(yvy79000, yvy80000, bch, bda) new_ltEs16(Nothing, Just(yvy80000), bcg) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, che, chf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chf), che, chf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, che, chf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bah, bba, bbb) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bde), bdf)) -> new_ltEs5(yvy79000, yvy80000, bde, bdf) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt8(yvy79001, yvy80001, bgc, bgd, bge) new_esEs32(yvy20, yvy15, app(ty_Maybe, ddg)) -> new_esEs7(yvy20, yvy15, ddg) new_esEs32(yvy20, yvy15, app(ty_[], def)) -> new_esEs17(yvy20, yvy15, def) new_esEs26(yvy4002, yvy3002, app(ty_[], dfh)) -> new_esEs17(yvy4002, yvy3002, dfh) new_esEs30(yvy400, yvy500, app(app(ty_Either, cc), cd)) -> new_esEs4(yvy400, yvy500, cc, cd) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, beb, bec) -> new_esEs9(new_compare14(yvy79000, yvy80000, beb, bec), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bga), bgb)) -> new_esEs4(yvy79001, yvy80001, bga, bgb) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bca)) -> new_ltEs12(yvy7900, yvy8000, bca) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfa)) -> new_esEs7(yvy4002, yvy3002, dfa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, cg)) -> new_lt12(yvy79000, yvy80000, cg) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bha)) -> new_lt16(yvy79001, yvy80001, bha) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cde), cdf)) -> new_compare14(yvy79000, yvy80000, cde, cdf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgc)) -> new_esEs7(yvy4001, yvy3001, dgc) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dba, dbb) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfa) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(app(app(ty_@3, cge), cgf), cgg)) -> new_ltEs9(yvy79000, yvy80000, cge, cgf, cgg) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cce)) -> new_esEs13(yvy4000, yvy3000, cce) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, da, db) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, db), da, db) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, dhh)) -> new_esEs13(yvy4000, yvy3000, dhh) new_esEs24(yvy79001, yvy80001, app(ty_[], bhb)) -> new_esEs17(yvy79001, yvy80001, bhb) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gb)) -> new_esEs7(yvy4000, yvy3000, gb) new_esEs30(yvy400, yvy500, app(app(ty_@2, bd), be)) -> new_esEs6(yvy400, yvy500, bd, be) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdd) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbf), bbh) -> new_esEs13(yvy4000, yvy3000, dbf) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gc), gd)) -> new_esEs6(yvy4000, yvy3000, gc, gd) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs5(yvy4000, yvy3000, eaa, eab, eac) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, ce, cf) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcd) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt12(yvy79000, yvy80000, cbg) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcd) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcd), bcd) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, eg)) -> new_esEs7(yvy4001, yvy3001, eg) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs29(yvy400, yvy500, app(app(ty_@2, ee), ef)) -> new_esEs6(yvy400, yvy500, ee, ef) new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bgh)) -> new_lt12(yvy79001, yvy80001, bgh) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdd) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdd), cdd) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhc) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhc), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bbh) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eae), eaf)) -> new_esEs4(yvy4000, yvy3000, eae, eaf) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, ddh), dea)) -> new_esEs6(yvy20, yvy15, ddh, dea) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs30(yvy400, yvy500, app(ty_Maybe, bc)) -> new_esEs7(yvy400, yvy500, bc) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dga), dgb)) -> new_esEs4(yvy4002, yvy3002, dga, dgb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, cbh)) -> new_lt16(yvy79000, yvy80000, cbh) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_Ratio, chb)) -> new_ltEs12(yvy79000, yvy80000, chb) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, ced)) -> new_compare18(yvy79000, yvy80000, ced) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcd) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcd), bcd) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, che, chf) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs5(yvy4002, yvy3002, dfe, dff, dfg) new_lt19(yvy79001, yvy80001, app(ty_[], bhb)) -> new_lt17(yvy79001, yvy80001, bhb) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], ddd)) -> new_esEs17(yvy4000, yvy3000, ddd) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, eh), fa)) -> new_esEs6(yvy4001, yvy3001, eh, fa) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, app(ty_[], chd)) -> new_ltEs17(yvy79000, yvy80000, chd) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcd)) -> new_lt16(yvy79000, yvy80000, bcd) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dbg), dbh), dca), bbh) -> new_esEs5(yvy4000, yvy3000, dbg, dbh, dca) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bbd, bbe, bbf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bbd), new_asAs(new_esEs27(yvy4001, yvy3001, bbe), new_esEs26(yvy4002, yvy3002, bbf))) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cda)) -> new_esEs17(yvy4000, yvy3000, cda) new_compare110(yvy79000, yvy80000, False, ce, cf) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgb, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dd), de)) -> new_esEs6(yvy35, yvy30, dd, de) new_esEs17(:(yvy4000, yvy4001), [], hd) -> False new_esEs17([], :(yvy3000, yvy3001), hd) -> False new_asAs(False, yvy221) -> False new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dfd)) -> new_esEs13(yvy4002, yvy3002, dfd) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs17(yvy4001, yvy3001, hd)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, app(ty_Maybe, bbc)) -> new_esEs7(yvy400, yvy500, bbc) new_compare16(yvy79000, yvy80000, bah, bba, bbb) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bah, bba, bbb), bah, bba, bbb) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhc), dhd)) -> new_esEs4(yvy4001, yvy3001, dhc, dhd) new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_gt(yvy20, yvy15, bce, bcf) -> new_esEs9(new_compare31(yvy20, yvy15, bce, bcf), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs5(yvy4001, yvy3001, dgg, dgh, dha) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_gt2(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_compare0([], :(x0, x1), x2) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_compare110(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_ltEs17(x0, x1, x2) new_primMulInt(Neg(x0), Neg(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(LT, LT) new_primPlusNat1(Zero, Zero) new_esEs30(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs15(x0, x1) new_esEs17([], :(x0, x1), x2) new_primCmpNat1(Zero, Zero) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs30(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_primCompAux00(x0, GT) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_compare29(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Integer) new_compare13(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, x4) new_esEs7(Nothing, Just(x0), x1) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs14(True, True) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare17(@0, @0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpNat1(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_compare27(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(x0, Succ(x1)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt17(x0, x1, x2) new_esEs7(Just(x0), Just(x1), ty_Bool) new_compare0(:(x0, x1), [], x2) new_ltEs16(Nothing, Just(x0), x1) new_esEs20(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_esEs30(x0, x1, ty_@0) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_compare112(x0, x1, False, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_compare113(x0, x1, False, x2) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare114(x0, x1, False) new_esEs30(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, ty_Bool) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, True, x2) new_compare112(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_ltEs12(x0, x1, x2) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_lt8(x0, x1, x2, x3, x4) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_Float) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_compare28(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_lt12(x0, x1, x2) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs21(x0, x1, ty_Int) new_compare13(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Nothing, Nothing, x0) new_pePe(False, x0) new_esEs29(x0, x1, ty_Double) new_ltEs14(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, x2, x3) new_primCmpNat1(Zero, Succ(x0)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt10(x0, x1, x2, x3) new_lt7(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_lt19(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_not(True) new_compare210(x0, x1, True) new_compare27(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs13(False, False) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, x2, x3) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(Nothing, Nothing, x0) new_lt19(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs4(EQ, EQ) new_esEs30(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(GT, GT) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, False, x2) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt6(x0, x1, x2, x3) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, x2, x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_compare9(x0, x1, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Double) new_primCompAux0(x0, x1, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, EQ) new_compare110(x0, x1, False, x2, x3) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_compare11(x0, x1, False, x2, x3, x4) new_not(False) new_lt5(x0, x1, ty_Int) new_compare7(x0, x1, x2) new_esEs25(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_@0) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_compare30(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_gt(x0, x1, x2, x3) new_lt5(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs20(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_esEs5(@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_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_esEs7(Just(x0), Nothing, x1) new_esEs17(:(x0, x1), [], x2) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Just(x0), Nothing, x1) new_lt19(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 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_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cfa), cfb), cfc) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs7(Right(yvy79000), Left(yvy80000), cgd, cfc) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgh)) -> new_esEs13(yvy4001, yvy3001, dgh) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cba)) -> new_ltEs17(yvy79001, yvy80001, cba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfd), cfe), cff), cfc) -> new_ltEs9(yvy79000, yvy80000, cfd, cfe, cff) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcb) -> EQ new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs4(Left(yvy4000), Right(yvy3000), bcg, bch) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bcg, bch) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, bda) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhf), bhg)) -> new_ltEs5(yvy7900, yvy8000, bhf, bhg) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy4000, yvy3000, bab, bac) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Nothing, bda) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccd)) -> new_esEs7(yvy4000, yvy3000, ccd) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Maybe, che)) -> new_ltEs16(yvy79000, yvy80000, che) new_compare111(yvy226, yvy227, True, bbh, bca) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhg)) -> new_esEs7(yvy4000, yvy3000, dhg) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bda)) -> new_ltEs16(yvy7900, yvy8000, bda) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs5(yvy400, yvy300, bcd, bce, bcf) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cgb), cfc) -> new_ltEs16(yvy79000, yvy80000, cgb) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ced), cee)) -> new_compare9(yvy79000, yvy80000, ced, cee) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs9(yvy79000, yvy80000, bdd, bde, bdf) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfc) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs27(yvy4001, yvy3001, app(ty_[], dhd)) -> new_esEs17(yvy4001, yvy3001, dhd) new_lt5(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt17(yvy79000, yvy80000, ccc) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt6(yvy79000, yvy80000, bed, bee) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_lt10(yvy79000, yvy80000, cbg, cbh) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cea), ceb), cec)) -> new_compare16(yvy79000, yvy80000, cea, ceb, cec) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs5(yvy4000, yvy3000, cch, cda, cdb) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_lt6(yvy79001, yvy80001, bgc, bgd) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_esEs6(yvy79000, yvy80000, cbg, cbh) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bea)) -> new_ltEs12(yvy79000, yvy80000, bea) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, bf, bg) -> new_esEs9(new_compare30(yvy35, yvy30, bf, bg), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, daa), dab)) -> new_ltEs7(yvy7900, yvy8000, daa, dab) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], ceh)) -> new_compare0(yvy79000, yvy80000, ceh) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy35, yvy30, ec, ed, ee) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(yvy4001, yvy3001, fh, ga, gb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bff), bfg)) -> new_ltEs5(yvy79002, yvy80002, bff, bfg) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, dd, de) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, dd, de), dd, de) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, bed, bee) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bed, bee), bed, bee) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_lt8(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbf), dbg), bch) -> new_esEs6(yvy4000, yvy3000, dbf, dbg) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, daf), dag)) -> new_ltEs5(yvy7900, yvy8000, daf, dag) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, dd, de) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(yvy79001, yvy80001, bge, bgf, bgg) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhh), caa)) -> new_ltEs7(yvy79001, yvy80001, bhh, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfc) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(yvy4000, yvy3000, bae, baf, bag) new_lt12(yvy79000, yvy80000, df) -> new_esEs9(new_compare18(yvy79000, yvy80000, df), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bch) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_esEs35(yvy400, yvy300, app(ty_Maybe, bcc)) -> new_esEs7(yvy400, yvy300, bcc) new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgd), cfc)) -> new_ltEs7(yvy7900, yvy8000, cgd, cfc) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bcc) -> False new_esEs7(Just(yvy4000), Nothing, bcc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Ratio, ddb)) -> new_esEs13(yvy4000, yvy3000, ddb) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare112(yvy233, yvy234, True, dbc, dbd) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cae), caf)) -> new_ltEs5(yvy79001, yvy80001, cae, caf) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bba), bbb)) -> new_esEs4(yvy4000, yvy3000, bba, bbb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_esEs7(yvy79000, yvy80000, ccb) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hh) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcb) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy79002, yvy80002, bfc, bfd, bfe) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cag)) -> new_ltEs12(yvy79001, yvy80001, cag) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfg), cfh), cfc) -> new_ltEs5(yvy79000, yvy80000, cfg, cfh) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bbd, bbe, bbf) -> LT new_esEs7(Nothing, Nothing, bcc) -> True new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_esEs6(yvy79001, yvy80001, bgh, bha) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, ceg)) -> new_compare7(yvy79000, yvy80000, ceg) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy35, yvy30, eg, eh) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, dd, de) -> new_esEs9(new_compare9(yvy79000, yvy80000, dd, de), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bch) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfc) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bch) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_esEs7(yvy79000, yvy80000, bcb) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79000, yvy80000, cge, cgf) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfd), dfe)) -> new_esEs6(yvy4002, yvy3002, dfd, dfe) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bch) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bfh)) -> new_ltEs12(yvy79002, yvy80002, bfh) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs9(yvy79001, yvy80001, cab, cac, cad) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bbd, bbe, bbf) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, chg, chh) -> GT new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bef, beg, beh) -> new_pePe(new_lt20(yvy79000, yvy80000, bef), new_asAs(new_esEs25(yvy79000, yvy80000, bef), new_pePe(new_lt19(yvy79001, yvy80001, beg), new_asAs(new_esEs24(yvy79001, yvy80001, beg), new_ltEs21(yvy79002, yvy80002, beh))))) new_esEs28(yvy4000, yvy3000, app(ty_[], eaf)) -> new_esEs17(yvy4000, yvy3000, eaf) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_esEs4(yvy79000, yvy80000, cbb, cbc) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dee), def), deg)) -> new_esEs5(yvy20, yvy15, dee, def, deg) new_esEs35(yvy400, yvy300, app(app(ty_@2, fa), fb)) -> new_esEs6(yvy400, yvy300, fa, fb) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dba)) -> new_ltEs16(yvy7900, yvy8000, dba) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bec)) -> new_ltEs17(yvy79000, yvy80000, bec) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bch) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfa), dfb)) -> new_esEs4(yvy20, yvy15, dfa, dfb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfc) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs9(yvy7900, yvy8000, bef, beg, beh) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs6(yvy4000, yvy3000, cce, ccf) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cga), cfc) -> new_ltEs12(yvy79000, yvy80000, cga) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs5(yvy4000, yvy3000, ddc, ddd, dde) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_esEs7(yvy79001, yvy80001, bhc) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bga)) -> new_ltEs16(yvy79002, yvy80002, bga) new_esEs32(yvy20, yvy15, app(ty_Ratio, ded)) -> new_esEs13(yvy20, yvy15, ded) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, beb)) -> new_ltEs16(yvy79000, yvy80000, beb) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdf)) -> new_ltEs17(yvy7900, yvy8000, cdf) new_compare27(yvy79000, yvy80000, False, dd, de) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, dd, de), dd, de) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcd), bch) -> new_esEs17(yvy4000, yvy3000, dcd) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs6(yvy79000, yvy80000, dd, de) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bad)) -> new_esEs13(yvy4000, yvy3000, bad) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dbb)) -> new_ltEs17(yvy7900, yvy8000, dbb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, cah)) -> new_ltEs16(yvy79001, yvy80001, cah) new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfc) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_lt6(yvy79000, yvy80000, cbb, cbc) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgd, cfc) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, dac), dad), dae)) -> new_ltEs9(yvy7900, yvy8000, dac, dad, dae) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfc) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, chg, chh) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, chg), chg, chh) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], ef)) -> new_esEs17(yvy35, yvy30, ef) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfc) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhe)) -> new_lt17(yvy79000, yvy80000, bhe) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbe), bch) -> new_esEs7(yvy4000, yvy3000, dbe) new_compare31(yvy20, yvy15, bc, bd) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_esEs13(yvy79000, yvy80000, cca) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) -> new_esEs9(new_compare16(yvy79000, yvy80000, bbd, bbe, bbf), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_lt10(yvy79001, yvy80001, bgh, bha) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ha)) -> new_esEs13(yvy4000, yvy3000, ha) new_ltEs12(yvy7900, yvy8000, bbg) -> new_fsEs(new_compare18(yvy7900, yvy8000, bbg)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_esEs13(yvy79000, yvy80000, df) new_ltEs21(yvy79002, yvy80002, app(ty_[], bgb)) -> new_ltEs17(yvy79002, yvy80002, bgb) new_compare0([], :(yvy80000, yvy80001), cdf) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], gc)) -> new_esEs17(yvy4001, yvy3001, gc) new_esEs25(yvy79000, yvy80000, app(ty_[], bhe)) -> new_esEs17(yvy79000, yvy80000, bhe) new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt10(yvy79000, yvy80000, dd, de) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs17(yvy79000, yvy80000, ccc) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79000, yvy80000, chb, chc) new_primCompAux0(yvy79000, yvy80000, yvy256, cdf) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdf)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dce), dcf), bch) -> new_esEs4(yvy4000, yvy3000, dce, dcf) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fg)) -> new_esEs13(yvy4001, yvy3001, fg) new_esEs36(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Maybe, dcg)) -> new_esEs7(yvy4000, yvy3000, dcg) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_@2, dch), dda)) -> new_esEs6(yvy4000, yvy3000, dch, dda) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bch) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bbh, bca) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, eb)) -> new_esEs13(yvy35, yvy30, eb) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cgc), cfc) -> new_ltEs17(yvy79000, yvy80000, cgc) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdf) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs36(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, gd), ge)) -> new_esEs4(yvy4001, yvy3001, gd, ge) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, bfa), bfb)) -> new_ltEs7(yvy79002, yvy80002, bfa, bfb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdd), cde)) -> new_esEs4(yvy4000, yvy3000, cdd, cde) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgf), dgg)) -> new_esEs6(yvy4001, yvy3001, dgf, dgg) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcb) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcb), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbc) -> new_asAs(new_esEs23(yvy4000, yvy3000, bbc), new_esEs22(yvy4001, yvy3001, bbc)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), fa, fb) -> new_asAs(new_esEs20(yvy4000, yvy3000, fa), new_esEs19(yvy4001, yvy3001, fb)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdf) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdf)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dg)) -> new_esEs7(yvy35, yvy30, dg) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bbd, bbe, bbf) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs4(yvy79000, yvy80000, bed, bee) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], he)) -> new_esEs17(yvy4000, yvy3000, he) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhf, bhg) -> new_pePe(new_lt5(yvy79000, yvy80000, bhf), new_asAs(new_esEs10(yvy79000, yvy80000, bhf), new_ltEs6(yvy79001, yvy80001, bhg))) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_Either, ddg), ddh)) -> new_esEs4(yvy4000, yvy3000, ddg, ddh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bch) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_esEs13(yvy79001, yvy80001, bhb) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhh), eaa)) -> new_esEs6(yvy4000, yvy3000, dhh, eaa) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bah)) -> new_esEs17(yvy4000, yvy3000, bah) new_esEs35(yvy400, yvy300, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy400, yvy300, bcg, bch) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, dah)) -> new_ltEs12(yvy7900, yvy8000, dah) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, baa)) -> new_esEs7(yvy4000, yvy3000, baa) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bdb), bdc)) -> new_ltEs7(yvy79000, yvy80000, bdb, bdc) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_ltEs16(Nothing, Just(yvy80000), bda) -> True new_esEs35(yvy400, yvy300, app(ty_Ratio, bbc)) -> new_esEs13(yvy400, yvy300, bbc) new_compare29(Right(yvy7900), Right(yvy8000), False, chg, chh) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chh), chg, chh) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, chg, chh) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bbd, bbe, bbf) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bdg), bdh)) -> new_ltEs5(yvy79000, yvy80000, bdg, bdh) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt8(yvy79001, yvy80001, bge, bgf, bgg) new_esEs32(yvy20, yvy15, app(ty_Maybe, dea)) -> new_esEs7(yvy20, yvy15, dea) new_esEs32(yvy20, yvy15, app(ty_[], deh)) -> new_esEs17(yvy20, yvy15, deh) new_esEs26(yvy4002, yvy3002, app(ty_[], dgb)) -> new_esEs17(yvy4002, yvy3002, dgb) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, bed, bee) -> new_esEs9(new_compare14(yvy79000, yvy80000, bed, bee), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_esEs4(yvy79001, yvy80001, bgc, bgd) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bbg)) -> new_ltEs12(yvy7900, yvy8000, bbg) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfc)) -> new_esEs7(yvy4002, yvy3002, dfc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_lt12(yvy79000, yvy80000, df) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_lt16(yvy79001, yvy80001, bhc) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cdg), cdh)) -> new_compare14(yvy79000, yvy80000, cdg, cdh) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dge)) -> new_esEs7(yvy4001, yvy3001, dge) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dbc, dbd) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfc) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79000, yvy80000, cgg, cgh, cha) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ccg)) -> new_esEs13(yvy4000, yvy3000, ccg) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bf, bg) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eab)) -> new_esEs13(yvy4000, yvy3000, eab) new_esEs24(yvy79001, yvy80001, app(ty_[], bhd)) -> new_esEs17(yvy79001, yvy80001, bhd) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdf) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbh), bch) -> new_esEs13(yvy4000, yvy3000, dbh) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs5(yvy4000, yvy3000, eac, ead, eae) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, dd, de) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcb) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_lt12(yvy79000, yvy80000, cca) new_esEs36(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcb) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcb), bcb) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, fc)) -> new_esEs7(yvy4001, yvy3001, fc) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_lt12(yvy79001, yvy80001, bhb) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdf) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdf), cdf) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhe) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhe), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bch) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eag), eah)) -> new_esEs4(yvy4000, yvy3000, eag, eah) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, deb), dec)) -> new_esEs6(yvy20, yvy15, deb, dec) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(ty_[], hh)) -> new_esEs17(yvy400, yvy300, hh) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgc), dgd)) -> new_esEs4(yvy4002, yvy3002, dgc, dgd) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_lt16(yvy79000, yvy80000, ccb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Ratio, chd)) -> new_ltEs12(yvy79000, yvy80000, chd) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, cef)) -> new_compare18(yvy79000, yvy80000, cef) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcb) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcb), bcb) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, chg, chh) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs5(yvy4002, yvy3002, dfg, dfh, dga) new_lt19(yvy79001, yvy80001, app(ty_[], bhd)) -> new_lt17(yvy79001, yvy80001, bhd) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_[], ddf)) -> new_esEs17(yvy4000, yvy3000, ddf) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, fd), ff)) -> new_esEs6(yvy4001, yvy3001, fd, ff) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_[], chf)) -> new_ltEs17(yvy79000, yvy80000, chf) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_lt16(yvy79000, yvy80000, bcb) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dca), dcb), dcc), bch) -> new_esEs5(yvy4000, yvy3000, dca, dcb, dcc) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bcd, bce, bcf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bcd), new_asAs(new_esEs27(yvy4001, yvy3001, bce), new_esEs26(yvy4002, yvy3002, bcf))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cdc)) -> new_esEs17(yvy4000, yvy3000, cdc) new_compare110(yvy79000, yvy80000, False, dd, de) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy35, yvy30, dh, ea) new_esEs17(:(yvy4000, yvy4001), [], hh) -> False new_esEs17([], :(yvy3000, yvy3001), hh) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dff)) -> new_esEs13(yvy4002, yvy3002, dff) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hh) -> new_asAs(new_esEs21(yvy4000, yvy3000, hh), new_esEs17(yvy4001, yvy3001, hh)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, bbd, bbe, bbf) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhe), dhf)) -> new_esEs4(yvy4001, yvy3001, dhe, dhf) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_gt(yvy20, yvy15, bc, bd) -> new_esEs9(new_compare31(yvy20, yvy15, bc, bd), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs5(yvy4001, yvy3001, dha, dhb, dhc) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(LT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_ltEs15(x0, x1) new_primCmpNat1(Zero, Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_esEs36(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(x0, x1) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(@0, @0) new_esEs32(x0, x1, ty_Float) new_compare23(x0, x1, True, x2) new_primCmpNat1(Succ(x0), Zero) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_esEs17(:(x0, x1), [], x2) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Just(x0), x1) new_sr(x0, x1) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs16(Nothing, Nothing, x0) new_esEs9(LT, LT) new_compare111(x0, x1, False, x2, x3) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_compare23(x0, x1, False, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, True, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare114(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Ordering) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs8(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, x4) new_esEs35(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs17([], :(x0, x1), x2) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, x2, x3) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt8(x0, x1, x2, x3, x4) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs6(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt19(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_compare110(x0, x1, True, x2, x3) new_esEs19(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Integer) new_compare7(x0, x1, x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_compare28(x0, x1, False, x2, x3, x4) new_esEs32(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(True, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_ltEs16(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare13(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Float) new_lt17(x0, x1, x2) new_esEs32(x0, x1, ty_Ordering) new_compare9(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs17([], [], x0) new_ltEs19(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2, x3) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(False, False) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare113(x0, x1, False, x2) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare32(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs35(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_compare27(x0, x1, True, x2, x3) new_ltEs4(EQ, EQ) new_esEs9(GT, GT) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, x2, x3) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_compare30(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare27(x0, x1, False, x2, x3) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare29(Left(x0), Left(x1), False, x2, x3) new_primCompAux00(x0, EQ) new_compare112(x0, x1, False, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare110(x0, x1, False, x2, x3) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs17(x0, x1, x2) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs7(Nothing, Nothing, x0) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_compare111(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, ty_Float) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt12(x0, x1, x2) new_esEs27(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (31) Complex Obligation (AND) ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cfa), cfb), cfc) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs7(Right(yvy79000), Left(yvy80000), cgd, cfc) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgh)) -> new_esEs13(yvy4001, yvy3001, dgh) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cba)) -> new_ltEs17(yvy79001, yvy80001, cba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfd), cfe), cff), cfc) -> new_ltEs9(yvy79000, yvy80000, cfd, cfe, cff) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcb) -> EQ new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs4(Left(yvy4000), Right(yvy3000), bcg, bch) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bcg, bch) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, bda) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhf), bhg)) -> new_ltEs5(yvy7900, yvy8000, bhf, bhg) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy4000, yvy3000, bab, bac) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Nothing, bda) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccd)) -> new_esEs7(yvy4000, yvy3000, ccd) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Maybe, che)) -> new_ltEs16(yvy79000, yvy80000, che) new_compare111(yvy226, yvy227, True, bbh, bca) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhg)) -> new_esEs7(yvy4000, yvy3000, dhg) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bda)) -> new_ltEs16(yvy7900, yvy8000, bda) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs5(yvy400, yvy300, bcd, bce, bcf) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cgb), cfc) -> new_ltEs16(yvy79000, yvy80000, cgb) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ced), cee)) -> new_compare9(yvy79000, yvy80000, ced, cee) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs9(yvy79000, yvy80000, bdd, bde, bdf) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfc) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs27(yvy4001, yvy3001, app(ty_[], dhd)) -> new_esEs17(yvy4001, yvy3001, dhd) new_lt5(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt17(yvy79000, yvy80000, ccc) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt6(yvy79000, yvy80000, bed, bee) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_lt10(yvy79000, yvy80000, cbg, cbh) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cea), ceb), cec)) -> new_compare16(yvy79000, yvy80000, cea, ceb, cec) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs5(yvy4000, yvy3000, cch, cda, cdb) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_lt6(yvy79001, yvy80001, bgc, bgd) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_esEs6(yvy79000, yvy80000, cbg, cbh) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bea)) -> new_ltEs12(yvy79000, yvy80000, bea) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, bf, bg) -> new_esEs9(new_compare30(yvy35, yvy30, bf, bg), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, daa), dab)) -> new_ltEs7(yvy7900, yvy8000, daa, dab) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], ceh)) -> new_compare0(yvy79000, yvy80000, ceh) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy35, yvy30, ec, ed, ee) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(yvy4001, yvy3001, fh, ga, gb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bff), bfg)) -> new_ltEs5(yvy79002, yvy80002, bff, bfg) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, dd, de) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, dd, de), dd, de) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, bed, bee) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bed, bee), bed, bee) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_lt8(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbf), dbg), bch) -> new_esEs6(yvy4000, yvy3000, dbf, dbg) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, daf), dag)) -> new_ltEs5(yvy7900, yvy8000, daf, dag) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, dd, de) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(yvy79001, yvy80001, bge, bgf, bgg) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhh), caa)) -> new_ltEs7(yvy79001, yvy80001, bhh, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfc) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(yvy4000, yvy3000, bae, baf, bag) new_lt12(yvy79000, yvy80000, df) -> new_esEs9(new_compare18(yvy79000, yvy80000, df), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bch) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_esEs35(yvy400, yvy300, app(ty_Maybe, bcc)) -> new_esEs7(yvy400, yvy300, bcc) new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgd), cfc)) -> new_ltEs7(yvy7900, yvy8000, cgd, cfc) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bcc) -> False new_esEs7(Just(yvy4000), Nothing, bcc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Ratio, ddb)) -> new_esEs13(yvy4000, yvy3000, ddb) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare112(yvy233, yvy234, True, dbc, dbd) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cae), caf)) -> new_ltEs5(yvy79001, yvy80001, cae, caf) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bba), bbb)) -> new_esEs4(yvy4000, yvy3000, bba, bbb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_esEs7(yvy79000, yvy80000, ccb) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hh) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcb) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy79002, yvy80002, bfc, bfd, bfe) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cag)) -> new_ltEs12(yvy79001, yvy80001, cag) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfg), cfh), cfc) -> new_ltEs5(yvy79000, yvy80000, cfg, cfh) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bbd, bbe, bbf) -> LT new_esEs7(Nothing, Nothing, bcc) -> True new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_esEs6(yvy79001, yvy80001, bgh, bha) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, ceg)) -> new_compare7(yvy79000, yvy80000, ceg) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy35, yvy30, eg, eh) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, dd, de) -> new_esEs9(new_compare9(yvy79000, yvy80000, dd, de), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bch) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfc) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bch) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_esEs7(yvy79000, yvy80000, bcb) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79000, yvy80000, cge, cgf) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfd), dfe)) -> new_esEs6(yvy4002, yvy3002, dfd, dfe) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bch) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bfh)) -> new_ltEs12(yvy79002, yvy80002, bfh) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs9(yvy79001, yvy80001, cab, cac, cad) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bbd, bbe, bbf) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, chg, chh) -> GT new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bef, beg, beh) -> new_pePe(new_lt20(yvy79000, yvy80000, bef), new_asAs(new_esEs25(yvy79000, yvy80000, bef), new_pePe(new_lt19(yvy79001, yvy80001, beg), new_asAs(new_esEs24(yvy79001, yvy80001, beg), new_ltEs21(yvy79002, yvy80002, beh))))) new_esEs28(yvy4000, yvy3000, app(ty_[], eaf)) -> new_esEs17(yvy4000, yvy3000, eaf) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_esEs4(yvy79000, yvy80000, cbb, cbc) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dee), def), deg)) -> new_esEs5(yvy20, yvy15, dee, def, deg) new_esEs35(yvy400, yvy300, app(app(ty_@2, fa), fb)) -> new_esEs6(yvy400, yvy300, fa, fb) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dba)) -> new_ltEs16(yvy7900, yvy8000, dba) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bec)) -> new_ltEs17(yvy79000, yvy80000, bec) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bch) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfa), dfb)) -> new_esEs4(yvy20, yvy15, dfa, dfb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfc) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs9(yvy7900, yvy8000, bef, beg, beh) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs6(yvy4000, yvy3000, cce, ccf) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cga), cfc) -> new_ltEs12(yvy79000, yvy80000, cga) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs5(yvy4000, yvy3000, ddc, ddd, dde) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_esEs7(yvy79001, yvy80001, bhc) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bga)) -> new_ltEs16(yvy79002, yvy80002, bga) new_esEs32(yvy20, yvy15, app(ty_Ratio, ded)) -> new_esEs13(yvy20, yvy15, ded) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, beb)) -> new_ltEs16(yvy79000, yvy80000, beb) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdf)) -> new_ltEs17(yvy7900, yvy8000, cdf) new_compare27(yvy79000, yvy80000, False, dd, de) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, dd, de), dd, de) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcd), bch) -> new_esEs17(yvy4000, yvy3000, dcd) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs6(yvy79000, yvy80000, dd, de) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bad)) -> new_esEs13(yvy4000, yvy3000, bad) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dbb)) -> new_ltEs17(yvy7900, yvy8000, dbb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, cah)) -> new_ltEs16(yvy79001, yvy80001, cah) new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfc) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_lt6(yvy79000, yvy80000, cbb, cbc) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgd, cfc) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, dac), dad), dae)) -> new_ltEs9(yvy7900, yvy8000, dac, dad, dae) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfc) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, chg, chh) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, chg), chg, chh) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], ef)) -> new_esEs17(yvy35, yvy30, ef) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfc) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhe)) -> new_lt17(yvy79000, yvy80000, bhe) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbe), bch) -> new_esEs7(yvy4000, yvy3000, dbe) new_compare31(yvy20, yvy15, bc, bd) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_esEs13(yvy79000, yvy80000, cca) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) -> new_esEs9(new_compare16(yvy79000, yvy80000, bbd, bbe, bbf), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_lt10(yvy79001, yvy80001, bgh, bha) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ha)) -> new_esEs13(yvy4000, yvy3000, ha) new_ltEs12(yvy7900, yvy8000, bbg) -> new_fsEs(new_compare18(yvy7900, yvy8000, bbg)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_esEs13(yvy79000, yvy80000, df) new_ltEs21(yvy79002, yvy80002, app(ty_[], bgb)) -> new_ltEs17(yvy79002, yvy80002, bgb) new_compare0([], :(yvy80000, yvy80001), cdf) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], gc)) -> new_esEs17(yvy4001, yvy3001, gc) new_esEs25(yvy79000, yvy80000, app(ty_[], bhe)) -> new_esEs17(yvy79000, yvy80000, bhe) new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt10(yvy79000, yvy80000, dd, de) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs17(yvy79000, yvy80000, ccc) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79000, yvy80000, chb, chc) new_primCompAux0(yvy79000, yvy80000, yvy256, cdf) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdf)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dce), dcf), bch) -> new_esEs4(yvy4000, yvy3000, dce, dcf) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fg)) -> new_esEs13(yvy4001, yvy3001, fg) new_esEs36(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Maybe, dcg)) -> new_esEs7(yvy4000, yvy3000, dcg) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_@2, dch), dda)) -> new_esEs6(yvy4000, yvy3000, dch, dda) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bch) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bbh, bca) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, eb)) -> new_esEs13(yvy35, yvy30, eb) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cgc), cfc) -> new_ltEs17(yvy79000, yvy80000, cgc) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdf) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs36(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, gd), ge)) -> new_esEs4(yvy4001, yvy3001, gd, ge) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, bfa), bfb)) -> new_ltEs7(yvy79002, yvy80002, bfa, bfb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdd), cde)) -> new_esEs4(yvy4000, yvy3000, cdd, cde) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgf), dgg)) -> new_esEs6(yvy4001, yvy3001, dgf, dgg) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcb) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcb), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbc) -> new_asAs(new_esEs23(yvy4000, yvy3000, bbc), new_esEs22(yvy4001, yvy3001, bbc)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), fa, fb) -> new_asAs(new_esEs20(yvy4000, yvy3000, fa), new_esEs19(yvy4001, yvy3001, fb)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdf) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdf)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dg)) -> new_esEs7(yvy35, yvy30, dg) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bbd, bbe, bbf) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs4(yvy79000, yvy80000, bed, bee) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], he)) -> new_esEs17(yvy4000, yvy3000, he) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhf, bhg) -> new_pePe(new_lt5(yvy79000, yvy80000, bhf), new_asAs(new_esEs10(yvy79000, yvy80000, bhf), new_ltEs6(yvy79001, yvy80001, bhg))) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_Either, ddg), ddh)) -> new_esEs4(yvy4000, yvy3000, ddg, ddh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bch) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_esEs13(yvy79001, yvy80001, bhb) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhh), eaa)) -> new_esEs6(yvy4000, yvy3000, dhh, eaa) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bah)) -> new_esEs17(yvy4000, yvy3000, bah) new_esEs35(yvy400, yvy300, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy400, yvy300, bcg, bch) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, dah)) -> new_ltEs12(yvy7900, yvy8000, dah) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, baa)) -> new_esEs7(yvy4000, yvy3000, baa) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bdb), bdc)) -> new_ltEs7(yvy79000, yvy80000, bdb, bdc) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_ltEs16(Nothing, Just(yvy80000), bda) -> True new_esEs35(yvy400, yvy300, app(ty_Ratio, bbc)) -> new_esEs13(yvy400, yvy300, bbc) new_compare29(Right(yvy7900), Right(yvy8000), False, chg, chh) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chh), chg, chh) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, chg, chh) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bbd, bbe, bbf) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bdg), bdh)) -> new_ltEs5(yvy79000, yvy80000, bdg, bdh) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt8(yvy79001, yvy80001, bge, bgf, bgg) new_esEs32(yvy20, yvy15, app(ty_Maybe, dea)) -> new_esEs7(yvy20, yvy15, dea) new_esEs32(yvy20, yvy15, app(ty_[], deh)) -> new_esEs17(yvy20, yvy15, deh) new_esEs26(yvy4002, yvy3002, app(ty_[], dgb)) -> new_esEs17(yvy4002, yvy3002, dgb) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, bed, bee) -> new_esEs9(new_compare14(yvy79000, yvy80000, bed, bee), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_esEs4(yvy79001, yvy80001, bgc, bgd) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bbg)) -> new_ltEs12(yvy7900, yvy8000, bbg) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfc)) -> new_esEs7(yvy4002, yvy3002, dfc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_lt12(yvy79000, yvy80000, df) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_lt16(yvy79001, yvy80001, bhc) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cdg), cdh)) -> new_compare14(yvy79000, yvy80000, cdg, cdh) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dge)) -> new_esEs7(yvy4001, yvy3001, dge) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dbc, dbd) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfc) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79000, yvy80000, cgg, cgh, cha) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ccg)) -> new_esEs13(yvy4000, yvy3000, ccg) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bf, bg) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eab)) -> new_esEs13(yvy4000, yvy3000, eab) new_esEs24(yvy79001, yvy80001, app(ty_[], bhd)) -> new_esEs17(yvy79001, yvy80001, bhd) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdf) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbh), bch) -> new_esEs13(yvy4000, yvy3000, dbh) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs5(yvy4000, yvy3000, eac, ead, eae) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, dd, de) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcb) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_lt12(yvy79000, yvy80000, cca) new_esEs36(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcb) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcb), bcb) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, fc)) -> new_esEs7(yvy4001, yvy3001, fc) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_lt12(yvy79001, yvy80001, bhb) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdf) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdf), cdf) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhe) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhe), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bch) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eag), eah)) -> new_esEs4(yvy4000, yvy3000, eag, eah) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, deb), dec)) -> new_esEs6(yvy20, yvy15, deb, dec) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(ty_[], hh)) -> new_esEs17(yvy400, yvy300, hh) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgc), dgd)) -> new_esEs4(yvy4002, yvy3002, dgc, dgd) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_lt16(yvy79000, yvy80000, ccb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Ratio, chd)) -> new_ltEs12(yvy79000, yvy80000, chd) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, cef)) -> new_compare18(yvy79000, yvy80000, cef) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcb) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcb), bcb) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, chg, chh) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs5(yvy4002, yvy3002, dfg, dfh, dga) new_lt19(yvy79001, yvy80001, app(ty_[], bhd)) -> new_lt17(yvy79001, yvy80001, bhd) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_[], ddf)) -> new_esEs17(yvy4000, yvy3000, ddf) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, fd), ff)) -> new_esEs6(yvy4001, yvy3001, fd, ff) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_[], chf)) -> new_ltEs17(yvy79000, yvy80000, chf) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_lt16(yvy79000, yvy80000, bcb) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dca), dcb), dcc), bch) -> new_esEs5(yvy4000, yvy3000, dca, dcb, dcc) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bcd, bce, bcf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bcd), new_asAs(new_esEs27(yvy4001, yvy3001, bce), new_esEs26(yvy4002, yvy3002, bcf))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cdc)) -> new_esEs17(yvy4000, yvy3000, cdc) new_compare110(yvy79000, yvy80000, False, dd, de) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy35, yvy30, dh, ea) new_esEs17(:(yvy4000, yvy4001), [], hh) -> False new_esEs17([], :(yvy3000, yvy3001), hh) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dff)) -> new_esEs13(yvy4002, yvy3002, dff) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hh) -> new_asAs(new_esEs21(yvy4000, yvy3000, hh), new_esEs17(yvy4001, yvy3001, hh)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, bbd, bbe, bbf) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhe), dhf)) -> new_esEs4(yvy4001, yvy3001, dhe, dhf) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_gt(yvy20, yvy15, bc, bd) -> new_esEs9(new_compare31(yvy20, yvy15, bc, bd), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs5(yvy4001, yvy3001, dha, dhb, dhc) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(LT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_ltEs15(x0, x1) new_primCmpNat1(Zero, Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_esEs36(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(x0, x1) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(@0, @0) new_esEs32(x0, x1, ty_Float) new_compare23(x0, x1, True, x2) new_primCmpNat1(Succ(x0), Zero) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_esEs17(:(x0, x1), [], x2) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Just(x0), x1) new_sr(x0, x1) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs16(Nothing, Nothing, x0) new_esEs9(LT, LT) new_compare111(x0, x1, False, x2, x3) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_compare23(x0, x1, False, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, True, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare114(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Ordering) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs8(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, x4) new_esEs35(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs17([], :(x0, x1), x2) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, x2, x3) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt8(x0, x1, x2, x3, x4) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs6(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt19(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_compare110(x0, x1, True, x2, x3) new_esEs19(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Integer) new_compare7(x0, x1, x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_compare28(x0, x1, False, x2, x3, x4) new_esEs32(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(True, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_ltEs16(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare13(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Float) new_lt17(x0, x1, x2) new_esEs32(x0, x1, ty_Ordering) new_compare9(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs17([], [], x0) new_ltEs19(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2, x3) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(False, False) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare113(x0, x1, False, x2) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare32(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs35(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_compare27(x0, x1, True, x2, x3) new_ltEs4(EQ, EQ) new_esEs9(GT, GT) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, x2, x3) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_compare30(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare27(x0, x1, False, x2, x3) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare29(Left(x0), Left(x1), False, x2, x3) new_primCompAux00(x0, EQ) new_compare112(x0, x1, False, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare110(x0, x1, False, x2, x3) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs17(x0, x1, x2) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs7(Nothing, Nothing, x0) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_compare111(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, ty_Float) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt12(x0, x1, x2) new_esEs27(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 *new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 8 >= 7, 9 >= 8, 10 >= 9 *new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cfa), cfb), cfc) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs7(Right(yvy79000), Left(yvy80000), cgd, cfc) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dgh)) -> new_esEs13(yvy4001, yvy3001, dgh) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cba)) -> new_ltEs17(yvy79001, yvy80001, cba) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfd), cfe), cff), cfc) -> new_ltEs9(yvy79000, yvy80000, cfd, cfe, cff) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bcb) -> EQ new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_esEs4(Left(yvy4000), Right(yvy3000), bcg, bch) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bcg, bch) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, bda) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bhf), bhg)) -> new_ltEs5(yvy7900, yvy8000, bhf, bhg) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy4000, yvy3000, bab, bac) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Nothing, bda) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, ccd)) -> new_esEs7(yvy4000, yvy3000, ccd) new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Maybe, che)) -> new_ltEs16(yvy79000, yvy80000, che) new_compare111(yvy226, yvy227, True, bbh, bca) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dhg)) -> new_esEs7(yvy4000, yvy3000, dhg) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bda)) -> new_ltEs16(yvy7900, yvy8000, bda) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs5(yvy400, yvy300, bcd, bce, bcf) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cgb), cfc) -> new_ltEs16(yvy79000, yvy80000, cgb) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, ced), cee)) -> new_compare9(yvy79000, yvy80000, ced, cee) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_ltEs9(yvy79000, yvy80000, bdd, bde, bdf) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cfc) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs5(yvy4000, yvy3000, hb, hc, hd) new_esEs27(yvy4001, yvy3001, app(ty_[], dhd)) -> new_esEs17(yvy4001, yvy3001, dhd) new_lt5(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt17(yvy79000, yvy80000, ccc) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt6(yvy79000, yvy80000, bed, bee) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_lt10(yvy79000, yvy80000, cbg, cbh) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cea), ceb), cec)) -> new_compare16(yvy79000, yvy80000, cea, ceb, cec) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs5(yvy4000, yvy3000, cch, cda, cdb) new_lt19(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_lt6(yvy79001, yvy80001, bgc, bgd) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, cbg), cbh)) -> new_esEs6(yvy79000, yvy80000, cbg, cbh) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bea)) -> new_ltEs12(yvy79000, yvy80000, bea) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_gt2(yvy35, yvy30, bf, bg) -> new_esEs9(new_compare30(yvy35, yvy30, bf, bg), GT) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, daa), dab)) -> new_ltEs7(yvy7900, yvy8000, daa, dab) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], ceh)) -> new_compare0(yvy79000, yvy80000, ceh) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(yvy35, yvy30, ec, ed, ee) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs5(yvy4001, yvy3001, fh, ga, gb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bff), bfg)) -> new_ltEs5(yvy79002, yvy80002, bff, bfg) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, dd, de) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, dd, de), dd, de) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, bed, bee) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bed, bee), bed, bee) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_lt8(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbf), dbg), bch) -> new_esEs6(yvy4000, yvy3000, dbf, dbg) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs36(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, daf), dag)) -> new_ltEs5(yvy7900, yvy8000, daf, dag) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, dd, de) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(yvy79001, yvy80001, bge, bgf, bgg) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, bhh), caa)) -> new_ltEs7(yvy79001, yvy80001, bhh, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cfc) -> new_ltEs4(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs5(yvy4000, yvy3000, bae, baf, bag) new_lt12(yvy79000, yvy80000, df) -> new_esEs9(new_compare18(yvy79000, yvy80000, df), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bch) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_esEs35(yvy400, yvy300, app(ty_Maybe, bcc)) -> new_esEs7(yvy400, yvy300, bcc) new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cgd), cfc)) -> new_ltEs7(yvy7900, yvy8000, cgd, cfc) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bcc) -> False new_esEs7(Just(yvy4000), Nothing, bcc) -> False new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Ratio, ddb)) -> new_esEs13(yvy4000, yvy3000, ddb) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_compare112(yvy233, yvy234, True, dbc, dbd) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cae), caf)) -> new_ltEs5(yvy79001, yvy80001, cae, caf) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bba), bbb)) -> new_esEs4(yvy4000, yvy3000, bba, bbb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_esEs7(yvy79000, yvy80000, ccb) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], hh) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, bcb) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy79002, yvy80002, bfc, bfd, bfe) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cag)) -> new_ltEs12(yvy79001, yvy80001, cag) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfg), cfh), cfc) -> new_ltEs5(yvy79000, yvy80000, cfg, cfh) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bbd, bbe, bbf) -> LT new_esEs7(Nothing, Nothing, bcc) -> True new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_esEs6(yvy79001, yvy80001, bgh, bha) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, ceg)) -> new_compare7(yvy79000, yvy80000, ceg) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, eg), eh)) -> new_esEs4(yvy35, yvy30, eg, eh) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, dd, de) -> new_esEs9(new_compare9(yvy79000, yvy80000, dd, de), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bch) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cfc) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(LT, LT) -> True new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bch) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_esEs7(yvy79000, yvy80000, bcb) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79000, yvy80000, cge, cgf) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfd), dfe)) -> new_esEs6(yvy4002, yvy3002, dfd, dfe) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bch) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bfh)) -> new_ltEs12(yvy79002, yvy80002, bfh) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs9(yvy79001, yvy80001, cab, cac, cad) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, bbd, bbe, bbf) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, chg, chh) -> GT new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bef, beg, beh) -> new_pePe(new_lt20(yvy79000, yvy80000, bef), new_asAs(new_esEs25(yvy79000, yvy80000, bef), new_pePe(new_lt19(yvy79001, yvy80001, beg), new_asAs(new_esEs24(yvy79001, yvy80001, beg), new_ltEs21(yvy79002, yvy80002, beh))))) new_esEs28(yvy4000, yvy3000, app(ty_[], eaf)) -> new_esEs17(yvy4000, yvy3000, eaf) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_esEs4(yvy79000, yvy80000, cbb, cbc) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dee), def), deg)) -> new_esEs5(yvy20, yvy15, dee, def, deg) new_esEs35(yvy400, yvy300, app(app(ty_@2, fa), fb)) -> new_esEs6(yvy400, yvy300, fa, fb) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dba)) -> new_ltEs16(yvy7900, yvy8000, dba) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bec)) -> new_ltEs17(yvy79000, yvy80000, bec) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bch) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfa), dfb)) -> new_esEs4(yvy20, yvy15, dfa, dfb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cfc) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs9(yvy7900, yvy8000, bef, beg, beh) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs6(yvy4000, yvy3000, cce, ccf) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cga), cfc) -> new_ltEs12(yvy79000, yvy80000, cga) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs5(yvy4000, yvy3000, ddc, ddd, dde) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_esEs7(yvy79001, yvy80001, bhc) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bga)) -> new_ltEs16(yvy79002, yvy80002, bga) new_esEs32(yvy20, yvy15, app(ty_Ratio, ded)) -> new_esEs13(yvy20, yvy15, ded) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, beb)) -> new_ltEs16(yvy79000, yvy80000, beb) new_ltEs19(yvy7900, yvy8000, app(ty_[], cdf)) -> new_ltEs17(yvy7900, yvy8000, cdf) new_compare27(yvy79000, yvy80000, False, dd, de) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, dd, de), dd, de) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcd), bch) -> new_esEs17(yvy4000, yvy3000, dcd) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs6(yvy79000, yvy80000, dd, de) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bad)) -> new_esEs13(yvy4000, yvy3000, bad) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dbb)) -> new_ltEs17(yvy7900, yvy8000, dbb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, cah)) -> new_ltEs16(yvy79001, yvy80001, cah) new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(yvy79000, yvy80000, cbd, cbe, cbf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs36(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cfc) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, cbb), cbc)) -> new_lt6(yvy79000, yvy80000, cbb, cbc) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cgd, cfc) -> True new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, dac), dad), dae)) -> new_ltEs9(yvy7900, yvy8000, dac, dad, dae) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cfc) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, chg, chh) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, chg), chg, chh) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], ef)) -> new_esEs17(yvy35, yvy30, ef) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cfc) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], bhe)) -> new_lt17(yvy79000, yvy80000, bhe) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbe), bch) -> new_esEs7(yvy4000, yvy3000, dbe) new_compare31(yvy20, yvy15, bc, bd) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_esEs13(yvy79000, yvy80000, cca) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) -> new_esEs9(new_compare16(yvy79000, yvy80000, bbd, bbe, bbf), LT) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bgh), bha)) -> new_lt10(yvy79001, yvy80001, bgh, bha) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ha)) -> new_esEs13(yvy4000, yvy3000, ha) new_ltEs12(yvy7900, yvy8000, bbg) -> new_fsEs(new_compare18(yvy7900, yvy8000, bbg)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_esEs13(yvy79000, yvy80000, df) new_ltEs21(yvy79002, yvy80002, app(ty_[], bgb)) -> new_ltEs17(yvy79002, yvy80002, bgb) new_compare0([], :(yvy80000, yvy80001), cdf) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], gc)) -> new_esEs17(yvy4001, yvy3001, gc) new_esEs25(yvy79000, yvy80000, app(ty_[], bhe)) -> new_esEs17(yvy79000, yvy80000, bhe) new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt10(yvy79000, yvy80000, dd, de) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs17(yvy79000, yvy80000, ccc) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79000, yvy80000, chb, chc) new_primCompAux0(yvy79000, yvy80000, yvy256, cdf) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cdf)) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dce), dcf), bch) -> new_esEs4(yvy4000, yvy3000, dce, dcf) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, fg)) -> new_esEs13(yvy4001, yvy3001, fg) new_esEs36(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_Maybe, dcg)) -> new_esEs7(yvy4000, yvy3000, dcg) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_@2, dch), dda)) -> new_esEs6(yvy4000, yvy3000, dch, dda) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bch) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, bbh, bca) -> GT new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, eb)) -> new_esEs13(yvy35, yvy30, eb) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], cgc), cfc) -> new_ltEs17(yvy79000, yvy80000, cgc) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], cdf) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, hf), hg)) -> new_esEs4(yvy4000, yvy3000, hf, hg) new_esEs36(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, gd), ge)) -> new_esEs4(yvy4001, yvy3001, gd, ge) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, bfa), bfb)) -> new_ltEs7(yvy79002, yvy80002, bfa, bfb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cdd), cde)) -> new_esEs4(yvy4000, yvy3000, cdd, cde) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dgf), dgg)) -> new_esEs6(yvy4001, yvy3001, dgf, dgg) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bcb) -> new_esEs9(new_compare7(yvy79000, yvy80000, bcb), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bbc) -> new_asAs(new_esEs23(yvy4000, yvy3000, bbc), new_esEs22(yvy4001, yvy3001, bbc)) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), fa, fb) -> new_asAs(new_esEs20(yvy4000, yvy3000, fa), new_esEs19(yvy4001, yvy3001, fb)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, cdf) -> new_fsEs(new_compare0(yvy7900, yvy8000, cdf)) new_esEs31(yvy35, yvy30, app(ty_Maybe, dg)) -> new_esEs7(yvy35, yvy30, dg) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, bbd, bbe, bbf) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs4(yvy79000, yvy80000, bed, bee) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt8(yvy79000, yvy80000, bbd, bbe, bbf) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], he)) -> new_esEs17(yvy4000, yvy3000, he) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bhf, bhg) -> new_pePe(new_lt5(yvy79000, yvy80000, bhf), new_asAs(new_esEs10(yvy79000, yvy80000, bhf), new_ltEs6(yvy79001, yvy80001, bhg))) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(app(ty_Either, ddg), ddh)) -> new_esEs4(yvy4000, yvy3000, ddg, ddh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bch) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_esEs13(yvy79001, yvy80001, bhb) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dhh), eaa)) -> new_esEs6(yvy4000, yvy3000, dhh, eaa) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], bah)) -> new_esEs17(yvy4000, yvy3000, bah) new_esEs35(yvy400, yvy300, app(app(ty_Either, bcg), bch)) -> new_esEs4(yvy400, yvy300, bcg, bch) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, dah)) -> new_ltEs12(yvy7900, yvy8000, dah) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, baa)) -> new_esEs7(yvy4000, yvy3000, baa) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bdb), bdc)) -> new_ltEs7(yvy79000, yvy80000, bdb, bdc) new_esEs36(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_ltEs16(Nothing, Just(yvy80000), bda) -> True new_esEs35(yvy400, yvy300, app(ty_Ratio, bbc)) -> new_esEs13(yvy400, yvy300, bbc) new_compare29(Right(yvy7900), Right(yvy8000), False, chg, chh) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, chh), chg, chh) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, chg, chh) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, bbd, bbe, bbf) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bdg), bdh)) -> new_ltEs5(yvy79000, yvy80000, bdg, bdh) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt8(yvy79001, yvy80001, bge, bgf, bgg) new_esEs32(yvy20, yvy15, app(ty_Maybe, dea)) -> new_esEs7(yvy20, yvy15, dea) new_esEs32(yvy20, yvy15, app(ty_[], deh)) -> new_esEs17(yvy20, yvy15, deh) new_esEs26(yvy4002, yvy3002, app(ty_[], dgb)) -> new_esEs17(yvy4002, yvy3002, dgb) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, bed, bee) -> new_esEs9(new_compare14(yvy79000, yvy80000, bed, bee), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bgc), bgd)) -> new_esEs4(yvy79001, yvy80001, bgc, bgd) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bbg)) -> new_ltEs12(yvy7900, yvy8000, bbg) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfc)) -> new_esEs7(yvy4002, yvy3002, dfc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, df)) -> new_lt12(yvy79000, yvy80000, df) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bhc)) -> new_lt16(yvy79001, yvy80001, bhc) new_compare13(yvy79000, yvy80000, app(app(ty_Either, cdg), cdh)) -> new_compare14(yvy79000, yvy80000, cdg, cdh) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dge)) -> new_esEs7(yvy4001, yvy3001, dge) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dbc, dbd) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cfc) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79000, yvy80000, cgg, cgh, cha) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, ccg)) -> new_esEs13(yvy4000, yvy3000, ccg) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bf, bg) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eab)) -> new_esEs13(yvy4000, yvy3000, eab) new_esEs24(yvy79001, yvy80001, app(ty_[], bhd)) -> new_esEs17(yvy79001, yvy80001, bhd) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, gf)) -> new_esEs7(yvy4000, yvy3000, gf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], cdf) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dbh), bch) -> new_esEs13(yvy4000, yvy3000, dbh) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, gg), gh)) -> new_esEs6(yvy4000, yvy3000, gg, gh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs5(yvy4000, yvy3000, eac, ead, eae) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, dd, de) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, False, bcb) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cca)) -> new_lt12(yvy79000, yvy80000, cca) new_esEs36(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, bcb) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bcb), bcb) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, fc)) -> new_esEs7(yvy4001, yvy3001, fc) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, app(ty_Ratio, bhb)) -> new_lt12(yvy79001, yvy80001, bhb) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cdf) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cdf), cdf) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, bhe) -> new_esEs9(new_compare0(yvy79000, yvy80000, bhe), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bch) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, eag), eah)) -> new_esEs4(yvy4000, yvy3000, eag, eah) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, deb), dec)) -> new_esEs6(yvy20, yvy15, deb, dec) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(ty_[], hh)) -> new_esEs17(yvy400, yvy300, hh) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgc), dgd)) -> new_esEs4(yvy4002, yvy3002, dgc, dgd) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ccb)) -> new_lt16(yvy79000, yvy80000, ccb) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_Ratio, chd)) -> new_ltEs12(yvy79000, yvy80000, chd) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, cef)) -> new_compare18(yvy79000, yvy80000, cef) new_esEs12(@0, @0) -> True new_compare23(yvy79000, yvy80000, False, bcb) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bcb), bcb) new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, chg, chh) -> EQ new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs5(yvy4002, yvy3002, dfg, dfh, dga) new_lt19(yvy79001, yvy80001, app(ty_[], bhd)) -> new_lt17(yvy79001, yvy80001, bhd) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), bcg, app(ty_[], ddf)) -> new_esEs17(yvy4000, yvy3000, ddf) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, fd), ff)) -> new_esEs6(yvy4001, yvy3001, fd, ff) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, app(ty_[], chf)) -> new_ltEs17(yvy79000, yvy80000, chf) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bcb)) -> new_lt16(yvy79000, yvy80000, bcb) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dca), dcb), dcc), bch) -> new_esEs5(yvy4000, yvy3000, dca, dcb, dcc) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bcd, bce, bcf) -> new_asAs(new_esEs28(yvy4000, yvy3000, bcd), new_asAs(new_esEs27(yvy4001, yvy3001, bce), new_esEs26(yvy4002, yvy3002, bcf))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cdc)) -> new_esEs17(yvy4000, yvy3000, cdc) new_compare110(yvy79000, yvy80000, False, dd, de) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), cgd, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, dh), ea)) -> new_esEs6(yvy35, yvy30, dh, ea) new_esEs17(:(yvy4000, yvy4001), [], hh) -> False new_esEs17([], :(yvy3000, yvy3001), hh) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dff)) -> new_esEs13(yvy4002, yvy3002, dff) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hh) -> new_asAs(new_esEs21(yvy4000, yvy3000, hh), new_esEs17(yvy4001, yvy3001, hh)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, bbd, bbe, bbf) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bbd, bbe, bbf), bbd, bbe, bbf) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dhe), dhf)) -> new_esEs4(yvy4001, yvy3001, dhe, dhf) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_gt(yvy20, yvy15, bc, bd) -> new_esEs9(new_compare31(yvy20, yvy15, bc, bd), GT) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs5(yvy4001, yvy3001, dha, dhb, dhc) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_compare0([], [], x0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(LT, LT) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_ltEs15(x0, x1) new_primCmpNat1(Zero, Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_esEs36(x0, x1, ty_Integer) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs16(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(x0, x1) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_[], x2)) new_compare17(@0, @0) new_esEs32(x0, x1, ty_Float) new_compare23(x0, x1, True, x2) new_primCmpNat1(Succ(x0), Zero) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat0(Zero, x0) new_esEs17(:(x0, x1), [], x2) new_esEs36(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Just(x0), x1) new_sr(x0, x1) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs16(Nothing, Nothing, x0) new_esEs9(LT, LT) new_compare111(x0, x1, False, x2, x3) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_compare23(x0, x1, False, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, x0) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, ty_Integer) new_primCmpNat0(x0, Succ(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare13(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Nothing, x1) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, True, x2, x3) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_gt1(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare114(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Ordering) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt0(x0, x1, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs8(Integer(x0), Integer(x1)) new_lt16(x0, x1, x2) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, x4) new_esEs35(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs17([], :(x0, x1), x2) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, x2, x3) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(ty_Maybe, x2)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt8(x0, x1, x2, x3, x4) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs6(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt19(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs19(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_compare110(x0, x1, True, x2, x3) new_esEs19(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Integer) new_compare7(x0, x1, x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_compare28(x0, x1, False, x2, x3, x4) new_esEs32(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs13(True, True) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_ltEs16(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs21(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare13(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Float) new_lt17(x0, x1, x2) new_esEs32(x0, x1, ty_Ordering) new_compare9(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs17([], [], x0) new_ltEs19(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_gt2(x0, x1, x2, x3) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, True, x2) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_compare10(x0, x1, True) new_compare10(x0, x1, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(False, False) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare113(x0, x1, False, x2) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare32(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat1(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs35(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_compare27(x0, x1, True, x2, x3) new_ltEs4(EQ, EQ) new_esEs9(GT, GT) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, x2, x3) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_compare30(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs36(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare27(x0, x1, False, x2, x3) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare29(Left(x0), Left(x1), False, x2, x3) new_primCompAux00(x0, EQ) new_compare112(x0, x1, False, x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare110(x0, x1, False, x2, x3) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs17(x0, x1, x2) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs25(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs7(Nothing, Nothing, x0) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_compare111(x0, x1, True, x2, x3) new_lt19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, ty_Float) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_lt12(x0, x1, x2) new_esEs27(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) 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_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 *new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 8 >= 7, 9 >= 8, 10 >= 9 *new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs2(yvy4000, yvy3000, bf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(ty_Maybe, cb)) -> new_esEs(yvy4001, yvy3001, cb) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(yvy4000, yvy3000, bcg, bch) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bae) -> new_esEs2(yvy4001, yvy3001, bae) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_[], bdh)) -> new_esEs2(yvy4000, yvy3000, bdh) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bag), bah)) -> new_esEs0(yvy4000, yvy3000, bag, bah) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(ty_@2, cc), cd)) -> new_esEs0(yvy4001, yvy3001, cc, cd) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, hg), hh), baa), eg, gc) -> new_esEs1(yvy4000, yvy3000, hg, hh, baa) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, ed), ee), de) -> new_esEs3(yvy4000, yvy3000, ed, ee) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_Maybe, bdb)) -> new_esEs(yvy4000, yvy3000, bdb) new_esEs(Just(yvy4000), Just(yvy3000), app(ty_Maybe, h)) -> new_esEs(yvy4000, yvy3000, h) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(ty_[], fg)) -> new_esEs2(yvy4002, yvy3002, fg) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(ty_[], ha), gc) -> new_esEs2(yvy4001, yvy3001, ha) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(yvy4000, yvy3000, bca, bcb) new_esEs(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(yvy4000, yvy3000, bc, bd, be) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(yvy4000, yvy3000, bea, beb) new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ba), bb)) -> new_esEs0(yvy4000, yvy3000, ba, bb) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(ty_Either, db), dc)) -> new_esEs3(yvy4001, yvy3001, db, dc) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(ty_Maybe, eh)) -> new_esEs(yvy4002, yvy3002, eh) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], bab), eg, gc) -> new_esEs2(yvy4000, yvy3000, bab) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, dd), de) -> new_esEs(yvy4000, yvy3000, dd) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(yvy4000, yvy3000, bba, bbb, bbc) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(ty_Maybe, gb), gc) -> new_esEs(yvy4001, yvy3001, gb) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, bac), bad), eg, gc) -> new_esEs3(yvy4000, yvy3000, bac, bad) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bde, bdf, bdg) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs1(yvy4001, yvy3001, ce, cf, cg) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(ty_@2, gd), ge), gc) -> new_esEs0(yvy4001, yvy3001, gd, ge) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, hd), eg, gc) -> new_esEs(yvy4000, yvy3000, hd) new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(ty_@2, fa), fb)) -> new_esEs0(yvy4002, yvy3002, fa, fb) new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bbh) -> new_esEs(yvy4000, yvy3000, bbg) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], ec), de) -> new_esEs2(yvy4000, yvy3000, ec) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs1(yvy4002, yvy3002, fc, fd, ff) new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bg), bh)) -> new_esEs3(yvy4000, yvy3000, bg, bh) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(ty_Either, hb), hc), gc) -> new_esEs3(yvy4001, yvy3001, hb, hc) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, baf)) -> new_esEs(yvy4000, yvy3000, baf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(ty_[], da)) -> new_esEs2(yvy4001, yvy3001, da) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, he), hf), eg, gc) -> new_esEs0(yvy4000, yvy3000, he, hf) new_esEs3(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(yvy4000, yvy3000, bcc, bcd, bce) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], bbd)) -> new_esEs2(yvy4000, yvy3000, bbd) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(ty_Either, fh), ga)) -> new_esEs3(yvy4002, yvy3002, fh, ga) new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(yvy4000, yvy3000, bbe, bbf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, df), dg), de) -> new_esEs0(yvy4000, yvy3000, df, dg) new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(app(ty_@3, gf), gg), gh), gc) -> new_esEs1(yvy4001, yvy3001, gf, gg, gh) new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_[], bcf), bbh) -> new_esEs2(yvy4000, yvy3000, bcf) new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, dh), ea), eb), de) -> new_esEs1(yvy4000, yvy3000, dh, ea, eb) R is empty. Q is empty. 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_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, baf)) -> new_esEs(yvy4000, yvy3000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bag), bah)) -> new_esEs0(yvy4000, yvy3000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yvy4000), Just(yvy3000), app(ty_Maybe, h)) -> new_esEs(yvy4000, yvy3000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ba), bb)) -> new_esEs0(yvy4000, yvy3000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(yvy4000, yvy3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bg), bh)) -> new_esEs3(yvy4000, yvy3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(yvy4000, yvy3000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(yvy4000), Just(yvy3000), app(ty_[], bf)) -> new_esEs2(yvy4000, yvy3000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bc), bd), be)) -> new_esEs1(yvy4000, yvy3000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bae) -> new_esEs2(yvy4001, yvy3001, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], bbd)) -> new_esEs2(yvy4000, yvy3000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_Maybe, bdb)) -> new_esEs(yvy4000, yvy3000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bbh) -> new_esEs(yvy4000, yvy3000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(ty_Maybe, cb)) -> new_esEs(yvy4001, yvy3001, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, dd), de) -> new_esEs(yvy4000, yvy3000, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(ty_Maybe, eh)) -> new_esEs(yvy4002, yvy3002, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(ty_Maybe, gb), gc) -> new_esEs(yvy4001, yvy3001, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, hd), eg, gc) -> new_esEs(yvy4000, yvy3000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(yvy4000, yvy3000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(ty_@2, cc), cd)) -> new_esEs0(yvy4001, yvy3001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, df), dg), de) -> new_esEs0(yvy4000, yvy3000, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(ty_@2, gd), ge), gc) -> new_esEs0(yvy4001, yvy3001, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(ty_@2, fa), fb)) -> new_esEs0(yvy4002, yvy3002, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, he), hf), eg, gc) -> new_esEs0(yvy4000, yvy3000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(yvy4000, yvy3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(yvy4000, yvy3000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(ty_[], bdh)) -> new_esEs2(yvy4000, yvy3000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(yvy4000), Left(yvy3000), app(ty_[], bcf), bbh) -> new_esEs2(yvy4000, yvy3000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(yvy4000), Right(yvy3000), bda, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bcc), bcd), bce), bbh) -> new_esEs1(yvy4000, yvy3000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, ed), ee), de) -> new_esEs3(yvy4000, yvy3000, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(ty_Either, db), dc)) -> new_esEs3(yvy4001, yvy3001, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, bac), bad), eg, gc) -> new_esEs3(yvy4000, yvy3000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(ty_Either, hb), hc), gc) -> new_esEs3(yvy4001, yvy3001, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(ty_Either, fh), ga)) -> new_esEs3(yvy4002, yvy3002, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], ec), de) -> new_esEs2(yvy4000, yvy3000, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(ty_[], da)) -> new_esEs2(yvy4001, yvy3001, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(ty_[], fg)) -> new_esEs2(yvy4002, yvy3002, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(ty_[], ha), gc) -> new_esEs2(yvy4001, yvy3001, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], bab), eg, gc) -> new_esEs2(yvy4000, yvy3000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ca, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs1(yvy4001, yvy3001, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, dh), ea), eb), de) -> new_esEs1(yvy4000, yvy3000, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, hg), hh), baa), eg, gc) -> new_esEs1(yvy4000, yvy3000, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, eg, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs1(yvy4002, yvy3002, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ef, app(app(app(ty_@3, gf), gg), gh), gc) -> new_esEs1(yvy4001, yvy3001, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = x_1 + x_2 + x_3 + x_4 + x_5 POL(EQ) = 0 POL(False) = 0 POL(GT) = 1 POL(LT) = 0 POL(Neg(x_1)) = 1 POL(Pos(x_1)) = 0 POL(Succ(x_1)) = 0 POL(True) = 0 POL(Zero) = 0 POL(new_compare25(x_1, x_2)) = 1 + x_1 + x_2 POL(new_esEs9(x_1, x_2)) = 0 POL(new_lt15(x_1, x_2)) = 0 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + x_5 + x_6 + x_7 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = x_10 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = x_10 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = x_10 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = 1 + x_10 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3Size_r0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_primCmpInt(x_1, x_2)) = 0 POL(new_primCmpInt0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt2(x_1, x_2)) = 1 + x_1 POL(new_primCmpInt3(x_1, x_2)) = 1 + x_1 POL(new_primCmpNat0(x_1, x_2)) = x_1 POL(new_primCmpNat1(x_1, x_2)) = 1 POL(new_primCmpNat2(x_1, x_2)) = x_2 POL(new_primMulInt(x_1, x_2)) = 1 POL(new_primMulNat0(x_1, x_2)) = 0 POL(new_primPlusNat0(x_1, x_2)) = 0 POL(new_primPlusNat1(x_1, x_2)) = 0 POL(new_sIZE_RATIO) = 0 POL(new_sizeFM(x_1, x_2, x_3, x_4)) = x_1 + x_2 + x_3 + x_4 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8)) = x_2 + x_3 POL(new_sr(x_1, x_2)) = 0 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: none ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (44) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 1 less node. ---------------------------------------- (45) Complex Obligation (AND) ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (47) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6, 16 >= 7 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15, 7 >= 16 ---------------------------------------- (48) YES ---------------------------------------- (49) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) QDPOrderProof (EQUIVALENT) We use the reduction pair processor [LPAR04,JAR06]. The following pairs can be oriented strictly and are deleted. new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) 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) = 0 POL(False) = 1 POL(GT) = 0 POL(LT) = 0 POL(Neg(x_1)) = 0 POL(Pos(x_1)) = 1 POL(Succ(x_1)) = 0 POL(True) = 1 POL(Zero) = 0 POL(new_compare25(x_1, x_2)) = 1 + x_1 + x_2 POL(new_esEs9(x_1, x_2)) = 1 POL(new_lt15(x_1, x_2)) = 1 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + x_5 + x_6 + x_7 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = 1 + x_10 + x_13 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = 1 + x_10 + x_13 + x_14 + x_15 + x_16 + x_6 + x_7 + x_9 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 POL(new_primCmpInt(x_1, x_2)) = 0 POL(new_primCmpInt0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt2(x_1, x_2)) = 1 + x_1 POL(new_primCmpNat0(x_1, x_2)) = 1 + x_1 POL(new_primCmpNat1(x_1, x_2)) = 0 POL(new_primCmpNat2(x_1, x_2)) = x_2 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) = 1 POL(new_sizeFM(x_1, x_2, x_3, x_4)) = 1 + x_1 + x_2 + x_3 + x_4 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8)) = x_2 + x_3 + x_4 + x_5 + x_7 POL(new_sr(x_1, x_2)) = 1 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: new_esEs9(LT, LT) -> True new_esEs9(EQ, LT) -> False new_esEs9(GT, LT) -> False new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) ---------------------------------------- (51) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (52) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (53) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The TRS R consists of the following rules: new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_primCmpNat1(Zero, Zero) -> EQ new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primCmpNat0(yvy7900, Zero) -> GT new_esEs9(EQ, EQ) -> True new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_primCmpNat2(Zero, yvy7900) -> LT new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primPlusNat1(Zero, Zero) -> Zero new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 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_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sIZE_RATIO new_esEs9(LT, LT) new_esEs9(EQ, EQ) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpNat2(Succ(x0), x1) new_primPlusNat0(Succ(x0), x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt3(x0, x1) new_primCmpNat2(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare25(x0, x1) new_primMulInt(Neg(x0), Neg(x1)) new_primMulNat0(Zero, Zero) new_primCmpNat0(x0, Succ(x1)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Zero) new_primPlusNat1(Succ(x0), Zero) new_primCmpNat1(Zero, Zero) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpNat1(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs9(GT, GT) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_primCmpNat1(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primCmpInt2(x0, x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primMulNat0(Zero, Succ(x0)) new_primPlusNat0(Zero, x0) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primCmpNat0(x0, Zero) new_primPlusNat1(Zero, Succ(x0)) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_sizeFM(EmptyFM, x0, x1, x2) 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_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15, 7 >= 16 *new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6, 16 >= 7 ---------------------------------------- (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_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) new_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs9(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs9(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bdd), bde), bdf) -> new_ltEs7(yvy79000, yvy80000, bdd, bde) new_ltEs7(Right(yvy79000), Left(yvy80000), beg, bdf) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dhd)) -> new_esEs13(yvy4001, yvy3001, dhd) new_ltEs6(yvy79001, yvy80001, app(ty_[], eg)) -> new_ltEs17(yvy79001, yvy80001, eg) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bdg), bdh), bea), bdf) -> new_ltEs9(yvy79000, yvy80000, bdg, bdh, bea) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, baa) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), dbe, dbf) -> False new_esEs4(Right(yvy4000), Left(yvy3000), dbe, dbf) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, cdb) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, dd), de)) -> new_ltEs5(yvy7900, yvy8000, dd, de) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cbb), cbc)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, app(ty_Ratio, ccc)) -> new_esEs13(yvy400, yvy300, ccc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gg)) -> new_esEs7(yvy4000, yvy3000, gg) new_ltEs16(Just(yvy79000), Nothing, cdb) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs34(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Maybe, bfh)) -> new_ltEs16(yvy79000, yvy80000, bfh) new_compare111(yvy226, yvy227, True, cee, cef) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, eac)) -> new_esEs7(yvy4000, yvy3000, eac) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, cdb)) -> new_ltEs16(yvy7900, yvy8000, cdb) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bee), bdf) -> new_ltEs16(yvy79000, yvy80000, bee) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_esEs33(yvy400, yvy300, app(ty_[], cah)) -> new_esEs17(yvy400, yvy300, cah) new_compare13(yvy79000, yvy80000, app(app(ty_@2, bbb), bbc)) -> new_compare9(yvy79000, yvy80000, bbb, bbc) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs9(yvy79000, yvy80000, cfc, cfd, cfe) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, bdf) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(yvy4000, yvy3000, cab, cac, cad) new_esEs27(yvy4001, yvy3001, app(ty_[], dhh)) -> new_esEs17(yvy4001, yvy3001, dhh) new_lt5(yvy79000, yvy80000, app(ty_[], gb)) -> new_lt17(yvy79000, yvy80000, gb) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_lt6(yvy79000, yvy80000, cgc, cgd) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_lt10(yvy79000, yvy80000, ff, fg) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, bag), bah), bba)) -> new_compare16(yvy79000, yvy80000, bag, bah, bba) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hc), hd), he)) -> new_esEs5(yvy4000, yvy3000, hc, hd, he) new_lt19(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_lt6(yvy79001, yvy80001, chg, chh) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy79000, yvy80000, ff, fg) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, cfh)) -> new_ltEs12(yvy79000, yvy80000, cfh) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(yvy7900, yvy8000, cdc, cdd) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_compare13(yvy79000, yvy80000, app(ty_[], bbf)) -> new_compare0(yvy79000, yvy80000, bbf) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(yvy35, yvy30, bcf, bcg, bch) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy4001, yvy3001, bgh, bha, bhb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79002, yvy80002, chb, chc) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, bab, bac) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, bab, bac), bab, bac) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, cgc, cgd) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, cgc, cgd), cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_lt8(yvy79000, yvy80000, fb, fc, fd) new_primCompAux00(yvy260, GT) -> GT new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(yvy79000, yvy80000, gc, gd, ge) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbh), dca), dbf) -> new_esEs6(yvy4000, yvy3000, dbh, dca) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, cdh), cea)) -> new_ltEs5(yvy7900, yvy8000, cdh, cea) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, bab, bac) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs5(yvy79001, yvy80001, daa, dab, dac) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, df), dg)) -> new_ltEs7(yvy79001, yvy80001, df, dg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, bdf) -> new_ltEs4(yvy79000, yvy80000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(yvy4000, yvy3000, cbe, cbf, cbg) new_lt12(yvy79000, yvy80000, bbg) -> new_esEs9(new_compare18(yvy79000, yvy80000, bbg), LT) new_esEs34(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, dbf) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, beg), bdf)) -> new_ltEs7(yvy7900, yvy8000, beg, bdf) new_esEs7(Nothing, Just(yvy3000), gf) -> False new_esEs7(Just(yvy4000), Nothing, gf) -> False new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Ratio, ddd)) -> new_esEs13(yvy4000, yvy3000, ddd) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, ceg, ceh) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, ec), ed)) -> new_ltEs5(yvy79001, yvy80001, ec, ed) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(yvy4000, yvy3000, cca, ccb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_esEs7(yvy79000, yvy80000, ga) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], cah) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, baa) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79002, yvy80002, cgg, cgh, cha) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, ee)) -> new_ltEs12(yvy79001, yvy80001, ee) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, beb), bec), bdf) -> new_ltEs5(yvy79000, yvy80000, beb, bec) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, gc, gd, ge) -> LT new_esEs7(Nothing, Nothing, gf) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_esEs6(yvy79001, yvy80001, dad, dae) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, bbe)) -> new_compare7(yvy79000, yvy80000, bbe) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, bdb), bdc)) -> new_esEs4(yvy35, yvy30, bdb, bdc) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, bab, bac) -> new_esEs9(new_compare9(yvy79000, yvy80000, bab, bac), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, dbf) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, bdf) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, dbf) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, app(ty_Maybe, gf)) -> new_esEs7(yvy400, yvy300, gf) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_esEs7(yvy79000, yvy80000, baa) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_Either, beh), bfa)) -> new_ltEs7(yvy79000, yvy80000, beh, bfa) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfh), dga)) -> new_esEs6(yvy4002, yvy3002, dfh, dga) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs34(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, dbf) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs9(yvy79001, yvy80001, dh, ea, eb) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, chd)) -> new_ltEs12(yvy79002, yvy80002, chd) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare11(yvy79000, yvy80000, False, gc, gd, ge) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, cce, ccf) -> GT new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), ccg, cch, cda) -> new_pePe(new_lt20(yvy79000, yvy80000, ccg), new_asAs(new_esEs25(yvy79000, yvy80000, ccg), new_pePe(new_lt19(yvy79001, yvy80001, cch), new_asAs(new_esEs24(yvy79001, yvy80001, cch), new_ltEs21(yvy79002, yvy80002, cda))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ebb)) -> new_esEs17(yvy4000, yvy3000, ebb) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_esEs4(yvy79000, yvy80000, eh, fa) new_esEs33(yvy400, yvy300, app(app(ty_Either, dbe), dbf)) -> new_esEs4(yvy400, yvy300, dbe, dbf) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs5(yvy20, yvy15, dfa, dfb, dfc) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, cec)) -> new_ltEs16(yvy7900, yvy8000, cec) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], cgb)) -> new_ltEs17(yvy79000, yvy80000, cgb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, dbf) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfe), dff)) -> new_esEs4(yvy20, yvy15, dfe, dff) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, bdf) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs9(yvy7900, yvy8000, ccg, cch, cda) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gh), ha)) -> new_esEs6(yvy4000, yvy3000, gh, ha) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bed), bdf) -> new_ltEs12(yvy79000, yvy80000, bed) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs5(yvy4000, yvy3000, dde, ddf, ddg) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_esEs7(yvy79001, yvy80001, dag) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, che)) -> new_ltEs16(yvy79002, yvy80002, che) new_esEs32(yvy20, yvy15, app(ty_Ratio, deh)) -> new_esEs13(yvy20, yvy15, deh) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs19(yvy7900, yvy8000, app(ty_[], bad)) -> new_ltEs17(yvy7900, yvy8000, bad) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cga)) -> new_ltEs16(yvy79000, yvy80000, cga) new_compare27(yvy79000, yvy80000, False, bab, bac) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, bab, bac), bab, bac) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcf), dbf) -> new_esEs17(yvy4000, yvy3000, dcf) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy79000, yvy80000, bab, bac) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cbd)) -> new_esEs13(yvy4000, yvy3000, cbd) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], ced)) -> new_ltEs17(yvy7900, yvy8000, ced) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, ef)) -> new_ltEs16(yvy79001, yvy80001, ef) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs5(yvy79000, yvy80000, fb, fc, fd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs33(yvy400, yvy300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy400, yvy300, dbb, dbc, dbd) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, bdf) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_lt6(yvy79000, yvy80000, eh, fa) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), beg, bdf) -> True new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs9(yvy7900, yvy8000, cde, cdf, cdg) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, bdf) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, cce, ccf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cce), cce, ccf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], bda)) -> new_esEs17(yvy35, yvy30, bda) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, bdf) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], dba)) -> new_lt17(yvy79000, yvy80000, dba) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbg), dbf) -> new_esEs7(yvy4000, yvy3000, dbg) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_compare31(yvy20, yvy15, dec, ded) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dec), dec, ded) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_esEs13(yvy79000, yvy80000, fh) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, gc, gd, ge) -> new_esEs9(new_compare16(yvy79000, yvy80000, gc, gd, ge), LT) new_primCmpNat0(yvy7900, Zero) -> GT new_lt19(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_lt10(yvy79001, yvy80001, dad, dae) new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, caa)) -> new_esEs13(yvy4000, yvy3000, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs12(yvy7900, yvy8000, ccd) -> new_fsEs(new_compare18(yvy7900, yvy8000, ccd)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_esEs13(yvy79000, yvy80000, bbg) new_ltEs21(yvy79002, yvy80002, app(ty_[], chf)) -> new_ltEs17(yvy79002, yvy80002, chf) new_compare0([], :(yvy80000, yvy80001), bad) -> LT new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) new_esEs25(yvy79000, yvy80000, app(ty_[], dba)) -> new_esEs17(yvy79000, yvy80000, dba) new_lt20(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_lt10(yvy79000, yvy80000, bab, bac) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], gb)) -> new_esEs17(yvy79000, yvy80000, gb) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_@2, bfe), bff)) -> new_ltEs5(yvy79000, yvy80000, bfe, bff) new_primCompAux0(yvy79000, yvy80000, yvy256, bad) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, bad)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcg), dch), dbf) -> new_esEs4(yvy4000, yvy3000, dcg, dch) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bgg)) -> new_esEs13(yvy4001, yvy3001, bgg) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Maybe, dda)) -> new_esEs7(yvy4000, yvy3000, dda) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_@2, ddb), ddc)) -> new_esEs6(yvy4000, yvy3000, ddb, ddc) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, dbf) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, cee, cef) -> GT new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, bce)) -> new_esEs13(yvy35, yvy30, bce) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], bef), bdf) -> new_ltEs17(yvy79000, yvy80000, bef) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], bad) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, caf), cag)) -> new_esEs4(yvy4000, yvy3000, caf, cag) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy4001, yvy3001, bhd, bhe) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79002, yvy80002, cge, cgf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hg), hh)) -> new_esEs4(yvy4000, yvy3000, hg, hh) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dhb), dhc)) -> new_esEs6(yvy4001, yvy3001, dhb, dhc) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, baa) -> new_esEs9(new_compare7(yvy79000, yvy80000, baa), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ccc) -> new_asAs(new_esEs23(yvy4000, yvy3000, ccc), new_esEs22(yvy4001, yvy3001, ccc)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgb, bgc) -> new_asAs(new_esEs20(yvy4000, yvy3000, bgb), new_esEs19(yvy4001, yvy3001, bgc)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, bad) -> new_fsEs(new_compare0(yvy7900, yvy8000, bad)) new_esEs31(yvy35, yvy30, app(ty_Maybe, bcb)) -> new_esEs7(yvy35, yvy30, bcb) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs33(yvy400, yvy300, app(app(ty_@2, bgb), bgc)) -> new_esEs6(yvy400, yvy300, bgb, bgc) new_compare28(yvy79000, yvy80000, True, gc, gd, ge) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_esEs4(yvy79000, yvy80000, cgc, cgd) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_lt8(yvy79000, yvy80000, gc, gd, ge) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], cae)) -> new_esEs17(yvy4000, yvy3000, cae) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), dd, de) -> new_pePe(new_lt5(yvy79000, yvy80000, dd), new_asAs(new_esEs10(yvy79000, yvy80000, dd), new_ltEs6(yvy79001, yvy80001, de))) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_Either, dea), deb)) -> new_esEs4(yvy4000, yvy3000, dea, deb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, dbf) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_esEs13(yvy79001, yvy80001, daf) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, ead), eae)) -> new_esEs6(yvy4000, yvy3000, ead, eae) new_esEs34(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, app(ty_[], cbh)) -> new_esEs17(yvy4000, yvy3000, cbh) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, ceb)) -> new_ltEs12(yvy7900, yvy8000, ceb) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cba)) -> new_esEs7(yvy4000, yvy3000, cba) new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, cfa), cfb)) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs16(Nothing, Just(yvy80000), cdb) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, cce, ccf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, ccf), cce, ccf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, cce, ccf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, gc, gd, ge) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cff), cfg)) -> new_ltEs5(yvy79000, yvy80000, cff, cfg) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_lt8(yvy79001, yvy80001, daa, dab, dac) new_esEs32(yvy20, yvy15, app(ty_Maybe, dee)) -> new_esEs7(yvy20, yvy15, dee) new_esEs32(yvy20, yvy15, app(ty_[], dfd)) -> new_esEs17(yvy20, yvy15, dfd) new_esEs26(yvy4002, yvy3002, app(ty_[], dgf)) -> new_esEs17(yvy4002, yvy3002, dgf) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, cgc, cgd) -> new_esEs9(new_compare14(yvy79000, yvy80000, cgc, cgd), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, ccd)) -> new_ltEs12(yvy7900, yvy8000, ccd) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_esEs4(yvy79001, yvy80001, chg, chh) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfg)) -> new_esEs7(yvy4002, yvy3002, dfg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_lt12(yvy79000, yvy80000, bbg) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_lt16(yvy79001, yvy80001, dag) new_compare13(yvy79000, yvy80000, app(app(ty_Either, bae), baf)) -> new_compare14(yvy79000, yvy80000, bae, baf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dha)) -> new_esEs7(yvy4001, yvy3001, dha) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, ceg, ceh) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, bdf) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs9(yvy79000, yvy80000, bfb, bfc, bfd) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hb)) -> new_esEs13(yvy4000, yvy3000, hb) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bbh, bca) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bca), bbh, bca) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eaf)) -> new_esEs13(yvy4000, yvy3000, eaf) new_esEs24(yvy79001, yvy80001, app(ty_[], dah)) -> new_esEs17(yvy79001, yvy80001, dah) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], bad) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dcb), dbf) -> new_esEs13(yvy4000, yvy3000, dcb) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bhg), bhh)) -> new_esEs6(yvy4000, yvy3000, bhg, bhh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs5(yvy4000, yvy3000, eag, eah, eba) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, bab, bac) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_lt5(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_lt12(yvy79000, yvy80000, fh) new_compare113(yvy79000, yvy80000, False, baa) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, baa) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, baa), baa) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bgd)) -> new_esEs7(yvy4001, yvy3001, bgd) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare10(yvy79000, yvy80000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bad) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bad), bad) new_primPlusNat1(Zero, Zero) -> Zero new_lt19(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_lt12(yvy79001, yvy80001, daf) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, dba) -> new_esEs9(new_compare0(yvy79000, yvy80000, dba), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, dbf) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, ebc), ebd)) -> new_esEs4(yvy4000, yvy3000, ebc, ebd) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, def), deg)) -> new_esEs6(yvy20, yvy15, def, deg) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgg), dgh)) -> new_esEs4(yvy4002, yvy3002, dgg, dgh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_lt16(yvy79000, yvy80000, ga) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Ratio, bfg)) -> new_ltEs12(yvy79000, yvy80000, bfg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, bbd)) -> new_compare18(yvy79000, yvy80000, bbd) new_esEs12(@0, @0) -> True new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, cce, ccf) -> EQ new_compare23(yvy79000, yvy80000, False, baa) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, baa), baa) new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs5(yvy4002, yvy3002, dgc, dgd, dge) new_lt19(yvy79001, yvy80001, app(ty_[], dah)) -> new_lt17(yvy79001, yvy80001, dah) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_[], ddh)) -> new_esEs17(yvy4000, yvy3000, ddh) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy4001, yvy3001, bge, bgf) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_[], bga)) -> new_ltEs17(yvy79000, yvy80000, bga) new_lt20(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_lt16(yvy79000, yvy80000, baa) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dcc), dcd), dce), dbf) -> new_esEs5(yvy4000, yvy3000, dcc, dcd, dce) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dbb, dbc, dbd) -> new_asAs(new_esEs28(yvy4000, yvy3000, dbb), new_asAs(new_esEs27(yvy4001, yvy3001, dbc), new_esEs26(yvy4002, yvy3002, dbd))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hf)) -> new_esEs17(yvy4000, yvy3000, hf) new_esEs34(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_compare110(yvy79000, yvy80000, False, bab, bac) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_primEqNat0(Zero, Zero) -> True new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs4(GT, GT) -> True new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, bcc), bcd)) -> new_esEs6(yvy35, yvy30, bcc, bcd) new_esEs17(:(yvy4000, yvy4001), [], cah) -> False new_esEs17([], :(yvy3000, yvy3001), cah) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dgb)) -> new_esEs13(yvy4002, yvy3002, dgb) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cah) -> new_asAs(new_esEs21(yvy4000, yvy3000, cah), new_esEs17(yvy4001, yvy3001, cah)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, gc, gd, ge) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, eaa), eab)) -> new_esEs4(yvy4001, yvy3001, eaa, eab) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs5(yvy4001, yvy3001, dhe, dhf, dhg) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_compare110(x0, x1, True, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(LT, LT) new_esEs34(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(x0, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat1(Zero, Zero) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs32(x0, x1, ty_Integer) new_lt8(x0, x1, x2, x3, x4) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_lt5(x0, x1, app(ty_Maybe, x2)) new_compare17(@0, @0) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(x0, x1, x2, x3) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat2(Zero, x0) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(x0, Succ(x1)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(Nothing, Just(x0), x1) new_compare113(x0, x1, False, x2) new_esEs20(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare111(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare30(x0, x1, x2, x3) new_compare114(x0, x1, False) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17([], :(x0, x1), x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs16(Nothing, Just(x0), x1) new_lt16(x0, x1, x2) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_compare110(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_[], x2)) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs33(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Nothing, x1) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs33(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_compare112(x0, x1, False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_compare13(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare25(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs17(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs13(True, True) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_@0) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_lt7(x0, x1) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, False, x2) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs7(Nothing, Nothing, x0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare15(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(GT, LT) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Nothing, Nothing, x0) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt10(x0, x1, x2, x3) new_compare10(x0, x1, False) new_ltEs13(False, False) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare28(x0, x1, False, x2, x3, x4) new_lt13(x0, x1) new_compare27(x0, x1, False, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_compare32(x0, x1, x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare7(x0, x1, x2) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare16(x0, x1, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(x0, x1, x2) new_ltEs4(EQ, EQ) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_lt20(x0, x1, ty_@0) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(x0, x1, ty_Char) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2, x3) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare31(x0, x1, x2, x3) new_esEs25(x0, x1, ty_Int) new_compare0([], [], x0) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs21(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt5(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare13(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, EQ) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_Bool) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, True, x2, x3) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt17(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (60) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (61) Complex Obligation (AND) ---------------------------------------- (62) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs9(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bdd), bde), bdf) -> new_ltEs7(yvy79000, yvy80000, bdd, bde) new_ltEs7(Right(yvy79000), Left(yvy80000), beg, bdf) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dhd)) -> new_esEs13(yvy4001, yvy3001, dhd) new_ltEs6(yvy79001, yvy80001, app(ty_[], eg)) -> new_ltEs17(yvy79001, yvy80001, eg) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bdg), bdh), bea), bdf) -> new_ltEs9(yvy79000, yvy80000, bdg, bdh, bea) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, baa) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), dbe, dbf) -> False new_esEs4(Right(yvy4000), Left(yvy3000), dbe, dbf) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, cdb) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, dd), de)) -> new_ltEs5(yvy7900, yvy8000, dd, de) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cbb), cbc)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, app(ty_Ratio, ccc)) -> new_esEs13(yvy400, yvy300, ccc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gg)) -> new_esEs7(yvy4000, yvy3000, gg) new_ltEs16(Just(yvy79000), Nothing, cdb) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs34(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Maybe, bfh)) -> new_ltEs16(yvy79000, yvy80000, bfh) new_compare111(yvy226, yvy227, True, cee, cef) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, eac)) -> new_esEs7(yvy4000, yvy3000, eac) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, cdb)) -> new_ltEs16(yvy7900, yvy8000, cdb) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bee), bdf) -> new_ltEs16(yvy79000, yvy80000, bee) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_esEs33(yvy400, yvy300, app(ty_[], cah)) -> new_esEs17(yvy400, yvy300, cah) new_compare13(yvy79000, yvy80000, app(app(ty_@2, bbb), bbc)) -> new_compare9(yvy79000, yvy80000, bbb, bbc) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs9(yvy79000, yvy80000, cfc, cfd, cfe) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, bdf) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(yvy4000, yvy3000, cab, cac, cad) new_esEs27(yvy4001, yvy3001, app(ty_[], dhh)) -> new_esEs17(yvy4001, yvy3001, dhh) new_lt5(yvy79000, yvy80000, app(ty_[], gb)) -> new_lt17(yvy79000, yvy80000, gb) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_lt6(yvy79000, yvy80000, cgc, cgd) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_lt10(yvy79000, yvy80000, ff, fg) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, bag), bah), bba)) -> new_compare16(yvy79000, yvy80000, bag, bah, bba) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hc), hd), he)) -> new_esEs5(yvy4000, yvy3000, hc, hd, he) new_lt19(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_lt6(yvy79001, yvy80001, chg, chh) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy79000, yvy80000, ff, fg) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, cfh)) -> new_ltEs12(yvy79000, yvy80000, cfh) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(yvy7900, yvy8000, cdc, cdd) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_compare13(yvy79000, yvy80000, app(ty_[], bbf)) -> new_compare0(yvy79000, yvy80000, bbf) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(yvy35, yvy30, bcf, bcg, bch) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy4001, yvy3001, bgh, bha, bhb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79002, yvy80002, chb, chc) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, bab, bac) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, bab, bac), bab, bac) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, cgc, cgd) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, cgc, cgd), cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_lt8(yvy79000, yvy80000, fb, fc, fd) new_primCompAux00(yvy260, GT) -> GT new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(yvy79000, yvy80000, gc, gd, ge) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbh), dca), dbf) -> new_esEs6(yvy4000, yvy3000, dbh, dca) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, cdh), cea)) -> new_ltEs5(yvy7900, yvy8000, cdh, cea) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, bab, bac) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs5(yvy79001, yvy80001, daa, dab, dac) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, df), dg)) -> new_ltEs7(yvy79001, yvy80001, df, dg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, bdf) -> new_ltEs4(yvy79000, yvy80000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(yvy4000, yvy3000, cbe, cbf, cbg) new_lt12(yvy79000, yvy80000, bbg) -> new_esEs9(new_compare18(yvy79000, yvy80000, bbg), LT) new_esEs34(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, dbf) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, beg), bdf)) -> new_ltEs7(yvy7900, yvy8000, beg, bdf) new_esEs7(Nothing, Just(yvy3000), gf) -> False new_esEs7(Just(yvy4000), Nothing, gf) -> False new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Ratio, ddd)) -> new_esEs13(yvy4000, yvy3000, ddd) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, ceg, ceh) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, ec), ed)) -> new_ltEs5(yvy79001, yvy80001, ec, ed) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(yvy4000, yvy3000, cca, ccb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_esEs7(yvy79000, yvy80000, ga) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], cah) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, baa) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79002, yvy80002, cgg, cgh, cha) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, ee)) -> new_ltEs12(yvy79001, yvy80001, ee) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, beb), bec), bdf) -> new_ltEs5(yvy79000, yvy80000, beb, bec) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, gc, gd, ge) -> LT new_esEs7(Nothing, Nothing, gf) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_esEs6(yvy79001, yvy80001, dad, dae) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, bbe)) -> new_compare7(yvy79000, yvy80000, bbe) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, bdb), bdc)) -> new_esEs4(yvy35, yvy30, bdb, bdc) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, bab, bac) -> new_esEs9(new_compare9(yvy79000, yvy80000, bab, bac), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, dbf) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, bdf) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, dbf) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, app(ty_Maybe, gf)) -> new_esEs7(yvy400, yvy300, gf) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_esEs7(yvy79000, yvy80000, baa) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_Either, beh), bfa)) -> new_ltEs7(yvy79000, yvy80000, beh, bfa) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfh), dga)) -> new_esEs6(yvy4002, yvy3002, dfh, dga) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs34(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, dbf) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs9(yvy79001, yvy80001, dh, ea, eb) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, chd)) -> new_ltEs12(yvy79002, yvy80002, chd) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare11(yvy79000, yvy80000, False, gc, gd, ge) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, cce, ccf) -> GT new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), ccg, cch, cda) -> new_pePe(new_lt20(yvy79000, yvy80000, ccg), new_asAs(new_esEs25(yvy79000, yvy80000, ccg), new_pePe(new_lt19(yvy79001, yvy80001, cch), new_asAs(new_esEs24(yvy79001, yvy80001, cch), new_ltEs21(yvy79002, yvy80002, cda))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ebb)) -> new_esEs17(yvy4000, yvy3000, ebb) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_esEs4(yvy79000, yvy80000, eh, fa) new_esEs33(yvy400, yvy300, app(app(ty_Either, dbe), dbf)) -> new_esEs4(yvy400, yvy300, dbe, dbf) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs5(yvy20, yvy15, dfa, dfb, dfc) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, cec)) -> new_ltEs16(yvy7900, yvy8000, cec) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], cgb)) -> new_ltEs17(yvy79000, yvy80000, cgb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, dbf) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfe), dff)) -> new_esEs4(yvy20, yvy15, dfe, dff) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, bdf) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs9(yvy7900, yvy8000, ccg, cch, cda) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gh), ha)) -> new_esEs6(yvy4000, yvy3000, gh, ha) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bed), bdf) -> new_ltEs12(yvy79000, yvy80000, bed) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs5(yvy4000, yvy3000, dde, ddf, ddg) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_esEs7(yvy79001, yvy80001, dag) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, che)) -> new_ltEs16(yvy79002, yvy80002, che) new_esEs32(yvy20, yvy15, app(ty_Ratio, deh)) -> new_esEs13(yvy20, yvy15, deh) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs19(yvy7900, yvy8000, app(ty_[], bad)) -> new_ltEs17(yvy7900, yvy8000, bad) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cga)) -> new_ltEs16(yvy79000, yvy80000, cga) new_compare27(yvy79000, yvy80000, False, bab, bac) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, bab, bac), bab, bac) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcf), dbf) -> new_esEs17(yvy4000, yvy3000, dcf) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy79000, yvy80000, bab, bac) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cbd)) -> new_esEs13(yvy4000, yvy3000, cbd) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], ced)) -> new_ltEs17(yvy7900, yvy8000, ced) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, ef)) -> new_ltEs16(yvy79001, yvy80001, ef) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs5(yvy79000, yvy80000, fb, fc, fd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs33(yvy400, yvy300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy400, yvy300, dbb, dbc, dbd) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, bdf) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_lt6(yvy79000, yvy80000, eh, fa) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), beg, bdf) -> True new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs9(yvy7900, yvy8000, cde, cdf, cdg) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, bdf) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, cce, ccf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cce), cce, ccf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], bda)) -> new_esEs17(yvy35, yvy30, bda) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, bdf) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], dba)) -> new_lt17(yvy79000, yvy80000, dba) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbg), dbf) -> new_esEs7(yvy4000, yvy3000, dbg) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_compare31(yvy20, yvy15, dec, ded) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dec), dec, ded) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_esEs13(yvy79000, yvy80000, fh) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, gc, gd, ge) -> new_esEs9(new_compare16(yvy79000, yvy80000, gc, gd, ge), LT) new_primCmpNat0(yvy7900, Zero) -> GT new_lt19(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_lt10(yvy79001, yvy80001, dad, dae) new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, caa)) -> new_esEs13(yvy4000, yvy3000, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs12(yvy7900, yvy8000, ccd) -> new_fsEs(new_compare18(yvy7900, yvy8000, ccd)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_esEs13(yvy79000, yvy80000, bbg) new_ltEs21(yvy79002, yvy80002, app(ty_[], chf)) -> new_ltEs17(yvy79002, yvy80002, chf) new_compare0([], :(yvy80000, yvy80001), bad) -> LT new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) new_esEs25(yvy79000, yvy80000, app(ty_[], dba)) -> new_esEs17(yvy79000, yvy80000, dba) new_lt20(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_lt10(yvy79000, yvy80000, bab, bac) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], gb)) -> new_esEs17(yvy79000, yvy80000, gb) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_@2, bfe), bff)) -> new_ltEs5(yvy79000, yvy80000, bfe, bff) new_primCompAux0(yvy79000, yvy80000, yvy256, bad) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, bad)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcg), dch), dbf) -> new_esEs4(yvy4000, yvy3000, dcg, dch) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bgg)) -> new_esEs13(yvy4001, yvy3001, bgg) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Maybe, dda)) -> new_esEs7(yvy4000, yvy3000, dda) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_@2, ddb), ddc)) -> new_esEs6(yvy4000, yvy3000, ddb, ddc) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, dbf) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, cee, cef) -> GT new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, bce)) -> new_esEs13(yvy35, yvy30, bce) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], bef), bdf) -> new_ltEs17(yvy79000, yvy80000, bef) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], bad) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, caf), cag)) -> new_esEs4(yvy4000, yvy3000, caf, cag) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy4001, yvy3001, bhd, bhe) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79002, yvy80002, cge, cgf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hg), hh)) -> new_esEs4(yvy4000, yvy3000, hg, hh) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dhb), dhc)) -> new_esEs6(yvy4001, yvy3001, dhb, dhc) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, baa) -> new_esEs9(new_compare7(yvy79000, yvy80000, baa), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ccc) -> new_asAs(new_esEs23(yvy4000, yvy3000, ccc), new_esEs22(yvy4001, yvy3001, ccc)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgb, bgc) -> new_asAs(new_esEs20(yvy4000, yvy3000, bgb), new_esEs19(yvy4001, yvy3001, bgc)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, bad) -> new_fsEs(new_compare0(yvy7900, yvy8000, bad)) new_esEs31(yvy35, yvy30, app(ty_Maybe, bcb)) -> new_esEs7(yvy35, yvy30, bcb) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs33(yvy400, yvy300, app(app(ty_@2, bgb), bgc)) -> new_esEs6(yvy400, yvy300, bgb, bgc) new_compare28(yvy79000, yvy80000, True, gc, gd, ge) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_esEs4(yvy79000, yvy80000, cgc, cgd) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_lt8(yvy79000, yvy80000, gc, gd, ge) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], cae)) -> new_esEs17(yvy4000, yvy3000, cae) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), dd, de) -> new_pePe(new_lt5(yvy79000, yvy80000, dd), new_asAs(new_esEs10(yvy79000, yvy80000, dd), new_ltEs6(yvy79001, yvy80001, de))) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_Either, dea), deb)) -> new_esEs4(yvy4000, yvy3000, dea, deb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, dbf) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_esEs13(yvy79001, yvy80001, daf) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, ead), eae)) -> new_esEs6(yvy4000, yvy3000, ead, eae) new_esEs34(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, app(ty_[], cbh)) -> new_esEs17(yvy4000, yvy3000, cbh) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, ceb)) -> new_ltEs12(yvy7900, yvy8000, ceb) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cba)) -> new_esEs7(yvy4000, yvy3000, cba) new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, cfa), cfb)) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs16(Nothing, Just(yvy80000), cdb) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, cce, ccf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, ccf), cce, ccf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, cce, ccf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, gc, gd, ge) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cff), cfg)) -> new_ltEs5(yvy79000, yvy80000, cff, cfg) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_lt8(yvy79001, yvy80001, daa, dab, dac) new_esEs32(yvy20, yvy15, app(ty_Maybe, dee)) -> new_esEs7(yvy20, yvy15, dee) new_esEs32(yvy20, yvy15, app(ty_[], dfd)) -> new_esEs17(yvy20, yvy15, dfd) new_esEs26(yvy4002, yvy3002, app(ty_[], dgf)) -> new_esEs17(yvy4002, yvy3002, dgf) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, cgc, cgd) -> new_esEs9(new_compare14(yvy79000, yvy80000, cgc, cgd), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, ccd)) -> new_ltEs12(yvy7900, yvy8000, ccd) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_esEs4(yvy79001, yvy80001, chg, chh) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfg)) -> new_esEs7(yvy4002, yvy3002, dfg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_lt12(yvy79000, yvy80000, bbg) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_lt16(yvy79001, yvy80001, dag) new_compare13(yvy79000, yvy80000, app(app(ty_Either, bae), baf)) -> new_compare14(yvy79000, yvy80000, bae, baf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dha)) -> new_esEs7(yvy4001, yvy3001, dha) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, ceg, ceh) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, bdf) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs9(yvy79000, yvy80000, bfb, bfc, bfd) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hb)) -> new_esEs13(yvy4000, yvy3000, hb) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bbh, bca) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bca), bbh, bca) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eaf)) -> new_esEs13(yvy4000, yvy3000, eaf) new_esEs24(yvy79001, yvy80001, app(ty_[], dah)) -> new_esEs17(yvy79001, yvy80001, dah) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], bad) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dcb), dbf) -> new_esEs13(yvy4000, yvy3000, dcb) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bhg), bhh)) -> new_esEs6(yvy4000, yvy3000, bhg, bhh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs5(yvy4000, yvy3000, eag, eah, eba) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, bab, bac) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_lt5(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_lt12(yvy79000, yvy80000, fh) new_compare113(yvy79000, yvy80000, False, baa) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, baa) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, baa), baa) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bgd)) -> new_esEs7(yvy4001, yvy3001, bgd) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare10(yvy79000, yvy80000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bad) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bad), bad) new_primPlusNat1(Zero, Zero) -> Zero new_lt19(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_lt12(yvy79001, yvy80001, daf) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, dba) -> new_esEs9(new_compare0(yvy79000, yvy80000, dba), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, dbf) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, ebc), ebd)) -> new_esEs4(yvy4000, yvy3000, ebc, ebd) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, def), deg)) -> new_esEs6(yvy20, yvy15, def, deg) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgg), dgh)) -> new_esEs4(yvy4002, yvy3002, dgg, dgh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_lt16(yvy79000, yvy80000, ga) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Ratio, bfg)) -> new_ltEs12(yvy79000, yvy80000, bfg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, bbd)) -> new_compare18(yvy79000, yvy80000, bbd) new_esEs12(@0, @0) -> True new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, cce, ccf) -> EQ new_compare23(yvy79000, yvy80000, False, baa) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, baa), baa) new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs5(yvy4002, yvy3002, dgc, dgd, dge) new_lt19(yvy79001, yvy80001, app(ty_[], dah)) -> new_lt17(yvy79001, yvy80001, dah) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_[], ddh)) -> new_esEs17(yvy4000, yvy3000, ddh) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy4001, yvy3001, bge, bgf) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_[], bga)) -> new_ltEs17(yvy79000, yvy80000, bga) new_lt20(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_lt16(yvy79000, yvy80000, baa) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dcc), dcd), dce), dbf) -> new_esEs5(yvy4000, yvy3000, dcc, dcd, dce) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dbb, dbc, dbd) -> new_asAs(new_esEs28(yvy4000, yvy3000, dbb), new_asAs(new_esEs27(yvy4001, yvy3001, dbc), new_esEs26(yvy4002, yvy3002, dbd))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hf)) -> new_esEs17(yvy4000, yvy3000, hf) new_esEs34(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_compare110(yvy79000, yvy80000, False, bab, bac) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_primEqNat0(Zero, Zero) -> True new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs4(GT, GT) -> True new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, bcc), bcd)) -> new_esEs6(yvy35, yvy30, bcc, bcd) new_esEs17(:(yvy4000, yvy4001), [], cah) -> False new_esEs17([], :(yvy3000, yvy3001), cah) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dgb)) -> new_esEs13(yvy4002, yvy3002, dgb) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cah) -> new_asAs(new_esEs21(yvy4000, yvy3000, cah), new_esEs17(yvy4001, yvy3001, cah)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, gc, gd, ge) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, eaa), eab)) -> new_esEs4(yvy4001, yvy3001, eaa, eab) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs5(yvy4001, yvy3001, dhe, dhf, dhg) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_compare110(x0, x1, True, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(LT, LT) new_esEs34(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(x0, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat1(Zero, Zero) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs32(x0, x1, ty_Integer) new_lt8(x0, x1, x2, x3, x4) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_lt5(x0, x1, app(ty_Maybe, x2)) new_compare17(@0, @0) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(x0, x1, x2, x3) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat2(Zero, x0) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(x0, Succ(x1)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(Nothing, Just(x0), x1) new_compare113(x0, x1, False, x2) new_esEs20(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare111(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare30(x0, x1, x2, x3) new_compare114(x0, x1, False) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17([], :(x0, x1), x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs16(Nothing, Just(x0), x1) new_lt16(x0, x1, x2) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_compare110(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_[], x2)) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs33(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Nothing, x1) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs33(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_compare112(x0, x1, False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_compare13(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare25(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs17(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs13(True, True) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_@0) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_lt7(x0, x1) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, False, x2) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs7(Nothing, Nothing, x0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare15(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(GT, LT) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Nothing, Nothing, x0) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt10(x0, x1, x2, x3) new_compare10(x0, x1, False) new_ltEs13(False, False) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare28(x0, x1, False, x2, x3, x4) new_lt13(x0, x1) new_compare27(x0, x1, False, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_compare32(x0, x1, x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare7(x0, x1, x2) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare16(x0, x1, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(x0, x1, x2) new_ltEs4(EQ, EQ) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_lt20(x0, x1, ty_@0) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(x0, x1, ty_Char) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2, x3) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare31(x0, x1, x2, x3) new_esEs25(x0, x1, ty_Int) new_compare0([], [], x0) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs21(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt5(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare13(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, EQ) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_Bool) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, True, x2, x3) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt17(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) 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_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs9(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 *new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 8 >= 7, 9 >= 8, 10 >= 9 *new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 ---------------------------------------- (64) YES ---------------------------------------- (65) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) new_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs9(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bdd), bde), bdf) -> new_ltEs7(yvy79000, yvy80000, bdd, bde) new_ltEs7(Right(yvy79000), Left(yvy80000), beg, bdf) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dhd)) -> new_esEs13(yvy4001, yvy3001, dhd) new_ltEs6(yvy79001, yvy80001, app(ty_[], eg)) -> new_ltEs17(yvy79001, yvy80001, eg) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bdg), bdh), bea), bdf) -> new_ltEs9(yvy79000, yvy80000, bdg, bdh, bea) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, baa) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), dbe, dbf) -> False new_esEs4(Right(yvy4000), Left(yvy3000), dbe, dbf) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, cdb) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, dd), de)) -> new_ltEs5(yvy7900, yvy8000, dd, de) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cbb), cbc)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, app(ty_Ratio, ccc)) -> new_esEs13(yvy400, yvy300, ccc) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gg)) -> new_esEs7(yvy4000, yvy3000, gg) new_ltEs16(Just(yvy79000), Nothing, cdb) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs34(yvy400, yvy300, app(ty_Maybe, ca)) -> new_esEs7(yvy400, yvy300, ca) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Maybe, bfh)) -> new_ltEs16(yvy79000, yvy80000, bfh) new_compare111(yvy226, yvy227, True, cee, cef) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, eac)) -> new_esEs7(yvy4000, yvy3000, eac) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, cdb)) -> new_ltEs16(yvy7900, yvy8000, cdb) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bee), bdf) -> new_ltEs16(yvy79000, yvy80000, bee) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_esEs33(yvy400, yvy300, app(ty_[], cah)) -> new_esEs17(yvy400, yvy300, cah) new_compare13(yvy79000, yvy80000, app(app(ty_@2, bbb), bbc)) -> new_compare9(yvy79000, yvy80000, bbb, bbc) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs9(yvy79000, yvy80000, cfc, cfd, cfe) new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, bdf) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(yvy4000, yvy3000, cab, cac, cad) new_esEs27(yvy4001, yvy3001, app(ty_[], dhh)) -> new_esEs17(yvy4001, yvy3001, dhh) new_lt5(yvy79000, yvy80000, app(ty_[], gb)) -> new_lt17(yvy79000, yvy80000, gb) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_lt6(yvy79000, yvy80000, cgc, cgd) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_lt10(yvy79000, yvy80000, ff, fg) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, bag), bah), bba)) -> new_compare16(yvy79000, yvy80000, bag, bah, bba) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hc), hd), he)) -> new_esEs5(yvy4000, yvy3000, hc, hd, he) new_lt19(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_lt6(yvy79001, yvy80001, chg, chh) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, ff), fg)) -> new_esEs6(yvy79000, yvy80000, ff, fg) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, cfh)) -> new_ltEs12(yvy79000, yvy80000, cfh) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, cdc), cdd)) -> new_ltEs7(yvy7900, yvy8000, cdc, cdd) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_compare13(yvy79000, yvy80000, app(ty_[], bbf)) -> new_compare0(yvy79000, yvy80000, bbf) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs5(yvy35, yvy30, bcf, bcg, bch) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(yvy4001, yvy3001, bgh, bha, bhb) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, chb), chc)) -> new_ltEs5(yvy79002, yvy80002, chb, chc) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, bab, bac) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, bab, bac), bab, bac) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, cgc, cgd) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, cgc, cgd), cgc, cgd) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_lt8(yvy79000, yvy80000, fb, fc, fd) new_primCompAux00(yvy260, GT) -> GT new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(yvy79000, yvy80000, gc, gd, ge) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dbh), dca), dbf) -> new_esEs6(yvy4000, yvy3000, dbh, dca) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, cdh), cea)) -> new_ltEs5(yvy7900, yvy8000, cdh, cea) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, bab, bac) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs5(yvy79001, yvy80001, daa, dab, dac) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, df), dg)) -> new_ltEs7(yvy79001, yvy80001, df, dg) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, bdf) -> new_ltEs4(yvy79000, yvy80000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(yvy4000, yvy3000, cbe, cbf, cbg) new_lt12(yvy79000, yvy80000, bbg) -> new_esEs9(new_compare18(yvy79000, yvy80000, bbg), LT) new_esEs34(yvy400, yvy300, app(ty_Ratio, cd)) -> new_esEs13(yvy400, yvy300, cd) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, dbf) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, beg), bdf)) -> new_ltEs7(yvy7900, yvy8000, beg, bdf) new_esEs7(Nothing, Just(yvy3000), gf) -> False new_esEs7(Just(yvy4000), Nothing, gf) -> False new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Ratio, ddd)) -> new_esEs13(yvy4000, yvy3000, ddd) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, ceg, ceh) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, ec), ed)) -> new_ltEs5(yvy79001, yvy80001, ec, ed) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(yvy4000, yvy3000, cca, ccb) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_esEs7(yvy79000, yvy80000, ga) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], cah) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, baa) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs9(yvy79002, yvy80002, cgg, cgh, cha) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, ee)) -> new_ltEs12(yvy79001, yvy80001, ee) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, beb), bec), bdf) -> new_ltEs5(yvy79000, yvy80000, beb, bec) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, gc, gd, ge) -> LT new_esEs7(Nothing, Nothing, gf) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_esEs6(yvy79001, yvy80001, dad, dae) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, bbe)) -> new_compare7(yvy79000, yvy80000, bbe) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(app(ty_Either, bdb), bdc)) -> new_esEs4(yvy35, yvy30, bdb, bdc) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, bab, bac) -> new_esEs9(new_compare9(yvy79000, yvy80000, bab, bac), LT) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, dbf) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, bdf) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, dbf) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, app(ty_Maybe, gf)) -> new_esEs7(yvy400, yvy300, gf) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_esEs7(yvy79000, yvy80000, baa) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_Either, beh), bfa)) -> new_ltEs7(yvy79000, yvy80000, beh, bfa) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dfh), dga)) -> new_esEs6(yvy4002, yvy3002, dfh, dga) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs34(yvy400, yvy300, app(app(ty_Either, db), dc)) -> new_esEs4(yvy400, yvy300, db, dc) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, dbf) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs9(yvy79001, yvy80001, dh, ea, eb) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, chd)) -> new_ltEs12(yvy79002, yvy80002, chd) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare11(yvy79000, yvy80000, False, gc, gd, ge) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, cce, ccf) -> GT new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), ccg, cch, cda) -> new_pePe(new_lt20(yvy79000, yvy80000, ccg), new_asAs(new_esEs25(yvy79000, yvy80000, ccg), new_pePe(new_lt19(yvy79001, yvy80001, cch), new_asAs(new_esEs24(yvy79001, yvy80001, cch), new_ltEs21(yvy79002, yvy80002, cda))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ebb)) -> new_esEs17(yvy4000, yvy3000, ebb) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_esEs4(yvy79000, yvy80000, eh, fa) new_esEs33(yvy400, yvy300, app(app(ty_Either, dbe), dbf)) -> new_esEs4(yvy400, yvy300, dbe, dbf) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs5(yvy20, yvy15, dfa, dfb, dfc) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, cec)) -> new_ltEs16(yvy7900, yvy8000, cec) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], cgb)) -> new_ltEs17(yvy79000, yvy80000, cgb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, dbf) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dfe), dff)) -> new_esEs4(yvy20, yvy15, dfe, dff) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, bdf) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs9(yvy7900, yvy8000, ccg, cch, cda) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gh), ha)) -> new_esEs6(yvy4000, yvy3000, gh, ha) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(yvy400, yvy300, ce, cf, cg) new_esEs9(LT, LT) -> True new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bed), bdf) -> new_ltEs12(yvy79000, yvy80000, bed) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs5(yvy4000, yvy3000, dde, ddf, ddg) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_esEs7(yvy79001, yvy80001, dag) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, che)) -> new_ltEs16(yvy79002, yvy80002, che) new_esEs32(yvy20, yvy15, app(ty_Ratio, deh)) -> new_esEs13(yvy20, yvy15, deh) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs19(yvy7900, yvy8000, app(ty_[], bad)) -> new_ltEs17(yvy7900, yvy8000, bad) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cga)) -> new_ltEs16(yvy79000, yvy80000, cga) new_compare27(yvy79000, yvy80000, False, bab, bac) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, bab, bac), bab, bac) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], dcf), dbf) -> new_esEs17(yvy4000, yvy3000, dcf) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_esEs6(yvy79000, yvy80000, bab, bac) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cbd)) -> new_esEs13(yvy4000, yvy3000, cbd) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], ced)) -> new_ltEs17(yvy7900, yvy8000, ced) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, ef)) -> new_ltEs16(yvy79001, yvy80001, ef) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs5(yvy79000, yvy80000, fb, fc, fd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs33(yvy400, yvy300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(yvy400, yvy300, dbb, dbc, dbd) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, bdf) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, eh), fa)) -> new_lt6(yvy79000, yvy80000, eh, fa) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), beg, bdf) -> True new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs9(yvy7900, yvy8000, cde, cdf, cdg) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, bdf) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, cce, ccf) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cce), cce, ccf) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], bda)) -> new_esEs17(yvy35, yvy30, bda) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, bdf) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], dba)) -> new_lt17(yvy79000, yvy80000, dba) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dbg), dbf) -> new_esEs7(yvy4000, yvy3000, dbg) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_compare31(yvy20, yvy15, dec, ded) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dec), dec, ded) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_esEs13(yvy79000, yvy80000, fh) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, gc, gd, ge) -> new_esEs9(new_compare16(yvy79000, yvy80000, gc, gd, ge), LT) new_primCmpNat0(yvy7900, Zero) -> GT new_lt19(yvy79001, yvy80001, app(app(ty_@2, dad), dae)) -> new_lt10(yvy79001, yvy80001, dad, dae) new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, caa)) -> new_esEs13(yvy4000, yvy3000, caa) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs12(yvy7900, yvy8000, ccd) -> new_fsEs(new_compare18(yvy7900, yvy8000, ccd)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_esEs13(yvy79000, yvy80000, bbg) new_ltEs21(yvy79002, yvy80002, app(ty_[], chf)) -> new_ltEs17(yvy79002, yvy80002, chf) new_compare0([], :(yvy80000, yvy80001), bad) -> LT new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) new_esEs25(yvy79000, yvy80000, app(ty_[], dba)) -> new_esEs17(yvy79000, yvy80000, dba) new_lt20(yvy79000, yvy80000, app(app(ty_@2, bab), bac)) -> new_lt10(yvy79000, yvy80000, bab, bac) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], gb)) -> new_esEs17(yvy79000, yvy80000, gb) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(ty_@2, bfe), bff)) -> new_ltEs5(yvy79000, yvy80000, bfe, bff) new_primCompAux0(yvy79000, yvy80000, yvy256, bad) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, bad)) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dcg), dch), dbf) -> new_esEs4(yvy4000, yvy3000, dcg, dch) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bgg)) -> new_esEs13(yvy4001, yvy3001, bgg) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_Maybe, dda)) -> new_esEs7(yvy4000, yvy3000, dda) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_@2, ddb), ddc)) -> new_esEs6(yvy4000, yvy3000, ddb, ddc) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, dbf) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, cee, cef) -> GT new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, bce)) -> new_esEs13(yvy35, yvy30, bce) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], bef), bdf) -> new_ltEs17(yvy79000, yvy80000, bef) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], bad) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, caf), cag)) -> new_esEs4(yvy4000, yvy3000, caf, cag) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bhd), bhe)) -> new_esEs4(yvy4001, yvy3001, bhd, bhe) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, cge), cgf)) -> new_ltEs7(yvy79002, yvy80002, cge, cgf) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hg), hh)) -> new_esEs4(yvy4000, yvy3000, hg, hh) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dhb), dhc)) -> new_esEs6(yvy4001, yvy3001, dhb, dhc) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, baa) -> new_esEs9(new_compare7(yvy79000, yvy80000, baa), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ccc) -> new_asAs(new_esEs23(yvy4000, yvy3000, ccc), new_esEs22(yvy4001, yvy3001, ccc)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgb, bgc) -> new_asAs(new_esEs20(yvy4000, yvy3000, bgb), new_esEs19(yvy4001, yvy3001, bgc)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, bad) -> new_fsEs(new_compare0(yvy7900, yvy8000, bad)) new_esEs31(yvy35, yvy30, app(ty_Maybe, bcb)) -> new_esEs7(yvy35, yvy30, bcb) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs33(yvy400, yvy300, app(app(ty_@2, bgb), bgc)) -> new_esEs6(yvy400, yvy300, bgb, bgc) new_compare28(yvy79000, yvy80000, True, gc, gd, ge) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, cgc), cgd)) -> new_esEs4(yvy79000, yvy80000, cgc, cgd) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, gc), gd), ge)) -> new_lt8(yvy79000, yvy80000, gc, gd, ge) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], cae)) -> new_esEs17(yvy4000, yvy3000, cae) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), dd, de) -> new_pePe(new_lt5(yvy79000, yvy80000, dd), new_asAs(new_esEs10(yvy79000, yvy80000, dd), new_ltEs6(yvy79001, yvy80001, de))) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(app(ty_Either, dea), deb)) -> new_esEs4(yvy4000, yvy3000, dea, deb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, dbf) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_esEs13(yvy79001, yvy80001, daf) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, ead), eae)) -> new_esEs6(yvy4000, yvy3000, ead, eae) new_esEs34(yvy400, yvy300, app(app(ty_@2, cb), cc)) -> new_esEs6(yvy400, yvy300, cb, cc) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, app(ty_[], cbh)) -> new_esEs17(yvy4000, yvy3000, cbh) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, ceb)) -> new_ltEs12(yvy7900, yvy8000, ceb) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cba)) -> new_esEs7(yvy4000, yvy3000, cba) new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, cfa), cfb)) -> new_ltEs7(yvy79000, yvy80000, cfa, cfb) new_ltEs16(Nothing, Just(yvy80000), cdb) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, cce, ccf) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, ccf), cce, ccf) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, cce, ccf) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, gc, gd, ge) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cff), cfg)) -> new_ltEs5(yvy79000, yvy80000, cff, cfg) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, daa), dab), dac)) -> new_lt8(yvy79001, yvy80001, daa, dab, dac) new_esEs32(yvy20, yvy15, app(ty_Maybe, dee)) -> new_esEs7(yvy20, yvy15, dee) new_esEs32(yvy20, yvy15, app(ty_[], dfd)) -> new_esEs17(yvy20, yvy15, dfd) new_esEs26(yvy4002, yvy3002, app(ty_[], dgf)) -> new_esEs17(yvy4002, yvy3002, dgf) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, cgc, cgd) -> new_esEs9(new_compare14(yvy79000, yvy80000, cgc, cgd), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, ccd)) -> new_ltEs12(yvy7900, yvy8000, ccd) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, chg), chh)) -> new_esEs4(yvy79001, yvy80001, chg, chh) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dfg)) -> new_esEs7(yvy4002, yvy3002, dfg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, bbg)) -> new_lt12(yvy79000, yvy80000, bbg) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, dag)) -> new_lt16(yvy79001, yvy80001, dag) new_compare13(yvy79000, yvy80000, app(app(ty_Either, bae), baf)) -> new_compare14(yvy79000, yvy80000, bae, baf) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dha)) -> new_esEs7(yvy4001, yvy3001, dha) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, ceg, ceh) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, bdf) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs9(yvy79000, yvy80000, bfb, bfc, bfd) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hb)) -> new_esEs13(yvy4000, yvy3000, hb) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_compare30(yvy35, yvy30, bbh, bca) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bca), bbh, bca) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, eaf)) -> new_esEs13(yvy4000, yvy3000, eaf) new_esEs24(yvy79001, yvy80001, app(ty_[], dah)) -> new_esEs17(yvy79001, yvy80001, dah) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], bad) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dcb), dbf) -> new_esEs13(yvy4000, yvy3000, dcb) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, bhg), bhh)) -> new_esEs6(yvy4000, yvy3000, bhg, bhh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs5(yvy4000, yvy3000, eag, eah, eba) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, bab, bac) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_lt5(yvy79000, yvy80000, app(ty_Ratio, fh)) -> new_lt12(yvy79000, yvy80000, fh) new_compare113(yvy79000, yvy80000, False, baa) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, baa) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, baa), baa) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bgd)) -> new_esEs7(yvy4001, yvy3001, bgd) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare10(yvy79000, yvy80000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bad) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bad), bad) new_primPlusNat1(Zero, Zero) -> Zero new_lt19(yvy79001, yvy80001, app(ty_Ratio, daf)) -> new_lt12(yvy79001, yvy80001, daf) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, dba) -> new_esEs9(new_compare0(yvy79000, yvy80000, dba), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, dbf) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, ebc), ebd)) -> new_esEs4(yvy4000, yvy3000, ebc, ebd) new_ltEs13(True, False) -> False new_esEs32(yvy20, yvy15, app(app(ty_@2, def), deg)) -> new_esEs6(yvy20, yvy15, def, deg) new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dgg), dgh)) -> new_esEs4(yvy4002, yvy3002, dgg, dgh) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, ga)) -> new_lt16(yvy79000, yvy80000, ga) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_Ratio, bfg)) -> new_ltEs12(yvy79000, yvy80000, bfg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, bbd)) -> new_compare18(yvy79000, yvy80000, bbd) new_esEs12(@0, @0) -> True new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, cce, ccf) -> EQ new_compare23(yvy79000, yvy80000, False, baa) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, baa), baa) new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs5(yvy4002, yvy3002, dgc, dgd, dge) new_lt19(yvy79001, yvy80001, app(ty_[], dah)) -> new_lt17(yvy79001, yvy80001, dah) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), dbe, app(ty_[], ddh)) -> new_esEs17(yvy4000, yvy3000, ddh) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bge), bgf)) -> new_esEs6(yvy4001, yvy3001, bge, bgf) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), beg, app(ty_[], bga)) -> new_ltEs17(yvy79000, yvy80000, bga) new_lt20(yvy79000, yvy80000, app(ty_Maybe, baa)) -> new_lt16(yvy79000, yvy80000, baa) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dcc), dcd), dce), dbf) -> new_esEs5(yvy4000, yvy3000, dcc, dcd, dce) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dbb, dbc, dbd) -> new_asAs(new_esEs28(yvy4000, yvy3000, dbb), new_asAs(new_esEs27(yvy4001, yvy3001, dbc), new_esEs26(yvy4002, yvy3002, dbd))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hf)) -> new_esEs17(yvy4000, yvy3000, hf) new_esEs34(yvy400, yvy300, app(ty_[], da)) -> new_esEs17(yvy400, yvy300, da) new_compare110(yvy79000, yvy80000, False, bab, bac) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_primEqNat0(Zero, Zero) -> True new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs4(GT, GT) -> True new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs7(Right(yvy79000), Right(yvy80000), beg, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs31(yvy35, yvy30, app(app(ty_@2, bcc), bcd)) -> new_esEs6(yvy35, yvy30, bcc, bcd) new_esEs17(:(yvy4000, yvy4001), [], cah) -> False new_esEs17([], :(yvy3000, yvy3001), cah) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dgb)) -> new_esEs13(yvy4002, yvy3002, dgb) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cah) -> new_asAs(new_esEs21(yvy4000, yvy3000, cah), new_esEs17(yvy4001, yvy3001, cah)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, gc, gd, ge) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, gc, gd, ge), gc, gd, ge) new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, eaa), eab)) -> new_esEs4(yvy4001, yvy3001, eaa, eab) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs5(yvy4001, yvy3001, dhe, dhf, dhg) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_compare110(x0, x1, True, x2, x3) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(LT, LT) new_esEs34(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs15(x0, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat1(Zero, Zero) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_primCompAux0(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs32(x0, x1, ty_Integer) new_lt8(x0, x1, x2, x3, x4) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs11(x0, x1) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_lt5(x0, x1, app(ty_Maybe, x2)) new_compare17(@0, @0) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpNat1(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_sr(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(x0, x1, x2, x3) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_compare33(x0, x1, x2, x3) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primCmpNat2(Zero, x0) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(False, True) new_esEs14(True, False) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(x0, Succ(x1)) new_esEs7(Just(x0), Just(x1), ty_@0) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(x0, x1, True, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Bool) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(Nothing, Just(x0), x1) new_compare113(x0, x1, False, x2) new_esEs20(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare111(x0, x1, False, x2, x3) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_esEs10(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare11(x0, x1, False, x2, x3, x4) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare30(x0, x1, x2, x3) new_compare114(x0, x1, False) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17([], :(x0, x1), x2) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs16(Nothing, Just(x0), x1) new_lt16(x0, x1, x2) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_compare110(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_[], x2)) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs33(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Nothing, x1) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs33(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0([], :(x0, x1), x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3, x4) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_compare112(x0, x1, False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_compare13(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_lt12(x0, x1, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare25(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_esEs17(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs13(True, True) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare24(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, LT) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, x2) new_ltEs21(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_@0) new_primCmpNat1(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_lt7(x0, x1) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, False, x2) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs7(Nothing, Nothing, x0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare15(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs4(GT, LT) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Nothing, Nothing, x0) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_lt10(x0, x1, x2, x3) new_compare10(x0, x1, False) new_ltEs13(False, False) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare28(x0, x1, False, x2, x3, x4) new_lt13(x0, x1) new_compare27(x0, x1, False, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare29(Right(x0), Right(x1), False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Left(x1), x2, x3) new_compare32(x0, x1, x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare7(x0, x1, x2) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare16(x0, x1, x2, x3, x4) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare14(x0, x1, x2, x3) new_lt19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Right(x0), Left(x1), False, x2, x3) new_compare29(Left(x0), Right(x1), False, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(x0, x1, x2) new_ltEs4(EQ, EQ) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(GT, GT) new_lt20(x0, x1, ty_@0) new_esEs17([], [], x0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(x0, x1, ty_Char) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2, x3) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare31(x0, x1, x2, x3) new_esEs25(x0, x1, ty_Int) new_compare0([], [], x0) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs21(x0, x1, app(ty_[], x2)) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt5(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_compare13(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, EQ) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(x0, x1) new_primPlusNat1(Zero, Succ(x0)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs19(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_not(False) new_lt5(x0, x1, ty_Int) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(x0, x1, ty_Bool) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, True, x2, x3) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Float) new_lt19(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_compare28(x0, x1, True, x2, x3, x4) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt17(x0, x1, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt11(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_lt19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) 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_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 8 >= 7, 9 >= 8, 10 >= 9 *new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 *new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs9(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 *new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 *new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (67) YES ---------------------------------------- (68) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Left(yvy79000), Left(yvy80000), app(ty_[], ca), bb) -> new_ltEs3(yvy79000, yvy80000, ca) new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(ty_@2, bfb), bfc)) -> new_ltEs1(yvy7900, yvy8000, bfb, bfc) new_lt2(yvy79000, yvy80000, hb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ed), ee)), bec) -> new_ltEs1(yvy79002, yvy80002, ed, ee) new_compare20(yvy79000, yvy80000, False, ge, gf, gg) -> new_ltEs0(yvy79000, yvy80000, ge, gf, gg) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(ty_[], gb)), fb), bec) -> new_lt3(yvy79001, yvy80001, gb) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(yvy79002, yvy80002, ea, eb, ec) new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(ty_[], dd)), bec) -> new_ltEs3(yvy79000, yvy80000, dd) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(ty_Either, he), hf)) -> new_ltEs(yvy79001, yvy80001, he, hf) new_compare2(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bda), bec) -> new_compare(yvy79001, yvy80001, bda) new_primCompAux(yvy79000, yvy80000, yvy256, app(app(app(ty_@3, bdd), bde), bdf)) -> new_compare3(yvy79000, yvy80000, bdd, bde, bdf) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_[], bbg)), bah), bec) -> new_lt3(yvy79000, yvy80000, bbg) new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb), bec) -> new_ltEs0(yvy79000, yvy80000, bc, bd, be) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(ty_Maybe, bad)), bec) -> new_ltEs2(yvy79001, yvy80001, bad) new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(ty_[], dd)) -> new_ltEs3(yvy79000, yvy80000, dd) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_[], hc)), df), fb), bec) -> new_compare(yvy79000, yvy80000, hc) new_ltEs3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_compare(yvy79001, yvy80001, bda) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(ty_[], bae)), bec) -> new_ltEs3(yvy79001, yvy80001, bae) new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(ty_[], bfe)) -> new_ltEs3(yvy7900, yvy8000, bfe) new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_@2, bce), bcf)), bec) -> new_ltEs1(yvy79000, yvy80000, bce, bcf) new_lt(yvy79000, yvy80000, gc, gd) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) new_lt3(yvy79000, yvy80000, hc) -> new_compare(yvy79000, yvy80000, hc) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(ty_[], eg)), bec) -> new_ltEs3(yvy79002, yvy80002, eg) new_compare4(yvy79000, yvy80000, gh, ha) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah), bec) -> new_lt0(yvy79000, yvy80000, bba, bbb, bbc) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(yvy79001, yvy80001, eh, fa) new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(ty_@2, da), db)) -> new_ltEs1(yvy79000, yvy80000, da, db) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh)), bec) -> new_ltEs(yvy79002, yvy80002, dg, dh) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(ty_@2, fg), fh)), fb), bec) -> new_lt1(yvy79001, yvy80001, fg, fh) new_ltEs(Left(yvy79000), Left(yvy80000), app(app(ty_Either, h), ba), bb) -> new_ltEs(yvy79000, yvy80000, h, ba) new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_Maybe, bcg)), bec) -> new_ltEs2(yvy79000, yvy80000, bcg) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(ty_[], bae)) -> new_ltEs3(yvy79001, yvy80001, bae) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), bah), bec) -> new_lt1(yvy79000, yvy80000, bbd, bbe) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_@2, bbd), bbe), bah) -> new_lt1(yvy79000, yvy80000, bbd, bbe) new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(yvy7900, yvy8000, beg, beh, bfa) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_compare22(yvy79000, yvy80000, False, hb) -> new_ltEs2(yvy79000, yvy80000, hb) new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_Either, bdb), bdc)) -> new_compare1(yvy79000, yvy80000, bdb, bdc) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb), bec) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb), bec) -> new_lt(yvy79001, yvy80001, eh, fa) new_ltEs(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(yvy79000, yvy80000, bc, bd, be) new_ltEs(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bf), bg), bb) -> new_ltEs1(yvy79000, yvy80000, bf, bg) new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(ty_Maybe, dc)), bec) -> new_ltEs2(yvy79000, yvy80000, dc) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), df), fb), bec) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_Either, bbh), bca)), bec) -> new_ltEs(yvy79000, yvy80000, bbh, bca) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(ty_Maybe, bad)) -> new_ltEs2(yvy79001, yvy80001, bad) new_ltEs2(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bcg)) -> new_ltEs2(yvy79000, yvy80000, bcg) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(ty_Either, he), hf)), bec) -> new_ltEs(yvy79001, yvy80001, he, hf) new_lt1(yvy79000, yvy80000, gh, ha) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_[], bbg), bah) -> new_lt3(yvy79000, yvy80000, bbg) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_Maybe, bbf), bah) -> new_lt2(yvy79000, yvy80000, bbf) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_@2, gh), ha), df, fb) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_Maybe, bea)) -> new_compare5(yvy79000, yvy80000, bea) new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(ty_@2, da), db)), bec) -> new_ltEs1(yvy79000, yvy80000, da, db) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_Either, baf), bag)), bah), bec) -> new_lt(yvy79000, yvy80000, baf, bag) new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_@2, bf), bg)), bb), bec) -> new_ltEs1(yvy79000, yvy80000, bf, bg) new_ltEs2(Just(yvy79000), Just(yvy80000), app(ty_[], bch)) -> new_ltEs3(yvy79000, yvy80000, bch) new_compare21(yvy79000, yvy80000, False, gh, ha) -> new_ltEs1(yvy79000, yvy80000, gh, ha) new_compare3(yvy79000, yvy80000, ge, gf, gg) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(ty_Maybe, dc)) -> new_ltEs2(yvy79000, yvy80000, dc) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_Either, baf), bag), bah) -> new_lt(yvy79000, yvy80000, baf, bag) new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bec) -> new_ltEs(yvy79000, yvy80000, h, ba) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(yvy79001, yvy80001, hg, hh, baa) new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bce), bcf)) -> new_ltEs1(yvy79000, yvy80000, bce, bcf) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_Maybe, hb), df, fb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_[], ca)), bb), bec) -> new_ltEs3(yvy79000, yvy80000, ca) new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(yvy79000, yvy80000, cc, cd) new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_Maybe, bh)), bb), bec) -> new_ltEs2(yvy79000, yvy80000, bh) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_[], hc), df, fb) -> new_compare(yvy79000, yvy80000, hc) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(yvy79002, yvy80002, dg, dh) new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(yvy79000, yvy80000, bcb, bcc, bcd) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(ty_@2, fg), fh), fb) -> new_lt1(yvy79001, yvy80001, fg, fh) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(ty_@2, bab), bac)) -> new_ltEs1(yvy79001, yvy80001, bab, bac) new_lt0(yvy79000, yvy80000, ge, gf, gg) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(yvy79001, yvy80001, fc, fd, ff) new_ltEs3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(app(ty_@3, hg), hh), baa)), bec) -> new_ltEs0(yvy79001, yvy80001, hg, hh, baa) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(ty_@2, bab), bac)), bec) -> new_ltEs1(yvy79001, yvy80001, bab, bac) new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg)), bec) -> new_ltEs0(yvy79000, yvy80000, ce, cf, cg) new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(ty_Maybe, bfd)) -> new_ltEs2(yvy7900, yvy8000, bfd) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec)), bec) -> new_ltEs0(yvy79002, yvy80002, ea, eb, ec) new_compare2(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bda), bec) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(ty_[], gb), fb) -> new_lt3(yvy79001, yvy80001, gb) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(ty_@2, ed), ee)) -> new_ltEs1(yvy79002, yvy80002, ed, ee) new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_[], beb)) -> new_compare(yvy79000, yvy80000, beb) new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bec) -> new_ltEs(yvy79000, yvy80000, cc, cd) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb), bec) -> new_lt0(yvy79001, yvy80001, fc, fd, ff) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb), bec) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(ty_Maybe, ef)) -> new_ltEs2(yvy79002, yvy80002, ef) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ef)), bec) -> new_ltEs2(yvy79002, yvy80002, ef) new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_Maybe, bbf)), bah), bec) -> new_lt2(yvy79000, yvy80000, bbf) new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_[], bch)), bec) -> new_ltEs3(yvy79000, yvy80000, bch) new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(app(ty_@3, bcb), bcc), bcd)), bec) -> new_ltEs0(yvy79000, yvy80000, bcb, bcc, bcd) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_Maybe, hb)), df), fb), bec) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(ty_[], eg)) -> new_ltEs3(yvy79002, yvy80002, eg) new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_compare(yvy79001, yvy80001, bda) new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_@2, bdg), bdh)) -> new_compare4(yvy79000, yvy80000, bdg, bdh) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(ty_Maybe, ga), fb) -> new_lt2(yvy79001, yvy80001, ga) new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bbh), bca)) -> new_ltEs(yvy79000, yvy80000, bbh, bca) new_compare5(yvy79000, yvy80000, hb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(yvy79000, yvy80000, ce, cf, cg) new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(ty_Either, bee), bef)) -> new_ltEs(yvy7900, yvy8000, bee, bef) new_ltEs(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bh), bb) -> new_ltEs2(yvy79000, yvy80000, bh) new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(yvy79000, yvy80000, bba, bbb, bbc) new_compare1(yvy79000, yvy80000, gc, gd) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(ty_Maybe, ga)), fb), bec) -> new_lt2(yvy79001, yvy80001, ga) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, h), ba), bb) -> new_ltEs7(yvy79000, yvy80000, h, ba) new_ltEs7(Right(yvy79000), Left(yvy80000), cb, bb) -> False new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dca)) -> new_esEs13(yvy4001, yvy3001, dca) new_ltEs6(yvy79001, yvy80001, app(ty_[], bae)) -> new_ltEs17(yvy79001, yvy80001, bae) new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_pePe(True, yvy255) -> True new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs9(yvy79000, yvy80000, bc, bd, be) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, hb) -> EQ new_esEs4(Left(yvy4000), Right(yvy3000), cgf, cfc) -> False new_esEs4(Right(yvy4000), Left(yvy3000), cgf, cfc) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs16(Nothing, Nothing, ceb) -> True new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, hd), bah)) -> new_ltEs5(yvy7900, yvy8000, hd, bah) new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cce), ccf)) -> new_esEs6(yvy4000, yvy3000, cce, ccf) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, bga)) -> new_esEs7(yvy4000, yvy3000, bga) new_ltEs16(Just(yvy79000), Nothing, ceb) -> False new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(ty_Maybe, dc)) -> new_ltEs16(yvy79000, yvy80000, dc) new_compare111(yvy226, yvy227, True, ced, cee) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, dch)) -> new_esEs7(yvy4000, yvy3000, dch) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, ceb)) -> new_ltEs16(yvy7900, yvy8000, ceb) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bh), bb) -> new_ltEs16(yvy79000, yvy80000, bh) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_ltEs4(GT, EQ) -> False new_compare13(yvy79000, yvy80000, app(app(ty_@2, bdg), bdh)) -> new_compare9(yvy79000, yvy80000, bdg, bdh) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs9(yvy79000, yvy80000, bcb, bcc, bcd) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, bb) -> new_ltEs8(yvy79000, yvy80000) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs5(yvy4000, yvy3000, cbe, cbf, cbg) new_esEs27(yvy4001, yvy3001, app(ty_[], dce)) -> new_esEs17(yvy4001, yvy3001, dce) new_lt5(yvy79000, yvy80000, app(ty_[], bbg)) -> new_lt17(yvy79000, yvy80000, bbg) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_lt20(yvy79000, yvy80000, app(app(ty_Either, gc), gd)) -> new_lt6(yvy79000, yvy80000, gc, gd) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(ty_@2, bbd), bbe)) -> new_lt10(yvy79000, yvy80000, bbd, bbe) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_compare16(yvy79000, yvy80000, bdd, bde, bdf) new_primCompAux00(yvy260, LT) -> LT new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(yvy4000, yvy3000, bge, bgf, bgg) new_lt19(yvy79001, yvy80001, app(app(ty_Either, eh), fa)) -> new_lt6(yvy79001, yvy80001, eh, fa) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, bbd), bbe)) -> new_esEs6(yvy79000, yvy80000, bbd, bbe) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, ceh)) -> new_ltEs12(yvy79000, yvy80000, ceh) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, bee), bef)) -> new_ltEs7(yvy7900, yvy8000, bee, bef) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], beb)) -> new_compare0(yvy79000, yvy80000, beb) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs5(yvy4001, yvy3001, cac, cad, cae) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, ed), ee)) -> new_ltEs5(yvy79002, yvy80002, ed, ee) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, gh, ha) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_compare14(yvy79000, yvy80000, gc, gd) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_lt8(yvy79000, yvy80000, bba, bbb, bbc) new_primCompAux00(yvy260, GT) -> GT new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs5(yvy79000, yvy80000, ge, gf, gg) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cfe), cff), cfc) -> new_esEs6(yvy4000, yvy3000, cfe, cff) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, bfb), bfc)) -> new_ltEs5(yvy7900, yvy8000, bfb, bfc) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_compare110(yvy79000, yvy80000, True, gh, ha) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(yvy79001, yvy80001, fc, fd, ff) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, he), hf)) -> new_ltEs7(yvy79001, yvy80001, he, hf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, bb) -> new_ltEs4(yvy79000, yvy80000) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare210(yvy79000, yvy80000, True) -> EQ new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs5(yvy4000, yvy3000, cch, cda, cdb) new_lt12(yvy79000, yvy80000, bhd) -> new_esEs9(new_compare18(yvy79000, yvy80000, bhd), LT) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, cfc) -> new_esEs18(yvy4000, yvy3000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, cb), bb)) -> new_ltEs7(yvy7900, yvy8000, cb, bb) new_esEs7(Nothing, Just(yvy3000), bfh) -> False new_esEs7(Just(yvy4000), Nothing, bfh) -> False new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(ty_Ratio, chb)) -> new_esEs13(yvy4000, yvy3000, chb) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_compare112(yvy233, yvy234, True, cef, ceg) -> LT new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, bab), bac)) -> new_ltEs5(yvy79001, yvy80001, bab, bac) new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, cdd), cde)) -> new_esEs4(yvy4000, yvy3000, cdd, cde) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, bbf)) -> new_esEs7(yvy79000, yvy80000, bbf) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs17([], [], ccc) -> True new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_compare113(yvy79000, yvy80000, True, hb) -> LT new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs9(yvy79002, yvy80002, ea, eb, ec) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, bff)) -> new_ltEs12(yvy79001, yvy80001, bff) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bf), bg), bb) -> new_ltEs5(yvy79000, yvy80000, bf, bg) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, ge, gf, gg) -> LT new_esEs7(Nothing, Nothing, bfh) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy79001, yvy80001, fg, fh) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_compare13(yvy79000, yvy80000, app(ty_Maybe, bea)) -> new_compare7(yvy79000, yvy80000, bea) new_ltEs4(LT, GT) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_lt10(yvy79000, yvy80000, gh, ha) -> new_esEs9(new_compare9(yvy79000, yvy80000, gh, ha), LT) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, cfc) -> new_esEs15(yvy4000, yvy3000) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, bb) -> new_ltEs14(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_ltEs4(LT, LT) -> True new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs4(EQ, LT) -> False new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, cfc) -> new_esEs8(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, hb)) -> new_esEs7(yvy79000, yvy80000, hb) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs7(yvy79000, yvy80000, cc, cd) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dae), daf)) -> new_esEs6(yvy4002, yvy3002, dae, daf) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, cfc) -> new_esEs11(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs9(yvy79001, yvy80001, hg, hh, baa) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, cfa)) -> new_ltEs12(yvy79002, yvy80002, cfa) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_compare11(yvy79000, yvy80000, False, ge, gf, gg) -> GT new_compare29(Right(yvy7900), Left(yvy8000), False, bed, bec) -> GT new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, fb) -> new_pePe(new_lt20(yvy79000, yvy80000, de), new_asAs(new_esEs25(yvy79000, yvy80000, de), new_pePe(new_lt19(yvy79001, yvy80001, df), new_asAs(new_esEs24(yvy79001, yvy80001, df), new_ltEs21(yvy79002, yvy80002, fb))))) new_esEs28(yvy4000, yvy3000, app(ty_[], ddg)) -> new_esEs17(yvy4000, yvy3000, ddg) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, baf), bag)) -> new_esEs4(yvy79000, yvy80000, baf, bag) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, bfd)) -> new_ltEs16(yvy7900, yvy8000, bfd) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], bch)) -> new_ltEs17(yvy79000, yvy80000, bch) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, cfc) -> new_esEs9(yvy4000, yvy3000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, bb) -> new_ltEs10(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, de), df), fb)) -> new_ltEs9(yvy7900, yvy8000, de, df, fb) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bgb), bgc)) -> new_esEs6(yvy4000, yvy3000, bgb, bgc) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs9(LT, LT) -> True new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cdf), bb) -> new_ltEs12(yvy79000, yvy80000, cdf) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(app(app(ty_@3, chc), chd), che)) -> new_esEs5(yvy4000, yvy3000, chc, chd, che) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, ga)) -> new_esEs7(yvy79001, yvy80001, ga) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, ef)) -> new_ltEs16(yvy79002, yvy80002, ef) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs19(yvy7900, yvy8000, app(ty_[], bda)) -> new_ltEs17(yvy7900, yvy8000, bda) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bcg)) -> new_ltEs16(yvy79000, yvy80000, bcg) new_compare27(yvy79000, yvy80000, False, gh, ha) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, gh, ha), gh, ha) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], cgc), cfc) -> new_esEs17(yvy4000, yvy3000, cgc) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, gh), ha)) -> new_esEs6(yvy79000, yvy80000, gh, ha) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, ccg)) -> new_esEs13(yvy4000, yvy3000, ccg) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], bfe)) -> new_ltEs17(yvy7900, yvy8000, bfe) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, bad)) -> new_ltEs16(yvy79001, yvy80001, bad) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs5(yvy79000, yvy80000, bba, bbb, bbc) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, bb) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, baf), bag)) -> new_lt6(yvy79000, yvy80000, baf, bag) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), cb, bb) -> True new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs9(yvy7900, yvy8000, beg, beh, bfa) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, bb) -> new_ltEs13(yvy79000, yvy80000) new_compare29(Left(yvy7900), Left(yvy8000), False, bed, bec) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bed), bed, bec) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, bb) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], hc)) -> new_lt17(yvy79000, yvy80000, hc) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cfd), cfc) -> new_esEs7(yvy4000, yvy3000, cfd) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, bfg)) -> new_esEs13(yvy79000, yvy80000, bfg) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt8(yvy79000, yvy80000, ge, gf, gg) -> new_esEs9(new_compare16(yvy79000, yvy80000, ge, gf, gg), LT) new_primCmpNat0(yvy7900, Zero) -> GT new_lt19(yvy79001, yvy80001, app(app(ty_@2, fg), fh)) -> new_lt10(yvy79001, yvy80001, fg, fh) new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, cbd)) -> new_esEs13(yvy4000, yvy3000, cbd) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs12(yvy7900, yvy8000, cea) -> new_fsEs(new_compare18(yvy7900, yvy8000, cea)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, bhd)) -> new_esEs13(yvy79000, yvy80000, bhd) new_ltEs21(yvy79002, yvy80002, app(ty_[], eg)) -> new_ltEs17(yvy79002, yvy80002, eg) new_compare0([], :(yvy80000, yvy80001), bda) -> LT new_asAs(True, yvy221) -> yvy221 new_esEs19(yvy4001, yvy3001, app(ty_[], caf)) -> new_esEs17(yvy4001, yvy3001, caf) new_esEs25(yvy79000, yvy80000, app(ty_[], hc)) -> new_esEs17(yvy79000, yvy80000, hc) new_lt20(yvy79000, yvy80000, app(app(ty_@2, gh), ha)) -> new_lt10(yvy79000, yvy80000, gh, ha) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_[], bbg)) -> new_esEs17(yvy79000, yvy80000, bbg) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(app(ty_@2, da), db)) -> new_ltEs5(yvy79000, yvy80000, da, db) new_primCompAux0(yvy79000, yvy80000, yvy256, bda) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, bda)) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cgd), cge), cfc) -> new_esEs4(yvy4000, yvy3000, cgd, cge) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, cab)) -> new_esEs13(yvy4001, yvy3001, cab) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(ty_Maybe, cgg)) -> new_esEs7(yvy4000, yvy3000, cgg) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(app(ty_@2, cgh), cha)) -> new_esEs6(yvy4000, yvy3000, cgh, cha) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, cfc) -> new_esEs16(yvy4000, yvy3000) new_compare111(yvy226, yvy227, False, ced, cee) -> GT new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], ca), bb) -> new_ltEs17(yvy79000, yvy80000, ca) new_primCompAux00(yvy260, EQ) -> yvy260 new_compare0([], [], bda) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(yvy4000, yvy3000, cca, ccb) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, cag), cah)) -> new_esEs4(yvy4001, yvy3001, cag, cah) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, dg), dh)) -> new_ltEs7(yvy79002, yvy80002, dg, dh) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bha), bhb)) -> new_esEs4(yvy4000, yvy3000, bha, bhb) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dbg), dbh)) -> new_esEs6(yvy4001, yvy3001, dbg, dbh) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, hb) -> new_esEs9(new_compare7(yvy79000, yvy80000, hb), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_compare10(yvy79000, yvy80000, False) -> GT new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), cdh) -> new_asAs(new_esEs23(yvy4000, yvy3000, cdh), new_esEs22(yvy4001, yvy3001, cdh)) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bhe, bhf) -> new_asAs(new_esEs20(yvy4000, yvy3000, bhe), new_esEs19(yvy4001, yvy3001, bhf)) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs17(yvy7900, yvy8000, bda) -> new_fsEs(new_compare0(yvy7900, yvy8000, bda)) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_compare28(yvy79000, yvy80000, True, ge, gf, gg) -> EQ new_esEs25(yvy79000, yvy80000, app(app(ty_Either, gc), gd)) -> new_esEs4(yvy79000, yvy80000, gc, gd) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt8(yvy79000, yvy80000, ge, gf, gg) new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], cbh)) -> new_esEs17(yvy4000, yvy3000, cbh) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, bah) -> new_pePe(new_lt5(yvy79000, yvy80000, hd), new_asAs(new_esEs10(yvy79000, yvy80000, hd), new_ltEs6(yvy79001, yvy80001, bah))) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(app(ty_Either, chg), chh)) -> new_esEs4(yvy4000, yvy3000, chg, chh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, cfc) -> new_esEs14(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, cfb)) -> new_esEs13(yvy79001, yvy80001, cfb) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, dda), ddb)) -> new_esEs6(yvy4000, yvy3000, dda, ddb) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_esEs9(EQ, EQ) -> True new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, app(ty_[], cdc)) -> new_esEs17(yvy4000, yvy3000, cdc) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, cec)) -> new_ltEs12(yvy7900, yvy8000, cec) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, ccd)) -> new_esEs7(yvy4000, yvy3000, ccd) new_compare24(yvy79000, yvy80000, True) -> EQ new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bbh), bca)) -> new_ltEs7(yvy79000, yvy80000, bbh, bca) new_ltEs16(Nothing, Just(yvy80000), ceb) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, bed, bec) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, bec), bed, bec) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_compare29(Left(yvy7900), Right(yvy8000), False, bed, bec) -> LT new_ltEs4(EQ, GT) -> True new_compare28(yvy79000, yvy80000, False, ge, gf, gg) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bce), bcf)) -> new_ltEs5(yvy79000, yvy80000, bce, bcf) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, fc), fd), ff)) -> new_lt8(yvy79001, yvy80001, fc, fd, ff) new_esEs26(yvy4002, yvy3002, app(ty_[], dbc)) -> new_esEs17(yvy4002, yvy3002, dbc) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_lt6(yvy79000, yvy80000, gc, gd) -> new_esEs9(new_compare14(yvy79000, yvy80000, gc, gd), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, cea)) -> new_ltEs12(yvy7900, yvy8000, cea) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, eh), fa)) -> new_esEs4(yvy79001, yvy80001, eh, fa) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dad)) -> new_esEs7(yvy4002, yvy3002, dad) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, bhd)) -> new_lt12(yvy79000, yvy80000, bhd) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_lt19(yvy79001, yvy80001, app(ty_Maybe, ga)) -> new_lt16(yvy79001, yvy80001, ga) new_compare13(yvy79000, yvy80000, app(app(ty_Either, bdb), bdc)) -> new_compare14(yvy79000, yvy80000, bdb, bdc) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dbf)) -> new_esEs7(yvy4001, yvy3001, dbf) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, cef, ceg) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, bb) -> new_ltEs15(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs9(yvy79000, yvy80000, ce, cf, cg) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, bgd)) -> new_esEs13(yvy4000, yvy3000, bgd) new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_not(False) -> True new_esEs28(yvy4000, yvy3000, app(ty_Ratio, ddc)) -> new_esEs13(yvy4000, yvy3000, ddc) new_esEs24(yvy79001, yvy80001, app(ty_[], gb)) -> new_esEs17(yvy79001, yvy80001, gb) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, cba)) -> new_esEs7(yvy4000, yvy3000, cba) new_esEs9(GT, GT) -> True new_compare0(:(yvy79000, yvy79001), [], bda) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cfg), cfc) -> new_esEs13(yvy4000, yvy3000, cfg) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, cbb), cbc)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs5(yvy4000, yvy3000, ddd, dde, ddf) new_compare27(yvy79000, yvy80000, True, gh, ha) -> EQ new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_ltEs4(GT, LT) -> False new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_lt5(yvy79000, yvy80000, app(ty_Ratio, bfg)) -> new_lt12(yvy79000, yvy80000, bfg) new_compare113(yvy79000, yvy80000, False, hb) -> GT new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_compare7(yvy79000, yvy80000, hb) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bhg)) -> new_esEs7(yvy4001, yvy3001, bhg) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare10(yvy79000, yvy80000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) new_primPlusNat1(Zero, Zero) -> Zero new_lt19(yvy79001, yvy80001, app(ty_Ratio, cfb)) -> new_lt12(yvy79001, yvy80001, cfb) new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, hc) -> new_esEs9(new_compare0(yvy79000, yvy80000, hc), LT) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, cfc) -> new_esEs12(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, ddh), dea)) -> new_esEs4(yvy4000, yvy3000, ddh, dea) new_ltEs13(True, False) -> False new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dbd), dbe)) -> new_esEs4(yvy4002, yvy3002, dbd, dbe) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt5(yvy79000, yvy80000, app(ty_Maybe, bbf)) -> new_lt16(yvy79000, yvy80000, bbf) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(ty_Ratio, cdg)) -> new_ltEs12(yvy79000, yvy80000, cdg) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, bhc)) -> new_compare18(yvy79000, yvy80000, bhc) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs12(@0, @0) -> True new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, bed, bec) -> EQ new_compare23(yvy79000, yvy80000, False, hb) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, hb), hb) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs5(yvy4002, yvy3002, dah, dba, dbb) new_lt19(yvy79001, yvy80001, app(ty_[], gb)) -> new_lt17(yvy79001, yvy80001, gb) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs4(Right(yvy4000), Right(yvy3000), cgf, app(ty_[], chf)) -> new_esEs17(yvy4000, yvy3000, chf) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bhh), caa)) -> new_esEs6(yvy4001, yvy3001, bhh, caa) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs7(Right(yvy79000), Right(yvy80000), cb, app(ty_[], dd)) -> new_ltEs17(yvy79000, yvy80000, dd) new_lt20(yvy79000, yvy80000, app(ty_Maybe, hb)) -> new_lt16(yvy79000, yvy80000, hb) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cfh), cga), cgb), cfc) -> new_esEs5(yvy4000, yvy3000, cfh, cga, cgb) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), daa, dab, dac) -> new_asAs(new_esEs28(yvy4000, yvy3000, daa), new_asAs(new_esEs27(yvy4001, yvy3001, dab), new_esEs26(yvy4002, yvy3002, dac))) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], bgh)) -> new_esEs17(yvy4000, yvy3000, bgh) new_compare110(yvy79000, yvy80000, False, gh, ha) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_primEqNat0(Zero, Zero) -> True new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs4(GT, GT) -> True new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs7(Right(yvy79000), Right(yvy80000), cb, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs17(:(yvy4000, yvy4001), [], ccc) -> False new_esEs17([], :(yvy3000, yvy3001), ccc) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dag)) -> new_esEs13(yvy4002, yvy3002, dag) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ccc) -> new_asAs(new_esEs21(yvy4000, yvy3000, ccc), new_esEs17(yvy4001, yvy3001, ccc)) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, ge, gf, gg) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dcf), dcg)) -> new_esEs4(yvy4001, yvy3001, dcf, dcg) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs5(yvy4001, yvy3001, dcb, dcc, dcd) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) The set Q consists of the following terms: new_esEs28(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Int) new_fsEs(x0) new_ltEs20(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_compare27(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare9(x0, x1, x2, x3) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs10(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Double) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(LT, LT) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_primPlusNat1(Zero, Zero) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare113(x0, x1, True, x2) new_ltEs15(x0, x1) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat1(Zero, Zero) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_primCompAux00(x0, GT) new_lt6(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt5(x0, x1, ty_@0) new_lt4(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs11(x0, x1) new_esEs14(True, True) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Char) new_compare17(@0, @0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCmpNat1(Succ(x0), Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_sr(x0, x1) new_esEs25(x0, x1, ty_Double) new_asAs(False, x0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs9(LT, LT) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(Zero, x0) new_compare110(x0, x1, False, x2, x3) new_esEs14(False, True) new_esEs14(True, False) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs7(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(x0, Succ(x1)) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_lt16(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt18(x0, x1) new_compare29(Left(x0), Left(x1), False, x2, x3) new_esEs10(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs7(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_compare13(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare114(x0, x1, False) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Succ(x1)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare114(x0, x1, True) new_compare13(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare113(x0, x1, False, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Nothing, Nothing, x0) new_compare112(x0, x1, True, x2, x3) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_compare111(x0, x1, True, x2, x3) new_compare23(x0, x1, False, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(Integer(x0), Integer(x1)) new_ltEs4(GT, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Bool) new_compare11(x0, x1, False, x2, x3, x4) new_compare24(x0, x1, True) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs12(x0, x1, x2) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs10(x0, x1, ty_Double) new_lt5(x0, x1, app(ty_[], x2)) new_esEs7(Nothing, Just(x0), x1) new_compare27(x0, x1, False, x2, x3) new_ltEs16(Just(x0), Nothing, x1) new_sr0(Integer(x0), Integer(x1)) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs6(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Just(x0), Nothing, x1) new_compare25(x0, x1) new_lt19(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs19(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare0([], [], x0) new_esEs26(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_pePe(True, x0) new_lt5(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_esEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs24(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(True, True) new_primCmpNat0(x0, Zero) new_esEs27(x0, x1, ty_Double) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_compare24(x0, x1, False) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_ltEs21(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt20(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_compare112(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_pePe(False, x0) new_ltEs14(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_primCmpNat1(Zero, Succ(x0)) new_primCompAux0(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Int) new_compare13(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare23(x0, x1, True, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare13(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare15(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Integer) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_lt19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare210(x0, x1, True) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Char) new_asAs(True, x0) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare10(x0, x1, True) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_compare10(x0, x1, False) new_ltEs13(False, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt13(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare13(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare28(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_esEs19(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs17(:(x0, x1), [], x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, app(ty_[], x2)) new_ltEs4(EQ, EQ) new_esEs9(GT, GT) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs20(x0, x1, ty_Double) new_compare7(x0, x1, x2) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_ltEs17(x0, x1, x2) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Int) new_compare0(:(x0, x1), [], x2) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs25(x0, x1, ty_Char) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_esEs21(x0, x1, ty_Integer) new_esEs15(x0, x1) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_compare29(Right(x0), Left(x1), False, x2, x3) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(Left(x0), Right(x1), False, x2, x3) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Int) new_esEs12(@0, @0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs17([], [], x0) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt8(x0, x1, x2, x3, x4) new_esEs26(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_lt5(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_lt5(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), ty_Double) new_lt17(x0, x1, x2) new_esEs17([], :(x0, x1), x2) new_ltEs21(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_primCompAux00(x0, EQ) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt10(x0, x1, x2, x3) new_compare8(x0, x1) new_compare0([], :(x0, x1), x2) new_primPlusNat1(Zero, Succ(x0)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare16(x0, x1, x2, x3, x4) new_primEqNat0(Zero, Zero) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt19(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_lt5(x0, x1, ty_Int) new_compare28(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs14(False, False) new_esEs19(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs16(Nothing, Just(x0), x1) new_compare14(x0, x1, x2, x3) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_esEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt11(x0, x1) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs27(x0, x1, ty_Char) new_compare110(x0, x1, True, x2, x3) new_lt5(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (69) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(ty_Either, he), hf)) -> new_ltEs(yvy79001, yvy80001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_Maybe, bbf), bah) -> new_lt2(yvy79000, yvy80000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(yvy79000, yvy80000, False, hb) -> new_ltEs2(yvy79000, yvy80000, hb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(yvy79002, yvy80002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(ty_Maybe, ga), fb) -> new_lt2(yvy79001, yvy80001, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_lt3(yvy79000, yvy80000, hc) -> new_compare(yvy79000, yvy80000, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(yvy79001, yvy80001, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(yvy79002, yvy80002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(app(ty_@2, bab), bac)) -> new_ltEs1(yvy79001, yvy80001, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(app(ty_@2, ed), ee)) -> new_ltEs1(yvy79002, yvy80002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_compare(yvy79001, yvy80001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare3(yvy79000, yvy80000, ge, gf, gg) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bda) -> new_compare(yvy79001, yvy80001, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare2(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bda), bec) -> new_primCompAux(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, bda), bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bbh), bca)) -> new_ltEs(yvy79000, yvy80000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(yvy79000, yvy80000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bce), bcf)) -> new_ltEs1(yvy79000, yvy80000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(ty_[], bae)) -> new_ltEs3(yvy79001, yvy80001, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(ty_[], eg)) -> new_ltEs3(yvy79002, yvy80002, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(yvy79000), Just(yvy80000), app(ty_[], bch)) -> new_ltEs3(yvy79000, yvy80000, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bcg)) -> new_ltEs2(yvy79000, yvy80000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_Either, baf), bag), bah) -> new_lt(yvy79000, yvy80000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb), bec) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(yvy79001, yvy80001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb), bec) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_lt0(yvy79000, yvy80000, ge, gf, gg) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare20(yvy79000, yvy80000, False, ge, gf, gg) -> new_ltEs0(yvy79000, yvy80000, ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare21(yvy79000, yvy80000, False, gh, ha) -> new_ltEs1(yvy79000, yvy80000, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_[], bbg), bah) -> new_lt3(yvy79000, yvy80000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(ty_[], gb), fb) -> new_lt3(yvy79001, yvy80001, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_@2, bdg), bdh)) -> new_compare4(yvy79000, yvy80000, bdg, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt(yvy79000, yvy80000, gc, gd) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare1(yvy79000, yvy80000, gc, gd) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt1(yvy79000, yvy80000, gh, ha) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_Maybe, hb), df, fb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_Maybe, hb)), df), fb), bec) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), hd, app(ty_Maybe, bad)) -> new_ltEs2(yvy79001, yvy80001, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, df, app(ty_Maybe, ef)) -> new_ltEs2(yvy79002, yvy80002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_@2, bbd), bbe), bah) -> new_lt1(yvy79000, yvy80000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(yvy79000, yvy80000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(ty_@2, fg), fh), fb) -> new_lt1(yvy79001, yvy80001, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt2(yvy79000, yvy80000, hb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare5(yvy79000, yvy80000, hb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, hb), hb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_@2, gh), ha), df, fb) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), df), fb), bec) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(yvy79000, yvy80000, gh, ha) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, gh, ha), gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(app(ty_@3, bdd), bde), bdf)) -> new_compare3(yvy79000, yvy80000, bdd, bde, bdf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(yvy79001, yvy80001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_[], hc), df, fb) -> new_compare(yvy79000, yvy80000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_[], beb)) -> new_compare(yvy79000, yvy80000, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_Maybe, bea)) -> new_compare5(yvy79000, yvy80000, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_Either, bdb), bdc)) -> new_compare1(yvy79000, yvy80000, bdb, bdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(Left(yvy79000), Left(yvy80000), app(app(ty_Either, h), ba), bb) -> new_ltEs(yvy79000, yvy80000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(yvy79000, yvy80000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh)), bec) -> new_ltEs(yvy79002, yvy80002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_Either, bbh), bca)), bec) -> new_ltEs(yvy79000, yvy80000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(ty_Either, he), hf)), bec) -> new_ltEs(yvy79001, yvy80001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bec) -> new_ltEs(yvy79000, yvy80000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bec) -> new_ltEs(yvy79000, yvy80000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(ty_Either, bee), bef)) -> new_ltEs(yvy7900, yvy8000, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_Maybe, bbf)), bah), bec) -> new_lt2(yvy79000, yvy80000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(ty_Maybe, ga)), fb), bec) -> new_lt2(yvy79001, yvy80001, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(yvy79000, yvy80000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(yvy79000, yvy80000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb), bec) -> new_ltEs0(yvy79000, yvy80000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(yvy7900, yvy8000, beg, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(app(ty_@3, hg), hh), baa)), bec) -> new_ltEs0(yvy79001, yvy80001, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg)), bec) -> new_ltEs0(yvy79000, yvy80000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec)), bec) -> new_ltEs0(yvy79002, yvy80002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(app(ty_@3, bcb), bcc), bcd)), bec) -> new_ltEs0(yvy79000, yvy80000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(app(ty_@2, da), db)) -> new_ltEs1(yvy79000, yvy80000, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bf), bg), bb) -> new_ltEs1(yvy79000, yvy80000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(yvy79000), Left(yvy80000), app(ty_[], ca), bb) -> new_ltEs3(yvy79000, yvy80000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(ty_[], dd)) -> new_ltEs3(yvy79000, yvy80000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Right(yvy79000), Right(yvy80000), cb, app(ty_Maybe, dc)) -> new_ltEs2(yvy79000, yvy80000, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bh), bb) -> new_ltEs2(yvy79000, yvy80000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(app(ty_@2, bfb), bfc)) -> new_ltEs1(yvy7900, yvy8000, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ed), ee)), bec) -> new_ltEs1(yvy79002, yvy80002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_@2, bce), bcf)), bec) -> new_ltEs1(yvy79000, yvy80000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(app(ty_@2, da), db)), bec) -> new_ltEs1(yvy79000, yvy80000, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_@2, bf), bg)), bb), bec) -> new_ltEs1(yvy79000, yvy80000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(app(ty_@2, bab), bac)), bec) -> new_ltEs1(yvy79001, yvy80001, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(ty_[], dd)), bec) -> new_ltEs3(yvy79000, yvy80000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(ty_[], bae)), bec) -> new_ltEs3(yvy79001, yvy80001, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(ty_[], bfe)) -> new_ltEs3(yvy7900, yvy8000, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(ty_[], eg)), bec) -> new_ltEs3(yvy79002, yvy80002, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_[], ca)), bb), bec) -> new_ltEs3(yvy79000, yvy80000, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_[], bch)), bec) -> new_ltEs3(yvy79000, yvy80000, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb), bec) -> new_lt(yvy79001, yvy80001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_Either, baf), bag)), bah), bec) -> new_lt(yvy79000, yvy80000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(ty_[], gb)), fb), bec) -> new_lt3(yvy79001, yvy80001, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_[], bbg)), bah), bec) -> new_lt3(yvy79000, yvy80000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, hd), app(ty_Maybe, bad)), bec) -> new_ltEs2(yvy79001, yvy80001, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_Maybe, bcg)), bec) -> new_ltEs2(yvy79000, yvy80000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, cb), app(ty_Maybe, dc)), bec) -> new_ltEs2(yvy79000, yvy80000, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_Maybe, bh)), bb), bec) -> new_ltEs2(yvy79000, yvy80000, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(yvy7900), Right(yvy8000), False, bed, app(ty_Maybe, bfd)) -> new_ltEs2(yvy7900, yvy8000, bfd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ef)), bec) -> new_ltEs2(yvy79002, yvy80002, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(ty_@2, fg), fh)), fb), bec) -> new_lt1(yvy79001, yvy80001, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), bah), bec) -> new_lt1(yvy79000, yvy80000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah), bec) -> new_lt0(yvy79000, yvy80000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb), bec) -> new_lt0(yvy79001, yvy80001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bda), bec) -> new_compare(yvy79001, yvy80001, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_[], hc)), df), fb), bec) -> new_compare(yvy79000, yvy80000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (70) YES ---------------------------------------- (71) 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. ---------------------------------------- (72) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (73) YES ---------------------------------------- (74) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy24200), Succ(yvy24100)) -> new_primMinusNat(yvy24200, yvy24100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (75) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(yvy24200), Succ(yvy24100)) -> new_primMinusNat(yvy24200, yvy24100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (76) YES ---------------------------------------- (77) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy20200), Succ(yvy3000000)) -> new_primPlusNat(yvy20200, yvy3000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (78) 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(yvy20200), Succ(yvy3000000)) -> new_primPlusNat(yvy20200, yvy3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (79) YES ---------------------------------------- (80) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) The TRS R consists of the following rules: new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cga), cgb), cgc) -> new_ltEs7(yvy79000, yvy80000, cga, cgb) new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dhh)) -> new_esEs13(yvy4001, yvy3001, dhh) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_pePe(True, yvy255) -> True new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cgd), cge), cgf), cgc) -> new_ltEs9(yvy79000, yvy80000, cgd, cge, cgf) new_esEs10(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_compare23(yvy79000, yvy80000, True, bbe) -> EQ new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT4(yvy34, yvy400, h, ba, bb) new_ltEs16(Nothing, Nothing, bdf) -> True new_esEs21(yvy4000, yvy3000, app(app(ty_@2, hb), hc)) -> new_esEs6(yvy4000, yvy3000, hb, hc) new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_ltEs16(Just(yvy79000), Nothing, bdf) -> False new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs15(yvy20, yvy15) new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_compare111(yvy226, yvy227, True, bbc, bbd) -> LT new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Maybe, eag)) -> new_esEs7(yvy4000, yvy3000, eag) new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bdf)) -> new_ltEs16(yvy7900, yvy8000, bdf) new_esEs20(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT5(yvy34, yvy400, h, ba, bb) new_esEs20(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs22(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs35(yvy400, yvy300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(yvy400, yvy300, bbg, bbh, bca) new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_splitLT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bag, bah, bba) -> new_splitLT5(yvy18, yvy20, bag, bah, bba) new_primCmpNat1(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Maybe, chb), cgc) -> new_ltEs16(yvy79000, yvy80000, chb) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_esEs25(yvy79000, yvy80000, ty_Ordering) -> new_esEs9(yvy79000, yvy80000) new_esEs33(yvy400, yvy300, app(ty_[], gh)) -> new_esEs17(yvy400, yvy300, gh) new_compare13(yvy79000, yvy80000, app(app(ty_@2, cfd), cfe)) -> new_compare9(yvy79000, yvy80000, cfd, cfe) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs9(yvy79000, yvy80000, bea, beb, bec) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Char, cgc) -> new_ltEs8(yvy79000, yvy80000) new_esEs20(yvy4000, yvy3000, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs5(yvy4000, yvy3000, gb, gc, gd) new_esEs15(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) new_not(True) -> False new_esEs25(yvy79000, yvy80000, ty_Bool) -> new_esEs14(yvy79000, yvy80000) new_primCompAux00(yvy260, LT) -> LT new_lt19(yvy79001, yvy80001, app(app(ty_Either, bgh), bha)) -> new_lt6(yvy79001, yvy80001, bgh, bha) new_esEs28(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bef)) -> new_ltEs12(yvy79000, yvy80000, bef) new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, app(app(ty_Either, dba), dbb)) -> new_ltEs7(yvy7900, yvy8000, dba, dbb) new_compare13(yvy79000, yvy80000, ty_Int) -> new_compare25(yvy79000, yvy80000) new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs12(yvy35, yvy30) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare13(yvy79000, yvy80000, app(ty_[], cfh)) -> new_compare0(yvy79000, yvy80000, cfh) new_ltEs21(yvy79002, yvy80002, ty_@0) -> new_ltEs11(yvy79002, yvy80002) new_splitLT23(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT4(yvy33, yvy35, bf, bg, bh) new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt4(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(app(ty_@3, ccd), cce), ccf)) -> new_lt8(yvy79000, yvy80000, ccd, cce, ccf) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_compare12(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) new_esEs25(yvy79000, yvy80000, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs5(yvy79000, yvy80000, bad, bae, baf) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dcf), dcg), bcc) -> new_esEs6(yvy4000, yvy3000, dcf, dcg) new_esEs25(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs10(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, app(app(ty_@2, dbf), dbg)) -> new_ltEs5(yvy7900, yvy8000, dbf, dbg) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs5(yvy400, yvy500, bch, bda, bdb) new_ltEs6(yvy79001, yvy80001, app(app(ty_Either, cah), cba)) -> new_ltEs7(yvy79001, yvy80001, cah, cba) new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_primPlusNat1(Succ(yvy20200), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20200, yvy3000000))) new_ltEs21(yvy79002, yvy80002, ty_Double) -> new_ltEs18(yvy79002, yvy80002) new_esEs22(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Ordering, cgc) -> new_ltEs4(yvy79000, yvy80000) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba, bb) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba, bb) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, ty_@0) -> new_esEs12(yvy79001, yvy80001) new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) new_splitGT5(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) new_addToFM_C0(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_compare33(yvy400, yvy300, h, ba) -> new_compare29(Right(yvy400), Left(yvy300), False, h, ba) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_lt12(yvy79000, yvy80000, cc) -> new_esEs9(new_compare18(yvy79000, yvy80000, cc), LT) new_esEs34(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs13(yvy400, yvy300, bcg) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Double, bcc) -> new_esEs18(yvy4000, yvy3000) new_esEs35(yvy400, yvy300, app(ty_Maybe, bbf)) -> new_esEs7(yvy400, yvy300, bbf) new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, cac, cad, cae) -> new_mkVBalBranch0(Left(yvy45), yvy46, new_splitGT4(yvy48, yvy50, cac, cad, cae), yvy49, cac, cad, cae) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_ltEs8(yvy7900, yvy8000) -> new_fsEs(new_compare15(yvy7900, yvy8000)) new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_ltEs6(yvy79001, yvy80001, app(app(ty_@2, cbe), cbf)) -> new_ltEs5(yvy79001, yvy80001, cbe, cbf) new_esEs10(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) new_esEs10(yvy79000, yvy80000, app(ty_Maybe, cdb)) -> new_esEs7(yvy79000, yvy80000, cdb) new_esEs26(yvy4002, yvy3002, ty_@0) -> new_esEs12(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) new_esEs17([], [], gh) -> True new_compare113(yvy79000, yvy80000, True, bbe) -> LT new_splitLT5(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) new_addToFM0(yvy51, yvy41, bb) -> yvy41 new_ltEs7(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cgg), cgh), cgc) -> new_ltEs5(yvy79000, yvy80000, cgg, cgh) new_lt7(yvy79000, yvy80000) -> new_esEs9(new_compare15(yvy79000, yvy80000), LT) new_compare11(yvy79000, yvy80000, True, bad, bae, baf) -> LT new_esEs30(yvy400, yvy500, app(ty_[], bdc)) -> new_esEs17(yvy400, yvy500, bdc) new_esEs24(yvy79001, yvy80001, app(app(ty_@2, bhe), bhf)) -> new_esEs6(yvy79001, yvy80001, bhe, bhf) new_compare114(yvy79000, yvy80000, True) -> LT new_lt5(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt15(new_sizeFM(yvy543, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy544, h, ba, bb))), h, ba, bb) new_lt5(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_lt10(yvy79000, yvy80000, ca, cb) -> new_esEs9(new_compare9(yvy79000, yvy80000, ca, cb), LT) new_lt18(yvy79000, yvy80000) -> new_esEs9(new_compare26(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Int, cgc) -> new_ltEs14(yvy79000, yvy80000) new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT new_emptyFM(h, ba, bb) -> EmptyFM new_esEs20(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, app(ty_Maybe, bbf)) -> new_esEs7(yvy400, yvy300, bbf) new_esEs25(yvy79000, yvy80000, app(ty_Maybe, bbe)) -> new_esEs7(yvy79000, yvy80000, bbe) new_compare13(yvy79000, yvy80000, ty_Ordering) -> new_compare19(yvy79000, yvy80000) new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare25(yvy7900, yvy8000)) new_esEs28(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_ps(Neg(yvy2420), Neg(yvy2410)) -> Neg(new_primPlusNat1(yvy2420, yvy2410)) new_esEs26(yvy4002, yvy3002, app(app(ty_@2, dgd), dge)) -> new_esEs6(yvy4002, yvy3002, dgd, dge) new_esEs34(yvy400, yvy300, app(app(ty_Either, bdd), bde)) -> new_esEs4(yvy400, yvy300, bdd, bde) new_esEs25(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_primMulNat0(Succ(yvy400100), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy300000)) -> Zero new_esEs4(Left(yvy4000), Left(yvy3000), ty_Char, bcc) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt13(yvy79000, yvy80000) new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_splitLT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) new_compare11(yvy79000, yvy80000, False, bad, bae, baf) -> GT new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT5(yvy33, yvy400, h, ba, bb) new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt15(yvy79001, yvy80001) new_esEs10(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Left(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) new_esEs28(yvy4000, yvy3000, app(ty_[], ebf)) -> new_esEs17(yvy4000, yvy3000, ebf) new_esEs10(yvy79000, yvy80000, app(app(ty_Either, ccb), ccc)) -> new_esEs4(yvy79000, yvy80000, ccb, ccc) new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_splitGT23(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bc, bd, be) -> new_splitGT5(yvy64, yvy65, bc, bd, be) new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs5(yvy20, yvy15, dfe, dff, dfg) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_[], beh)) -> new_ltEs17(yvy79000, yvy80000, beh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Ordering, bcc) -> new_esEs9(yvy4000, yvy3000) new_esEs32(yvy20, yvy15, app(app(ty_Either, dga), dgb)) -> new_esEs4(yvy20, yvy15, dga, dgb) new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, EmptyFM, yvy50, yvy51, yvy54, False, h, ba, bb) -> error([]) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cde), cdf)) -> new_esEs6(yvy4000, yvy3000, cde, cdf) new_primPlusNat1(Succ(yvy20200), Zero) -> Succ(yvy20200) new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs18(yvy20, yvy15) new_esEs25(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_compare24(yvy79000, yvy80000, False) -> new_compare10(yvy79000, yvy80000, new_ltEs13(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs5(yvy4000, yvy3000, dec, ded, dee) new_esEs24(yvy79001, yvy80001, ty_Integer) -> new_esEs8(yvy79001, yvy80001) new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Left(yvy400), yvy41, h, ba, bb), h, ba, bb) new_ltEs21(yvy79002, yvy80002, app(ty_Maybe, bgf)) -> new_ltEs16(yvy79002, yvy80002, bgf) new_esEs32(yvy20, yvy15, app(ty_Ratio, dfd)) -> new_esEs13(yvy20, yvy15, dfd) new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) new_fsEs(yvy243) -> new_not(new_esEs9(yvy243, GT)) new_ltEs19(yvy7900, yvy8000, app(ty_[], cef)) -> new_ltEs17(yvy7900, yvy8000, cef) new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, new_addToFM_C0(yvy53, Left(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Zero, yvy50, yvy51, yvy107, yvy54, app(app(ty_Either, h), ba), bb) new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy107, yvy543, app(app(ty_Either, h), ba), bb), yvy544, app(app(ty_Either, h), ba), bb) new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Left(yvy300), yvy31, new_splitGT5(yvy33, yvy400, h, ba, bb), yvy34, h, ba, bb) new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_esEs10(yvy79000, yvy80000, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs5(yvy79000, yvy80000, ccd, cce, ccf) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs36(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs6(yvy400, yvy300, bce, bcf) new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) new_esEs33(yvy400, yvy300, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(yvy400, yvy300, bbg, bbh, bca) new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, cac, cad, cae) -> yvy49 new_splitGT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT23(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT4(yvy33, yvy400, h, ba, bb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_@0, cgc) -> new_ltEs11(yvy79000, yvy80000) new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs12(yvy4001, yvy3001) new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt14(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, app(app(ty_Either, ccb), ccc)) -> new_lt6(yvy79000, yvy80000, ccb, ccc) new_esEs24(yvy79001, yvy80001, ty_Int) -> new_esEs15(yvy79001, yvy80001) new_ltEs6(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) new_ltEs7(Left(yvy79000), Right(yvy80000), chd, cgc) -> True new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Bool, cgc) -> new_ltEs13(yvy79000, yvy80000) new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt7(yvy79001, yvy80001) new_compare15(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat1(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) new_splitLT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) new_compare8(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs14(yvy79000, yvy80000)) new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, new_addToFM_C0(yvy53, Right(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy33 new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare25(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dce), bcc) -> new_esEs7(yvy4000, yvy3000, dce) new_compare31(yvy20, yvy15, bag, bah) -> new_compare29(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bag), bag, bah) new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_lt8(yvy79000, yvy80000, bad, bae, baf) -> new_esEs9(new_compare16(yvy79000, yvy80000, bad, bae, baf), LT) new_primCmpNat0(yvy7900, Zero) -> GT new_ltEs12(yvy7900, yvy8000, bbb) -> new_fsEs(new_compare18(yvy7900, yvy8000, bbb)) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) new_esEs26(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) new_esEs25(yvy79000, yvy80000, app(ty_Ratio, cc)) -> new_esEs13(yvy79000, yvy80000, cc) new_ltEs21(yvy79002, yvy80002, app(ty_[], bgg)) -> new_ltEs17(yvy79002, yvy80002, bgg) new_compare0([], :(yvy80000, yvy80001), cef) -> LT new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_esEs19(yvy4001, yvy3001, app(ty_[], fb)) -> new_esEs17(yvy4001, yvy3001, fb) new_esEs25(yvy79000, yvy80000, app(ty_[], cab)) -> new_esEs17(yvy79000, yvy80000, cab) new_compare13(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) new_ltEs18(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba, bb) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(app(ty_@2, dab), dac)) -> new_ltEs5(yvy79000, yvy80000, dab, dac) new_splitGT24(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, cac, cad, cae) -> new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs9(new_compare31(yvy50, yvy45, cac, cad), LT), cac, cad, cae) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dde), ddf), bcc) -> new_esEs4(yvy4000, yvy3000, dde, ddf) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(app(ty_@2, ddh), dea)) -> new_esEs6(yvy4000, yvy3000, ddh, dea) new_esEs18(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Float, bcc) -> new_esEs16(yvy4000, yvy3000) new_gt1(yvy400, yvy300, h, ba) -> new_esEs9(new_compare33(yvy400, yvy300, h, ba), GT) new_esEs28(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs31(yvy35, yvy30, app(ty_Ratio, db)) -> new_esEs13(yvy35, yvy30, db) new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_primCompAux00(yvy260, EQ) -> yvy260 new_splitGT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Right(yvy300), yvy31, new_splitGT4(yvy33, yvy400, h, ba, bb), yvy34, h, ba, bb) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs11(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs18(yvy79000, yvy80000) new_esEs6(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ea, eb) -> new_asAs(new_esEs20(yvy4000, yvy3000, ea), new_esEs19(yvy4001, yvy3001, eb)) new_ltEs17(yvy7900, yvy8000, cef) -> new_fsEs(new_compare0(yvy7900, yvy8000, cef)) new_esEs31(yvy35, yvy30, app(ty_Maybe, cf)) -> new_esEs7(yvy35, yvy30, cf) new_esEs25(yvy79000, yvy80000, app(app(ty_Either, bfa), bfb)) -> new_esEs4(yvy79000, yvy80000, bfa, bfb) new_ltEs13(False, True) -> True new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, bad), bae), baf)) -> new_lt8(yvy79000, yvy80000, bad, bae, baf) new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bc, bd, be) -> yvy64 new_ltEs13(False, False) -> True new_esEs20(yvy4000, yvy3000, app(ty_[], ge)) -> new_esEs17(yvy4000, yvy3000, ge) new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Right(yvy400), yvy41, h, ba, bb), h, ba, bb) new_esEs30(yvy400, yvy500, app(ty_Ratio, bcg)) -> new_esEs13(yvy400, yvy500, bcg) new_compare19(yvy79000, yvy80000) -> new_compare210(yvy79000, yvy80000, new_esEs9(yvy79000, yvy80000)) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(app(ty_Either, deg), deh)) -> new_esEs4(yvy4000, yvy3000, deg, deh) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Bool, bcc) -> new_esEs14(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs24(yvy79001, yvy80001, app(ty_Ratio, bhg)) -> new_esEs13(yvy79001, yvy80001, bhg) new_gt0(yvy400, yvy300, h, ba) -> new_esEs9(new_compare32(yvy400, yvy300, h, ba), GT) new_esEs10(yvy79000, yvy80000, ty_Int) -> new_esEs15(yvy79000, yvy80000) new_lt5(yvy79000, yvy80000, ty_Integer) -> new_lt9(yvy79000, yvy80000) new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, app(ty_[], hh)) -> new_esEs17(yvy4000, yvy3000, hh) new_esEs29(yvy400, yvy500, app(app(ty_Either, bcb), bcc)) -> new_esEs4(yvy400, yvy500, bcb, bcc) new_esEs10(yvy79000, yvy80000, ty_Integer) -> new_esEs8(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, app(ty_Ratio, bac)) -> new_esEs13(yvy400, yvy500, bac) new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt11(yvy79001, yvy80001) new_addToFM_C0(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_lt5(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bdg), bdh)) -> new_ltEs7(yvy79000, yvy80000, bdg, bdh) new_ltEs16(Nothing, Just(yvy80000), bdf) -> True new_compare29(Right(yvy7900), Right(yvy8000), False, dag, dah) -> new_compare112(yvy7900, yvy8000, new_ltEs20(yvy7900, yvy8000, dah), dag, dah) new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_esEs14(False, False) -> True new_compare29(Left(yvy7900), Right(yvy8000), False, dag, dah) -> LT new_compare28(yvy79000, yvy80000, False, bad, bae, baf) -> new_compare11(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, bad, bae, baf), bad, bae, baf) new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt8(yvy79001, yvy80001, bhb, bhc, bhd) new_esEs32(yvy20, yvy15, app(ty_Maybe, dfa)) -> new_esEs7(yvy20, yvy15, dfa) new_esEs26(yvy4002, yvy3002, app(ty_[], dhb)) -> new_esEs17(yvy4002, yvy3002, dhb) new_esEs30(yvy400, yvy500, app(app(ty_Either, bdd), bde)) -> new_esEs4(yvy400, yvy500, bdd, bde) new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs15(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs24(yvy79001, yvy80001, app(app(ty_Either, bgh), bha)) -> new_esEs4(yvy79001, yvy80001, bgh, bha) new_esEs26(yvy4002, yvy3002, app(ty_Maybe, dgc)) -> new_esEs7(yvy4002, yvy3002, dgc) new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs15(yvy35, yvy30) new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bc, bd, be) -> new_mkVBalBranch0(Right(yvy60), yvy61, new_splitGT5(yvy63, yvy65, bc, bd, be), yvy64, bc, bd, be) new_primCmpInt3(yvy6200, yvy187) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy187) new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy33 new_sizeFM1(EmptyFM, cd, ce) -> Pos(Zero) new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) new_lt19(yvy79001, yvy80001, app(ty_Maybe, bhh)) -> new_lt16(yvy79001, yvy80001, bhh) new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dhe)) -> new_esEs7(yvy4001, yvy3001, dhe) new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Left(yvy300), yvy31, yvy33, new_splitLT4(yvy34, yvy400, h, ba, bb), h, ba, bb) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Float, cgc) -> new_ltEs15(yvy79000, yvy80000) new_gt3(yvy199, yvy198) -> new_esEs9(new_compare25(yvy199, yvy198), GT) new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_ltEs20(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_esEs28(yvy4000, yvy3000, app(ty_Ratio, ebb)) -> new_esEs13(yvy4000, yvy3000, ebb) new_esEs24(yvy79001, yvy80001, app(ty_[], caa)) -> new_esEs17(yvy79001, yvy80001, caa) new_mkBalBranch6MkBalBranch3(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy107, yvy54, app(app(ty_Either, h), ba), bb) new_compare0(:(yvy79000, yvy79001), [], cef) -> GT new_esEs28(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dch), bcc) -> new_esEs13(yvy4000, yvy3000, dch) new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs9(yvy20, yvy15) new_esEs20(yvy4000, yvy3000, app(app(ty_@2, fg), fh)) -> new_esEs6(yvy4000, yvy3000, fg, fh) new_esEs28(yvy4000, yvy3000, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs5(yvy4000, yvy3000, ebc, ebd, ebe) new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs12(yvy20, yvy15) new_compare27(yvy79000, yvy80000, True, ca, cb) -> EQ new_ltEs4(GT, LT) -> False new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> yvy33 new_compare113(yvy79000, yvy80000, False, bbe) -> GT new_primPlusNat0(Succ(yvy2020), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2020, yvy300000))) new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) new_splitGT23(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bc, bd, be) -> new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs9(new_compare30(yvy65, yvy60, bc, bd), LT), bc, bd, be) new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs8(yvy20, yvy15) new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_esEs25(yvy79000, yvy80000, ty_Double) -> new_esEs18(yvy79000, yvy80000) new_compare0(:(yvy79000, yvy79001), :(yvy80000, yvy80001), cef) -> new_primCompAux0(yvy79000, yvy80000, new_compare0(yvy79001, yvy80001, cef), cef) new_primPlusNat1(Zero, Zero) -> Zero new_compare18(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare12(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) new_esEs28(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_lt13(yvy79000, yvy80000) -> new_esEs9(new_compare8(yvy79000, yvy80000), LT) new_lt17(yvy79000, yvy80000, cab) -> new_esEs9(new_compare0(yvy79000, yvy80000, cab), LT) new_esEs4(Left(yvy4000), Left(yvy3000), ty_@0, bcc) -> new_esEs12(yvy4000, yvy3000) new_addToFM_C0(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) new_esEs28(yvy4000, yvy3000, app(app(ty_Either, ebg), ebh)) -> new_esEs4(yvy4000, yvy3000, ebg, ebh) new_ltEs13(True, False) -> False new_esEs28(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_esEs30(yvy400, yvy500, app(ty_Maybe, bcd)) -> new_esEs7(yvy400, yvy500, bcd) new_esEs26(yvy4002, yvy3002, app(app(ty_Either, dhc), dhd)) -> new_esEs4(yvy4002, yvy3002, dhc, dhd) new_lt5(yvy79000, yvy80000, app(ty_Maybe, cdb)) -> new_lt16(yvy79000, yvy80000, cdb) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(ty_Ratio, dad)) -> new_ltEs12(yvy79000, yvy80000, dad) new_esEs26(yvy4002, yvy3002, ty_Double) -> new_esEs18(yvy4002, yvy3002) new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_compare17(@0, @0) -> EQ new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare12(yvy7900, yvy8000)) new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Right(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) new_esEs12(@0, @0) -> True new_lt5(yvy79000, yvy80000, ty_Char) -> new_lt7(yvy79000, yvy80000) new_compare29(yvy790, yvy800, True, dag, dah) -> EQ new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, EmptyFM, True, h, ba, bb) -> error([]) new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs8(yvy35, yvy30) new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) new_esEs26(yvy4002, yvy3002, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs5(yvy4002, yvy3002, dgg, dgh, dha) new_mkBalBranch6MkBalBranch3(EmptyFM, yvy50, yvy51, yvy54, True, h, ba, bb) -> error([]) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(ty_[], def)) -> new_esEs17(yvy4000, yvy3000, def) new_esEs19(yvy4001, yvy3001, app(app(ty_@2, ed), ee)) -> new_esEs6(yvy4001, yvy3001, ed, ee) new_primMinusNat0(Zero, Succ(yvy24100)) -> Neg(Succ(yvy24100)) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(ty_[], daf)) -> new_ltEs17(yvy79000, yvy80000, daf) new_lt20(yvy79000, yvy80000, app(ty_Maybe, bbe)) -> new_lt16(yvy79000, yvy80000, bbe) new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) new_splitGT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs5(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bbg, bbh, bca) -> new_asAs(new_esEs28(yvy4000, yvy3000, bbg), new_asAs(new_esEs27(yvy4001, yvy3001, bbh), new_esEs26(yvy4002, yvy3002, bca))) new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs8(yvy400, yvy500) new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat1(yvy8000, yvy7900) new_ltEs16(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_compare26(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs14(yvy20, yvy15) new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_esEs26(yvy4002, yvy3002, app(ty_Ratio, dgf)) -> new_esEs13(yvy4002, yvy3002, dgf) new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, Branch(yvy10740, yvy10741, yvy10742, yvy10743, yvy10744), yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy10740, yvy10741, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy1070, yvy1071, yvy1073, yvy10743, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy10744, yvy54, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs17(:(yvy4000, yvy4001), :(yvy3000, yvy3001), gh) -> new_asAs(new_esEs21(yvy4000, yvy3000, gh), new_esEs17(yvy4001, yvy3001, gh)) new_esEs29(yvy400, yvy500, app(ty_Maybe, bbf)) -> new_esEs7(yvy400, yvy500, bbf) new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_esEs27(yvy4001, yvy3001, app(app(ty_Either, eae), eaf)) -> new_esEs4(yvy4001, yvy3001, eae, eaf) new_sizeFM1(Branch(yvy2810, yvy2811, yvy2812, yvy2813, yvy2814), cd, ce) -> yvy2812 new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs15(yvy400, yvy500) new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs9(yvy400, yvy500) new_gt(yvy20, yvy15, bag, bah) -> new_esEs9(new_compare31(yvy20, yvy15, bag, bah), GT) new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs5(yvy4001, yvy3001, eaa, eab, eac) new_esEs10(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Left(yvy80000), chd, cgc) -> False new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT new_ltEs6(yvy79001, yvy80001, app(ty_[], cca)) -> new_ltEs17(yvy79001, yvy80001, cca) new_esEs24(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) new_splitLT4(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) new_primCmpNat0(yvy7900, Succ(yvy8000)) -> new_primCmpNat1(yvy7900, yvy8000) new_compare210(yvy79000, yvy80000, False) -> new_compare114(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000)) new_splitGT4(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) new_esEs4(Left(yvy4000), Right(yvy3000), bcb, bcc) -> False new_esEs4(Right(yvy4000), Left(yvy3000), bcb, bcc) -> False new_mkBalBranch(yvy50, yvy51, yvy107, yvy54, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, new_lt15(new_ps(new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb)), Pos(Succ(Succ(Zero)))), h, ba, bb) new_splitLT23(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs5(yvy400, yvy500, bbg, bbh, bca) new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, caf), cag)) -> new_ltEs5(yvy7900, yvy8000, caf, cag) new_esEs33(yvy400, yvy300, app(ty_Ratio, bac)) -> new_esEs13(yvy400, yvy300, bac) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cdd)) -> new_esEs7(yvy4000, yvy3000, cdd) new_esEs34(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs7(yvy400, yvy300, bcd) new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs12(yvy400, yvy300) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(ty_Maybe, dae)) -> new_ltEs16(yvy79000, yvy80000, dae) new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) new_esEs20(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_esEs25(yvy79000, yvy80000, ty_@0) -> new_esEs12(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs4(GT, EQ) -> False new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs9(yvy35, yvy30) new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, new_addToFM_C0(yvy53, Right(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) new_ltEs13(True, True) -> True new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs9(yvy4001, yvy3001) new_esEs27(yvy4001, yvy3001, app(ty_[], ead)) -> new_esEs17(yvy4001, yvy3001, ead) new_lt5(yvy79000, yvy80000, app(ty_[], cdc)) -> new_lt17(yvy79000, yvy80000, cdc) new_lt20(yvy79000, yvy80000, app(app(ty_Either, bfa), bfb)) -> new_lt6(yvy79000, yvy80000, bfa, bfb) new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bag, bah, bba) -> yvy18 new_primCmpInt2(yvy6200, yvy186) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) new_esEs26(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs14(yvy35, yvy30) new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs14(yvy4001, yvy3001) new_lt5(yvy79000, yvy80000, app(app(ty_@2, ccg), cch)) -> new_lt10(yvy79000, yvy80000, ccg, cch) new_compare13(yvy79000, yvy80000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_compare16(yvy79000, yvy80000, cfa, cfb, cfc) new_lt5(yvy79000, yvy80000, ty_Ordering) -> new_lt14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs5(yvy4000, yvy3000, cdh, cea, ceb) new_esEs23(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs10(yvy79000, yvy80000, app(app(ty_@2, ccg), cch)) -> new_esEs6(yvy79000, yvy80000, ccg, cch) new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs12(yvy400, yvy500) new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) new_gt2(yvy35, yvy30, bf, bg) -> new_esEs9(new_compare30(yvy35, yvy30, bf, bg), GT) new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Right(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) new_mkBalBranch6MkBalBranch3(Branch(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074), yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074, yvy50, yvy51, yvy54, new_lt15(new_sizeFM(yvy1074, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy1073, h, ba, bb))), h, ba, bb) new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba, bb) new_esEs31(yvy35, yvy30, app(app(app(ty_@3, dc), dd), de)) -> new_esEs5(yvy35, yvy30, dc, dd, de) new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs5(yvy4001, yvy3001, eg, eh, fa) new_ltEs21(yvy79002, yvy80002, app(app(ty_@2, bgc), bgd)) -> new_ltEs5(yvy79002, yvy80002, bgc, bgd) new_ltEs20(yvy7900, yvy8000, ty_Double) -> new_ltEs18(yvy7900, yvy8000) new_compare9(yvy79000, yvy80000, ca, cb) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, ca, cb), ca, cb) new_compare14(yvy79000, yvy80000, bfa, bfb) -> new_compare29(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bfa, bfb), bfa, bfb) new_compare13(yvy79000, yvy80000, ty_Char) -> new_compare15(yvy79000, yvy80000) new_primCompAux00(yvy260, GT) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_primMinusNat0(Succ(yvy24200), Zero) -> Pos(Succ(yvy24200)) new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_ltEs21(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) new_esEs24(yvy79001, yvy80001, ty_Double) -> new_esEs18(yvy79001, yvy80001) new_primCmpNat2(Zero, yvy7900) -> LT new_addToFM_C0(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs9(new_compare29(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Left(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs18(yvy400, yvy500) new_esEs36(yvy400, yvy300, app(app(ty_Either, bdd), bde)) -> new_esEs4(yvy400, yvy300, bdd, bde) new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bag, bah, bba) -> new_mkVBalBranch0(Left(yvy15), yvy16, yvy18, new_splitLT5(yvy19, yvy20, bag, bah, bba), bag, bah, bba) new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_ltEs20(yvy7900, yvy8000, ty_@0) -> new_ltEs11(yvy7900, yvy8000) new_esEs26(yvy4002, yvy3002, ty_Int) -> new_esEs15(yvy4002, yvy3002) new_compare110(yvy79000, yvy80000, True, ca, cb) -> LT new_esEs24(yvy79001, yvy80001, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs5(yvy79001, yvy80001, bhb, bhc, bhd) new_esEs24(yvy79001, yvy80001, ty_Bool) -> new_esEs14(yvy79001, yvy80001) new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt4(yvy79000, yvy80000) new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_compare13(yvy79000, yvy80000, ty_Double) -> new_compare26(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs13(yvy7900, yvy8000) new_lt14(yvy79000, yvy80000) -> new_esEs9(new_compare19(yvy79000, yvy80000), LT) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy1070, yvy1071, yvy1073, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy1074, yvy54, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs14(yvy400, yvy500) new_compare210(yvy79000, yvy80000, True) -> EQ new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(yvy4000, yvy3000, he, hf, hg) new_splitGT24(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, cac, cad, cae) -> new_splitGT4(yvy49, yvy50, cac, cad, cae) new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_mkVBalBranch0(Right(yvy30), yvy31, yvy33, new_splitLT4(yvy34, yvy35, bf, bg, bh), bf, bg, bh) new_compare13(yvy79000, yvy80000, ty_Bool) -> new_compare8(yvy79000, yvy80000) new_pePe(False, yvy255) -> yvy255 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, chd), cgc)) -> new_ltEs7(yvy7900, yvy8000, chd, cgc) new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_esEs7(Nothing, Just(yvy3000), bbf) -> False new_esEs7(Just(yvy4000), Nothing, bbf) -> False new_splitLT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bag, bah, bba) -> new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bag, bah), bag, bah, bba) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(ty_Ratio, deb)) -> new_esEs13(yvy4000, yvy3000, deb) new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy34 new_ltEs6(yvy79001, yvy80001, ty_@0) -> new_ltEs11(yvy79001, yvy80001) new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ new_compare112(yvy233, yvy234, True, dcc, dcd) -> LT new_esEs26(yvy4002, yvy3002, ty_Bool) -> new_esEs14(yvy4002, yvy3002) new_primMinusNat0(Succ(yvy24200), Succ(yvy24100)) -> new_primMinusNat0(yvy24200, yvy24100) new_esEs21(yvy4000, yvy3000, app(app(ty_Either, baa), bab)) -> new_esEs4(yvy4000, yvy3000, baa, bab) new_esEs26(yvy4002, yvy3002, ty_Ordering) -> new_esEs9(yvy4002, yvy3002) new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt15(yvy79000, yvy80000) new_esEs23(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs9(yvy79002, yvy80002, bfh, bga, bgb) new_ltEs6(yvy79001, yvy80001, app(ty_Ratio, cbg)) -> new_ltEs12(yvy79001, yvy80001, cbg) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_Either, h), ba), bb) new_esEs7(Nothing, Nothing, bbf) -> True new_lt4(yvy79000, yvy80000) -> new_esEs9(new_compare6(yvy79000, yvy80000), LT) new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Right(yvy400), yvy41, h, ba, bb), h, ba, bb) new_compare13(yvy79000, yvy80000, app(ty_Maybe, cfg)) -> new_compare7(yvy79000, yvy80000, cfg) new_ltEs4(LT, GT) -> True new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy34 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 new_esEs31(yvy35, yvy30, app(app(ty_Either, dg), dh)) -> new_esEs4(yvy35, yvy30, dg, dh) new_esEs26(yvy4002, yvy3002, ty_Integer) -> new_esEs8(yvy4002, yvy3002) new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt9(yvy79001, yvy80001) new_mkBranch(yvy277, yvy278, yvy279, yvy280, yvy281, cd, ce) -> Branch(yvy278, yvy279, new_mkBranchUnbox(yvy280, yvy281, yvy278, new_ps(new_ps(Pos(Succ(Zero)), new_sizeFM1(yvy280, cd, ce)), new_sizeFM1(yvy281, cd, ce)), cd, ce), yvy280, yvy281) new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs18(yvy35, yvy30) new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Left(yvy400), yvy41, h, ba, bb), h, ba, bb) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Int, bcc) -> new_esEs15(yvy4000, yvy3000) new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt13(yvy79001, yvy80001) new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs14(yvy400, yvy300) new_esEs4(Left(yvy4000), Left(yvy3000), ty_Integer, bcc) -> new_esEs8(yvy4000, yvy3000) new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(yvy107, yvy50, yvy51, yvy54, new_gt3(new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) new_compare32(yvy400, yvy300, h, ba) -> new_compare29(Left(yvy400), Right(yvy300), False, h, ba) new_lt5(yvy79000, yvy80000, ty_@0) -> new_lt11(yvy79000, yvy80000) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(app(ty_Either, che), chf)) -> new_ltEs7(yvy79000, yvy80000, che, chf) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Float) -> new_ltEs15(yvy79000, yvy80000) new_esEs28(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_ltEs21(yvy79002, yvy80002, app(ty_Ratio, bge)) -> new_ltEs12(yvy79002, yvy80002, bge) new_ltEs6(yvy79001, yvy80001, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs9(yvy79001, yvy80001, cbb, cbc, cbd) new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs18(yvy4001, yvy3001) new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs9(yvy400, yvy300) new_compare29(Right(yvy7900), Left(yvy8000), False, dag, dah) -> GT new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs15(yvy400, yvy300) new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bfc, bfd, bfe) -> new_pePe(new_lt20(yvy79000, yvy80000, bfc), new_asAs(new_esEs25(yvy79000, yvy80000, bfc), new_pePe(new_lt19(yvy79001, yvy80001, bfd), new_asAs(new_esEs24(yvy79001, yvy80001, bfd), new_ltEs21(yvy79002, yvy80002, bfe))))) new_esEs33(yvy400, yvy300, app(app(ty_Either, bcb), bcc)) -> new_esEs4(yvy400, yvy300, bcb, bcc) new_compare13(yvy79000, yvy80000, ty_@0) -> new_compare17(yvy79000, yvy80000) new_splitLT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) new_ltEs20(yvy7900, yvy8000, app(ty_Maybe, dca)) -> new_ltEs16(yvy7900, yvy8000, dca) new_esEs35(yvy400, yvy300, app(app(ty_@2, ea), eb)) -> new_esEs6(yvy400, yvy300, ea, eb) new_lt15(yvy239, yvy238) -> new_esEs9(new_compare25(yvy239, yvy238), LT) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_Either, h), ba), bb) new_mkBranchUnbox(yvy280, yvy281, yvy278, yvy285, cd, ce) -> yvy285 new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Integer, cgc) -> new_ltEs10(yvy79000, yvy80000) new_esEs29(yvy400, yvy500, app(ty_[], gh)) -> new_esEs17(yvy400, yvy500, gh) new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy7900, yvy8000, bfc, bfd, bfe) new_esEs34(yvy400, yvy300, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs5(yvy400, yvy300, bch, bda, bdb) new_esEs9(LT, LT) -> True new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cha), cgc) -> new_ltEs12(yvy79000, yvy80000, cha) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs9(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) new_esEs24(yvy79001, yvy80001, app(ty_Maybe, bhh)) -> new_esEs7(yvy79001, yvy80001, bhh) new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM(yvy107, h, ba, bb) new_splitGT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) new_ltEs4(LT, EQ) -> True new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs16(Just(yvy79000), Just(yvy80000), app(ty_Maybe, beg)) -> new_ltEs16(yvy79000, yvy80000, beg) new_compare27(yvy79000, yvy80000, False, ca, cb) -> new_compare110(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000, ca, cb), ca, cb) new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT new_esEs4(Left(yvy4000), Left(yvy3000), app(ty_[], ddd), bcc) -> new_esEs17(yvy4000, yvy3000, ddd) new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) new_esEs14(True, True) -> True new_esEs25(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_esEs6(yvy79000, yvy80000, ca, cb) new_esEs21(yvy4000, yvy3000, app(ty_Ratio, hd)) -> new_esEs13(yvy4000, yvy3000, hd) new_ltEs4(EQ, EQ) -> True new_ltEs20(yvy7900, yvy8000, app(ty_[], dcb)) -> new_ltEs17(yvy7900, yvy8000, dcb) new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs6(yvy79001, yvy80001, app(ty_Maybe, cbh)) -> new_ltEs16(yvy79001, yvy80001, cbh) new_compare114(yvy79000, yvy80000, False) -> GT new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs18(yvy4000, yvy3000) new_esEs24(yvy79001, yvy80001, ty_Ordering) -> new_esEs9(yvy79001, yvy80001) new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs8(yvy400, yvy300) new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) new_ltEs20(yvy7900, yvy8000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_ltEs9(yvy7900, yvy8000, dbc, dbd, dbe) new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba, bb) -> error([]) new_compare29(Left(yvy7900), Left(yvy8000), False, dag, dah) -> new_compare111(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, dag), dag, dah) new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat0(yvy7900, yvy800) new_esEs31(yvy35, yvy30, app(ty_[], df)) -> new_esEs17(yvy35, yvy30, df) new_ltEs7(Left(yvy79000), Left(yvy80000), ty_Double, cgc) -> new_ltEs18(yvy79000, yvy80000) new_lt20(yvy79000, yvy80000, app(ty_[], cab)) -> new_lt17(yvy79000, yvy80000, cab) new_primCmpNat1(Succ(yvy79000), Zero) -> GT new_sr0(Integer(yvy790000), Integer(yvy800010)) -> Integer(new_primMulInt(yvy790000, yvy800010)) new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Right(yvy300), yvy31, yvy33, new_splitLT5(yvy34, yvy400, h, ba, bb), h, ba, bb) new_esEs20(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) new_esEs10(yvy79000, yvy80000, app(ty_Ratio, cda)) -> new_esEs13(yvy79000, yvy80000, cda) new_esEs28(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) new_lt19(yvy79001, yvy80001, app(app(ty_@2, bhe), bhf)) -> new_lt10(yvy79001, yvy80001, bhe, bhf) new_ltEs20(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs20(yvy4000, yvy3000, app(ty_Ratio, ga)) -> new_esEs13(yvy4000, yvy3000, ga) new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM(yvy54, h, ba, bb) new_asAs(True, yvy221) -> yvy221 new_splitLT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) new_lt20(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_lt10(yvy79000, yvy80000, ca, cb) new_splitLT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs9(new_compare29(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) new_esEs8(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ps(Pos(yvy2420), Pos(yvy2410)) -> Pos(new_primPlusNat1(yvy2420, yvy2410)) new_esEs10(yvy79000, yvy80000, app(ty_[], cdc)) -> new_esEs17(yvy79000, yvy80000, cdc) new_primCompAux0(yvy79000, yvy80000, yvy256, cef) -> new_primCompAux00(yvy256, new_compare13(yvy79000, yvy80000, cef)) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Char) -> new_ltEs8(yvy79000, yvy80000) new_esEs19(yvy4001, yvy3001, app(ty_Ratio, ef)) -> new_esEs13(yvy4001, yvy3001, ef) new_esEs36(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs7(yvy400, yvy300, bcd) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, app(ty_Maybe, ddg)) -> new_esEs7(yvy4000, yvy3000, ddg) new_compare26(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare25(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) new_compare111(yvy226, yvy227, False, bbc, bbd) -> GT new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) new_ltEs7(Left(yvy79000), Left(yvy80000), app(ty_[], chc), cgc) -> new_ltEs17(yvy79000, yvy80000, chc) new_compare0([], [], cef) -> EQ new_esEs20(yvy4000, yvy3000, app(app(ty_Either, gf), gg)) -> new_esEs4(yvy4000, yvy3000, gf, gg) new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) new_esEs36(yvy400, yvy300, app(ty_[], bdc)) -> new_esEs17(yvy400, yvy300, bdc) new_esEs19(yvy4001, yvy3001, app(app(ty_Either, fc), fd)) -> new_esEs4(yvy4001, yvy3001, fc, fd) new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_ltEs21(yvy79002, yvy80002, app(app(ty_Either, bff), bfg)) -> new_ltEs7(yvy79002, yvy80002, bff, bfg) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Int) -> new_ltEs14(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ced), cee)) -> new_esEs4(yvy4000, yvy3000, ced, cee) new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dhf), dhg)) -> new_esEs6(yvy4001, yvy3001, dhf, dhg) new_primMulNat0(Zero, Zero) -> Zero new_lt16(yvy79000, yvy80000, bbe) -> new_esEs9(new_compare7(yvy79000, yvy80000, bbe), LT) new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) new_splitGT5(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) new_esEs13(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bac) -> new_asAs(new_esEs23(yvy4000, yvy3000, bac), new_esEs22(yvy4001, yvy3001, bac)) new_compare10(yvy79000, yvy80000, False) -> GT new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, new_addToFM_C0(yvy53, Left(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) new_esEs20(yvy4000, yvy3000, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat0(yvy8000, Zero) new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 new_primCmpNat1(Zero, Zero) -> EQ new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Ordering) -> new_ltEs4(yvy79000, yvy80000) new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs8(yvy7900, yvy8000) new_esEs33(yvy400, yvy300, app(app(ty_@2, ea), eb)) -> new_esEs6(yvy400, yvy300, ea, eb) new_compare28(yvy79000, yvy80000, True, bad, bae, baf) -> EQ new_esEs24(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) new_lt5(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_ltEs5(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), caf, cag) -> new_pePe(new_lt5(yvy79000, yvy80000, caf), new_asAs(new_esEs10(yvy79000, yvy80000, caf), new_ltEs6(yvy79001, yvy80001, cag))) new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_esEs28(yvy4000, yvy3000, app(app(ty_@2, eah), eba)) -> new_esEs6(yvy4000, yvy3000, eah, eba) new_esEs34(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs6(yvy400, yvy300, bce, bcf) new_esEs9(EQ, EQ) -> True new_ltEs11(yvy7900, yvy8000) -> new_fsEs(new_compare17(yvy7900, yvy8000)) new_esEs35(yvy400, yvy300, app(app(ty_Either, bcb), bcc)) -> new_esEs4(yvy400, yvy300, bcb, bcc) new_ltEs6(yvy79001, yvy80001, ty_Char) -> new_ltEs8(yvy79001, yvy80001) new_ltEs20(yvy7900, yvy8000, app(ty_Ratio, dbh)) -> new_ltEs12(yvy7900, yvy8000, dbh) new_lt11(yvy79000, yvy80000) -> new_esEs9(new_compare17(yvy79000, yvy80000), LT) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy107, yvy5433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs21(yvy4000, yvy3000, app(ty_Maybe, ha)) -> new_esEs7(yvy4000, yvy3000, ha) new_compare24(yvy79000, yvy80000, True) -> EQ new_esEs36(yvy400, yvy300, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs5(yvy400, yvy300, bch, bda, bdb) new_esEs35(yvy400, yvy300, app(ty_Ratio, bac)) -> new_esEs13(yvy400, yvy300, bac) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs4(EQ, GT) -> True new_ltEs16(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bed), bee)) -> new_ltEs5(yvy79000, yvy80000, bed, bee) new_esEs32(yvy20, yvy15, app(ty_[], dfh)) -> new_esEs17(yvy20, yvy15, dfh) new_lt6(yvy79000, yvy80000, bfa, bfb) -> new_esEs9(new_compare14(yvy79000, yvy80000, bfa, bfb), LT) new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt18(yvy79001, yvy80001) new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bbb)) -> new_ltEs12(yvy7900, yvy8000, bbb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_lt20(yvy79000, yvy80000, app(ty_Ratio, cc)) -> new_lt12(yvy79000, yvy80000, cc) new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) new_compare13(yvy79000, yvy80000, app(app(ty_Either, ceg), ceh)) -> new_compare14(yvy79000, yvy80000, ceg, ceh) new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) new_ltEs21(yvy79002, yvy80002, ty_Char) -> new_ltEs8(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Bool) -> new_ltEs13(yvy79001, yvy80001) new_compare112(yvy233, yvy234, False, dcc, dcd) -> GT new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Int) -> new_esEs15(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) new_compare25(yvy199, yvy198) -> new_primCmpInt(yvy199, yvy198) new_ltEs7(Right(yvy79000), Right(yvy80000), chd, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs9(yvy79000, yvy80000, chg, chh, daa) new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt18(yvy79000, yvy80000) new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdg)) -> new_esEs13(yvy4000, yvy3000, cdg) new_not(False) -> True new_compare30(yvy35, yvy30, bf, bg) -> new_compare29(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) new_esEs20(yvy4000, yvy3000, app(ty_Maybe, ff)) -> new_esEs7(yvy4000, yvy3000, ff) new_esEs30(yvy400, yvy500, app(app(ty_@2, bce), bcf)) -> new_esEs6(yvy400, yvy500, bce, bcf) new_esEs9(GT, GT) -> True new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT new_ltEs6(yvy79001, yvy80001, ty_Double) -> new_ltEs18(yvy79001, yvy80001) new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs18(yvy400, yvy300) new_ltEs21(yvy79002, yvy80002, ty_Ordering) -> new_ltEs4(yvy79002, yvy80002) new_lt9(yvy79000, yvy80000) -> new_esEs9(new_compare12(yvy79000, yvy80000), LT) new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt15(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_lt5(yvy79000, yvy80000, app(ty_Ratio, cda)) -> new_lt12(yvy79000, yvy80000, cda) new_esEs36(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs13(yvy400, yvy300, bcg) new_ltEs21(yvy79002, yvy80002, ty_Bool) -> new_ltEs13(yvy79002, yvy80002) new_ltEs6(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) new_compare7(yvy79000, yvy80000, bbe) -> new_compare23(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, bbe), bbe) new_esEs19(yvy4001, yvy3001, app(ty_Maybe, ec)) -> new_esEs7(yvy4001, yvy3001, ec) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba, bb) -> new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) new_primCmpNat1(Zero, Succ(yvy80000)) -> LT new_esEs29(yvy400, yvy500, app(app(ty_@2, ea), eb)) -> new_esEs6(yvy400, yvy500, ea, eb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(yvy79000, yvy80000, True) -> LT new_lt19(yvy79001, yvy80001, app(ty_Ratio, bhg)) -> new_lt12(yvy79001, yvy80001, bhg) new_ps(Pos(yvy2420), Neg(yvy2410)) -> new_primMinusNat0(yvy2420, yvy2410) new_ps(Neg(yvy2420), Pos(yvy2410)) -> new_primMinusNat0(yvy2410, yvy2420) new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs15(yvy4001, yvy3001) new_esEs32(yvy20, yvy15, app(app(ty_@2, dfb), dfc)) -> new_esEs6(yvy20, yvy15, dfb, dfc) new_esEs35(yvy400, yvy300, app(ty_[], gh)) -> new_esEs17(yvy400, yvy300, gh) new_ltEs6(yvy79001, yvy80001, ty_Ordering) -> new_ltEs4(yvy79001, yvy80001) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Integer) -> new_esEs8(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare25(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) new_compare13(yvy79000, yvy80000, app(ty_Ratio, cff)) -> new_compare18(yvy79000, yvy80000, cff) new_compare23(yvy79000, yvy80000, False, bbe) -> new_compare113(yvy79000, yvy80000, new_ltEs16(yvy79000, yvy80000, bbe), bbe) new_esEs20(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) new_ltEs21(yvy79002, yvy80002, ty_Int) -> new_ltEs14(yvy79002, yvy80002) new_lt19(yvy79001, yvy80001, app(ty_[], caa)) -> new_lt17(yvy79001, yvy80001, caa) new_esEs4(Right(yvy4000), Right(yvy3000), bcb, ty_Ordering) -> new_esEs9(yvy4000, yvy3000) new_ltEs20(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs12(yvy4000, yvy3000) new_esEs4(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, dda), ddb), ddc), bcc) -> new_esEs5(yvy4000, yvy3000, dda, ddb, ddc) new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cec)) -> new_esEs17(yvy4000, yvy3000, cec) new_esEs34(yvy400, yvy300, app(ty_[], bdc)) -> new_esEs17(yvy400, yvy300, bdc) new_compare110(yvy79000, yvy80000, False, ca, cb) -> GT new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs4(yvy7900, yvy8000) new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) new_primEqNat0(Zero, Zero) -> True new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs8(yvy4001, yvy3001) new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) new_ltEs4(GT, GT) -> True new_ltEs7(Right(yvy79000), Right(yvy80000), chd, ty_Bool) -> new_ltEs13(yvy79000, yvy80000) new_esEs31(yvy35, yvy30, app(app(ty_@2, cg), da)) -> new_esEs6(yvy35, yvy30, cg, da) new_esEs17(:(yvy4000, yvy4001), [], gh) -> False new_esEs17([], :(yvy3000, yvy3001), gh) -> False new_asAs(False, yvy221) -> False new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs14(yvy4000, yvy3000) new_compare16(yvy79000, yvy80000, bad, bae, baf) -> new_compare28(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bad, bae, baf), bad, bae, baf) new_ltEs6(yvy79001, yvy80001, ty_Int) -> new_ltEs14(yvy79001, yvy80001) new_compare13(yvy79000, yvy80000, ty_Integer) -> new_compare12(yvy79000, yvy80000) new_ltEs20(yvy7900, yvy8000, ty_Int) -> new_ltEs14(yvy7900, yvy8000) new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, yvy54, new_gt3(new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) The set Q consists of the following terms: new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_fsEs(x0) new_ps(Pos(x0), Pos(x1)) new_ps(Pos(x0), Neg(x1)) new_ps(Neg(x0), Pos(x1)) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Float) new_compare12(Integer(x0), Integer(x1)) new_compare13(x0, x1, ty_Float) new_splitLT13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_esEs34(x0, x1, ty_Bool) new_ltEs4(LT, LT) new_primPlusNat1(Zero, Zero) new_ps(Neg(x0), Neg(x1)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Nothing, Just(x0), x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primCompAux00(x0, GT) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs14(True, True) new_esEs21(x0, x1, ty_Char) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, ty_Float) new_primCmpNat1(Succ(x0), Zero) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare13(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(False, x0) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(LT, LT) new_compare33(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs17(:(x0, x1), [], x2) new_primCmpNat2(Zero, x0) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs36(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_addToFM0(x0, x1, x2) new_primCmpNat0(x0, Succ(x1)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs7(Just(x0), Just(x1), ty_@0) new_compare13(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Int) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Bool) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs30(x0, x1, ty_Char) new_esEs18(Double(x0, x1), Double(x2, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare113(x0, x1, False, x2) new_esEs21(x0, x1, ty_Ordering) new_lt18(x0, x1) new_splitGT26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Char) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_lt20(x0, x1, ty_Double) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_gt1(x0, x1, x2, x3) new_compare0(:(x0, x1), :(x2, x3), x4) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, False) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_splitGT23(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs36(x0, x1, ty_Ordering) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_compare13(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_compare26(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs33(x0, x1, ty_Int) new_primCmpInt3(x0, x1) new_ltEs19(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs23(x0, x1, ty_Integer) new_esEs8(Integer(x0), Integer(x1)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Bool) new_ltEs17(x0, x1, x2) new_esEs36(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_splitGT24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_splitGT15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_esEs24(x0, x1, ty_Integer) new_compare11(x0, x1, False, x2, x3, x4) new_lt14(x0, x1) new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_splitLT24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_splitLT15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, ty_Char) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_ltEs6(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs31(x0, x1, ty_Ordering) new_splitGT16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare25(x0, x1) new_esEs32(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs17([], :(x0, x1), x2) new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_ltEs16(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Float) new_lt5(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs19(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_@0) new_splitLT16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_splitGT14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Just(x0), Nothing, x1) new_compare27(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, ty_Float) new_ltEs13(True, True) new_splitLT25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_sizeFM(EmptyFM, x0, x1, x2) new_esEs17(:(x0, x1), :(x2, x3), x4) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(x0, x1, x2, x3) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_lt16(x0, x1, x2) new_splitGT23(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs9(EQ, EQ) new_compare13(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Bool) new_splitLT26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT30(Right(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_mkBranchUnbox(x0, x1, x2, x3, x4, x5) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_ltEs21(x0, x1, ty_Int) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_pePe(False, x0) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs29(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_compare13(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Char) new_compare29(Left(x0), Left(x1), False, x2, x3) new_ltEs19(x0, x1, ty_Integer) new_gt2(x0, x1, x2, x3) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_splitLT23(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_not(True) new_ltEs6(x0, x1, ty_Ordering) new_compare13(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False) new_ltEs13(False, False) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpNat1(Succ(x0), Succ(x1)) new_ltEs16(Just(x0), Just(x1), ty_Int) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9, x10) new_primMinusNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Float) new_splitGT16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_splitLT4(EmptyFM, x0, x1, x2, x3) new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, EQ) new_gt3(x0, x1) new_lt20(x0, x1, ty_Char) new_lt20(x0, x1, ty_@0) new_compare23(x0, x1, False, x2) new_splitLT30(Left(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) new_esEs20(x0, x1, ty_Double) new_compare13(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Float) new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt20(x0, x1, ty_Int) new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_compare110(x0, x1, True, x2, x3) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) new_ltEs21(x0, x1, ty_Integer) new_compare26(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare26(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare26(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) new_esEs7(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4, x5) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_splitLT13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_lt5(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt5(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Just(x1), ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare27(x0, x1, False, x2, x3) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT30(Right(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) new_primPlusNat1(Zero, Succ(x0)) new_addToFM(x0, x1, x2, x3, x4, x5) new_primEqNat0(Zero, Zero) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs12(x0, x1, x2) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_not(False) new_lt5(x0, x1, ty_Int) new_splitGT13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs27(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, app(app(ty_Either, x2), x3)) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_compare23(x0, x1, True, x2) new_splitGT30(Left(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Ordering) new_compare112(x0, x1, True, x2, x3) new_esEs21(x0, x1, ty_@0) new_ltEs10(x0, x1) new_esEs7(Nothing, Just(x0), x1) new_esEs19(x0, x1, ty_Float) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_esEs22(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Char) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs29(x0, x1, ty_@0) new_compare31(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_ltEs8(x0, x1) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare13(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs6(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Int) new_splitLT25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_sizeFM1(EmptyFM, x0, x1) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_primMinusNat0(Succ(x0), Succ(x1)) new_primCmpNat1(Zero, Zero) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_esEs36(x0, x1, ty_Integer) new_lt5(x0, x1, ty_@0) new_primMinusNat0(Zero, Zero) new_lt4(x0, x1) new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs6(x0, x1, ty_Integer) new_splitLT16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_splitGT26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs24(x0, x1, ty_Ordering) new_ltEs11(x0, x1) new_compare17(@0, @0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_splitLT15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primPlusNat0(Zero, x0) new_esEs36(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_lt5(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_splitLT23(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_sIZE_RATIO new_compare11(x0, x1, True, x2, x3, x4) new_splitGT4(EmptyFM, x0, x1, x2, x3) new_ltEs13(False, True) new_ltEs13(True, False) new_compare13(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), x1) new_primCmpNat2(Succ(x0), x1) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs14(False, True) new_esEs14(True, False) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare29(Right(x0), Right(x1), False, x2, x3) new_esEs33(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_compare29(x0, x1, True, x2, x3) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8, x9) new_esEs7(Just(x0), Just(x1), ty_Char) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Double) new_primCmpInt2(x0, x1) new_lt19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_primEqNat0(Succ(x0), Zero) new_lt10(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, True) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Ordering) new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) new_ltEs19(x0, x1, app(ty_[], x2)) new_gt0(x0, x1, x2, x3) new_ltEs4(GT, GT) new_splitLT26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare24(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs33(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primMinusNat0(Zero, Succ(x0)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primMulNat0(Succ(x0), Zero) new_lt15(x0, x1) new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs10(x0, x1, ty_Double) new_compare7(x0, x1, x2) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) new_esEs28(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs6(x0, x1, ty_Float) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_compare0([], :(x0, x1), x2) new_compare14(x0, x1, x2, x3) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Int) new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_esEs31(x0, x1, ty_Integer) new_pePe(True, x0) new_esEs19(x0, x1, ty_Double) new_ltEs6(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Float) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, x1, x2, x3) new_primCmpNat0(x0, Zero) new_ltEs20(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2) new_compare24(x0, x1, False) new_esEs17([], [], x0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) new_primCompAux00(x0, LT) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Char) new_ltEs18(x0, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_compare111(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Double) new_ltEs14(x0, x1) new_splitGT25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs33(x0, x1, ty_@0) new_primCmpNat1(Zero, Succ(x0)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, ty_Bool) new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_compare13(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False, x2, x3) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare15(Char(x0), Char(x1)) new_compare113(x0, x1, True, x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(GT, LT) new_ltEs4(LT, GT) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare210(x0, x1, True) new_splitLT14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(x0, x1, ty_@0) new_lt9(x0, x1) new_asAs(True, x0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, True) new_lt13(x0, x1) new_esEs20(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, ty_Ordering) new_splitLT30(Left(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) new_splitLT30(Right(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_lt8(x0, x1, x2, x3, x4) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) new_compare29(Left(x0), Right(x1), False, x2, x3) new_compare29(Right(x0), Left(x1), False, x2, x3) new_esEs27(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt19(x0, x1, ty_Integer) new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs35(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_compare28(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_Double) new_esEs9(GT, GT) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_splitGT15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs19(x0, x1, ty_Ordering) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Bool) new_esEs11(Char(x0), Char(x1)) new_esEs25(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs20(x0, x1, ty_Int) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs20(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs25(x0, x1, ty_Char) new_esEs15(x0, x1) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs36(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_compare30(x0, x1, x2, x3) new_esEs10(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs12(@0, @0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs25(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) new_esEs7(Nothing, Nothing, x0) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs36(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Char) new_compare19(x0, x1) new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Ordering) new_splitLT5(EmptyFM, x0, x1, x2, x3) new_lt5(x0, x1, app(ty_[], x2)) new_compare8(x0, x1) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) new_compare28(x0, x1, False, x2, x3, x4) new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False) new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs25(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13, x14) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_emptyFM(x0, x1, x2) new_esEs14(False, False) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Float) new_splitLT24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_splitLT14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_splitGT25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8, x9) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, x2, x3, x4) new_esEs34(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt19(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Integer) new_splitGT30(Left(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) new_splitGT30(Right(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_compare0([], [], x0) new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4, x5) new_primPlusNat1(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqNat0(Zero, Succ(x0)) new_splitGT5(EmptyFM, x0, x1, x2, x3) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Int) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (81) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (82) YES